You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -107,7 +107,7 @@ All of the *free* GET endpoints from the following modules are provided:
107
107
108
108
</details>
109
109
110
-
If you think that a newly-added method is missing, kindly open an [issue](https://github.com/pcko1/etherscan-python/issues) as a feature request and I will do my best to add it.
110
+
*If you think that a newly-added method is missing, kindly open an [issue](https://github.com/pcko1/etherscan-python/issues) as a feature request and I will do my best to add it.*
111
111
112
112
## Installation
113
113
@@ -131,12 +131,12 @@ Then, install the package:
131
131
pip install .
132
132
```
133
133
134
-
## Run unittests
134
+
## Run unittests (bash)
135
135
136
-
Test that everything looks OK on your end before proceeding:
136
+
In `bash`, test that everything looks OK on your end using your `API_KEY` (without quotation marks) before proceeding:
137
137
138
138
```bash
139
-
coverage run -m unittest discover && coverage report -m
139
+
bash run_tests.sh YOUR_API_KEY
140
140
````
141
141
142
142
This will regenerate the logs under `logs/` with the most recent results and the timestamp of the execution.
@@ -148,7 +148,7 @@ In `python`, create a client with your personal [Etherscan.io](Etherscan.io) API
148
148
``` python
149
149
from etherscan import Etherscan
150
150
151
-
api_key = YOUR_API_KEY
151
+
api_key = YOUR_API_KEY# use quotation marks because it is a Python string
0 commit comments