Skip to content

Commit 4f21c33

Browse files
authored
Merge pull request #8 from bugout-dev/timeout-arg
Timeout arg
2 parents 3a480c6 + d7058be commit 4f21c33

File tree

10 files changed

+191
-35
lines changed

10 files changed

+191
-35
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,3 +138,4 @@ dmypy.json
138138
.secrets/
139139
.bugout/
140140
test/
141+
dev.env

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# bugout-python
22
Python client library for Bugout API
33

4+
## Setup
5+
- Add variables from `sample.env` in you development environment
6+
```bash
7+
export BUGOUT_REQUESTS_TIMEOUT=5
8+
```
9+
410
```python
511
from bugout.app import Bugout
612

bugout/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
__email__ = "engineering@bugout.dev"
99
__license__ = "MIT"
10-
__version__ = "0.0.9"
10+
__version__ = "0.1.0"
1111

1212
__all__ = (
1313
"__author__",

0 commit comments

Comments
 (0)