Metadata-Version: 2.1
Name: nekofun
Version: 1.0.0
Summary: 일러스트(SFW, NSFW) 크롤링 라이브러리
Home-page: https://github.com/VoidAsMad/nekofun
Author: VoidAsMad
Author-email: voidasmad@gmail.com
License: MIT
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Nekofun
[Github](https://github.com/VoidAsMad/nekofun)
## How to use
### Install
```
pip install nekofun
```

### Example
#### [async]
```py
from nekofun import client
import asyncio

async def main():
  # 클래스를 정의해줍니다.
  get = client.Get()
  result = await get.cry() # 우는 그림(or gif)를 가져옵니다.
  result = result.content # 링크형태로 반환합니다.
  print(result)

loop = asyncio.get_event_loop()
loop.run_until_complete(main())
loop.close()
```
#### [sync]
```py
from nekofun import sync

sync = sync.Get() # 클래스를 정의해줍니다.
result = sync.cry() # 우는 그림(or gif)를 가져옵니다.
print(result.content) # 링크형태로 반환하여 출력합니다.
```

