Metadata-Version: 2.1
Name: WaifuPicsPython
Version: 0.1.1
Summary: An asyncronous API wrapper for https://waifu.pics written in Python.
Home-page: https://github.com/Scrumpyy/WaifuPicsPython
Author: Scrumpyy
Author-email: scrumpy@weeb.email
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/Scrumpyy/WaifuPicsPython/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE


# WaifuPicsPython

An asynchronous Python API wrapper for https://waifu.pics.


`pip install WaifuPicsPython`


[![MIT License](https://img.shields.io/apm/l/atomic-design-ui.svg?)](https://github.com/tterb/atomic-design-ui/blob/master/LICENSEs)


### Code example
```python
import asyncio

from WaifuPicsPython import Waifu

async def your_function():
    wafiu_pics = Waifu()
    megumin_image_url = await wafiu_pics.sfw('megumin')
    # returns 1 url as a string
    waifu_images = await wafiu_pics.sfw('waifu', many=True)
    # returns 30 urls in a list
    lewd_waifu = await wafiu_pics.nsfw('wafiu')
    # returns 1 nsfw waifu url as a string
    lewd_nekos = await wafiu_pics.nsfw('neko', many=True)
    # returns 30 nsfw neko urls in a list

asyncio.run(your_function())
```
## Categories List

### SFW
```
  'waifu', 'neko', 'shinobu', 'megumin', 'bully', 'cuddle', 
  'cry', 'hug', 'awoo', 'kiss', 'lick', 'pat', 'smug', 'bonk', 
  'yeet', 'blush', 'smile', 'wave', 'highfive', 'handhold', 
  'nom', 'bite', 'glomp', 'slap', 'kill', 'kick', 'happy', 
  'wink', 'poke', 'dance', 'cringe'
```

### NSFW
```
  'waifu', 'neko', 'trap', 'blowjob'
```


