Metadata-Version: 2.1
Name: throwbin
Version: 0.1
Summary: API Wrapper for throwbin.io
Home-page: https://github.com/triedgriefdev/throwbin
Author: TriedGriefDev
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: requests

# Throwbin
Modern throwbin.io API wrapper.
# Usage
There is some methods of using throwbin API.
## Post
### Post synchronous
```python
from throwbin import ThrowBin

tb = ThrowBin()

my_paste = tb.post(
    title="My title",
    text="My text",
    syntax="text"
)

print(f"Status {my_paste.status} | Link: {my_paste.link}")
```


