anekos.py

An unofficial async wrapper for nekos.life API!


License
MIT
Install
pip install anekos.py==2.0.0

Documentation

Async-nekos.life-wrapper

An official async wrapper for nekos.life API!

Requirements

The library below is just required if you want to save an image asynchronously

Cool Features

  • You can download the images!
  • You can take a random image from SFW and/or NSFW tags!
  • Easy to use with an object oriented design.

Install

Installing is done purely via git:

python -m pip install -U git+https://github.com/Nekos-life/Async-nekos.life-wrapper

Quick Example

from anekos import NekosLifeClient, SFWImageTags
from asyncio import get_event_loop

client = NekosLifeClient()

async def main():
    result = await client.image(SFWImageTags.WALLPAPER)
    print(result.url)

loop = get_event_loop()
loop.run_until_complete(main())