Metadata-Version: 2.1
Name: photolink
Version: 0.0.6
Summary: PhotoLink API wrapper
Home-page: https://github.com/xudoberdigayratov/PhotoLink
Download-URL: https://github.com/xudoberdigayratov/PhotoLink.git
Author: Xudoberdi G'ayratov
Author-email: gayratov@xudoberdi.uz
License: MIT
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Provides-Extra: aio
Requires-Dist: httpx; extra == "aio"

# PhotoLink

Python PhotoLink API wrapper

[//]: # (- [Documentation]&#40;https://python-telegraph.readthedocs.io/en/latest/&#41;)

```bash
$ python3 -m pip install photolink
# with asyncio support
$ python3 -m pip install 'photolink[aio]'
```

## Example
```python
from photolink import PhotoLink

photolink = PhotoLink()
upload = photolink.upload_image(file_path='doppi.png')

print(upload)

```

## Async Example
```python
import asyncio
from photolink.aio import PhotoLink

async def main():
    photolink = PhotoLink()
    print(await photolink(file_path='doppi.png'))


asyncio.run(main())
```
