Metadata-Version: 2.4
Name: fshlink
Version: 1.0.0
Summary: FshLink API Wrapper written in Python
Author: maxie
License-Expression: MIT
Project-URL: Homepage, https://codeberg.org/maxeepy/fshlink-wrapper
Project-URL: Issues, https://codeberg.org/maxeepy/fshlink-wrapper/issues
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.30
Dynamic: license-file

# fshlink

a wrapper written in python for https://link.fsh.plus/

```py
from fshlink import FshLinkWrapper

fsh = FshLinkWrapper()

orig_link = fsh.get_url("ND8nulaEot") # will return a FshOriginalLink object
print(orig_link.url) # https://example.com

short_link = fsh.shorten_url("https://example.com") # will return a FshShortenedLink object
print(short_link.url) # https://link.fsh.plus/ND8nulaEot
```
