Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lunaticsm committed Sep 17, 2024
1 parent 85ae213 commit ec99705
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,14 @@ from catbox import CatboxUploader
uploader = CatboxUploader(userhash='your_userhash_here')
```

### Initialize without Userhash

```python
from catbox import CatboxUploader

uploader = CatboxUploader()
```

### Upload a File

```python
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='catbox_uploader',
version='2.7',
version='2.9',
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=['requests'],
Expand Down
1 change: 1 addition & 0 deletions src/catbox/helpers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import requests
from io import BytesIO
import os
from .exceptions import CatboxError, TimeoutError, ConnectionError, HTTPError

Expand Down

0 comments on commit ec99705

Please sign in to comment.