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 6381f02 commit aa51c30Copy full SHA for aa51c30
README.md
@@ -10,7 +10,11 @@ To install activate a new virtual environment and run the following command:
10
11
$ pip install -r requirements.txt
12
13
-To run the example:
+To run the example, you must first configure a working API token in config.py:
14
+
15
+ $ cp config.py.example config.py; vim config.py;
16
17
+Then replace the string "SOME_TOKEN" with your API token. Finally, to run the example:
18
19
$ python example.py
20
@@ -21,7 +25,7 @@ An example of how to use the client in your code:
21
25
```
22
26
diffbot = DiffbotClient()
23
27
url = "http://shichuan.github.io/javascript-patterns/"
24
-token = "3c66f28f72ea40c1b02e6a4cc195b07e"
28
+token = "YOUR_TOKEN_HERE"
29
api = "article"
30
version = 2
31
0 commit comments