Metadata-Version: 2.1
Name: pyimgbox
Version: 0.1.0
Summary: Upload images to imgbox.com
Home-page: https://github.com/plotski/pyimgbox
Author: plotski
Author-email: plotski@example.org
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries
Classifier: Intended Audience :: Developers
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: beautifulsoup4

# pyimgbox

```python
import pyimgbox
import json
files = ("this.jpg", "and/that.png")
gallery = pyimgbox.Gallery(title="Hello, World!")
for submission in gallery.submit(*files, thumb_width=200):
    print(json.dumps(submission, indent=4))
```


