We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a87c75 commit 86f8666Copy full SHA for 86f8666
test/test_modules.py
@@ -1,15 +1,14 @@
1
import json
2
from datetime import datetime
3
+import os
4
from unittest import TestCase
5
6
import requests
7
8
from etherscan.etherscan import Etherscan
9
10
CONFIG_PATH = "etherscan/configs/stable.json"
-API_KEY = requests.get(
11
- "https://jsonblob.com/api/7354bb23-0505-11eb-a3b7-a921883d52ea"
12
-).json()["key"]
+API_KEY = os.environ["API_KEY"] # Encrypted env var by Travis
13
14
15
def load(fname):
0 commit comments