Skip to content

Commit bf73d37

Browse files
committed
small changes
1 parent 15b8041 commit bf73d37

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,11 @@ You can also add following line to `requirements.txt` and get latest master:
1717
git+https://github.com/databox/databox-python.git
1818
````
1919

20-
And run `pip install --upgrade -r requirements.txt`.
20+
And run `pip install --upgrade -r requirements.txt`. Or just:
21+
22+
```
23+
pip install databox
24+
```
2125

2226
## Getting Databox access tokens
2327

databox test/test_push.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def mock_push_json(data=None, path='/'):
1111

1212
class TestPush(unittest.TestCase):
1313
def setUp(self):
14-
self.databox_push_token = getenv("DATABOX_PUSH_TOKEN") or "adxg1kq5a4g04k0wk0s4wkssow8osw84"
14+
self.databox_push_token = getenv("DATABOX_PUSH_TOKEN") or "your_token_1234321"
1515
self.client = Client(self.databox_push_token)
1616

1717
self.original_push_json = self.client._push_json

example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
This example generates fake temperature KPIs for last 14 days and inserts them.
88
"""
99

10-
TOKEN = getenv("DATABOX_PUSH_TOKEN") or "adxg1kq5a4g04k0wk0s4wkssow8osw84"
10+
TOKEN = getenv("DATABOX_PUSH_TOKEN") or "your_token_1234321"
1111

1212
from databox import Client
1313

0 commit comments

Comments
 (0)