We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f21c33 commit b52efedCopy full SHA for b52efed
README.md
@@ -4,7 +4,7 @@ Python client library for Bugout API
4
## Setup
5
- Add variables from `sample.env` in you development environment
6
```bash
7
-export BUGOUT_REQUESTS_TIMEOUT=5
+export BUGOUT_TIMEOUT_SECONDS=5
8
```
9
10
```python
bugout/settings.py
@@ -1,7 +1,7 @@
1
import os
2
3
REQUESTS_TIMEOUT = 5
-REQUESTS_TIMEOUT_RAW = os.environ.get("BUGOUT_REQUESTS_TIMEOUT")
+REQUESTS_TIMEOUT_RAW = os.environ.get("BUGOUT_TIMEOUT_SECONDS")
try:
if REQUESTS_TIMEOUT_RAW is not None:
REQUESTS_TIMEOUT = int(REQUESTS_TIMEOUT_RAW)
sample.env
@@ -1 +1 @@
0 commit comments