File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Python client library for Bugout API
44## Setup
55- Add variables from ` sample.env ` in you development environment
66``` bash
7- export BUGOUT_REQUESTS_TIMEOUT =5
7+ export BUGOUT_TIMEOUT_SECONDS =5
88```
99
1010``` python
Original file line number Diff line number Diff line change 77
88__email__ = "engineering@bugout.dev"
99__license__ = "MIT"
10- __version__ = "0.1.0 "
10+ __version__ = "0.1.1 "
1111
1212__all__ = (
1313 "__author__" ,
Original file line number Diff line number Diff line change 11import os
22
33REQUESTS_TIMEOUT = 5
4- REQUESTS_TIMEOUT_RAW = os .environ .get ("BUGOUT_REQUESTS_TIMEOUT " )
4+ REQUESTS_TIMEOUT_RAW = os .environ .get ("BUGOUT_TIMEOUT_SECONDS " )
55try :
66 if REQUESTS_TIMEOUT_RAW is not None :
77 REQUESTS_TIMEOUT = int (REQUESTS_TIMEOUT_RAW )
Original file line number Diff line number Diff line change 1- export BUGOUT_REQUESTS_TIMEOUT = 5
1+ export BUGOUT_TIMEOUT_SECONDS = 5
You can’t perform that action at this time.
0 commit comments