File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,11 @@ You can also add following line to `requirements.txt` and get latest master:
1717git+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
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ def mock_push_json(data=None, path='/'):
1111
1212class 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
Original file line number Diff line number Diff line change 77This 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
1212from databox import Client
1313
You can’t perform that action at this time.
0 commit comments