View on GitHub

fluxpoint-py

Library

fluxpoint-py is a library built in Python-3 by kunosyn made for easier interacting with the Fluxpoint API.

Using this library you can get a variety of images and gifs, SFW and NSFW.

from fluxpoint import FluxpointClient;
import asyncio;

client = FluxpointClient("token");

async def main():
    res = client.sfw.getNekoImage();
    
    if res.success:
        print(res.file);
asyncio.run(main());

NSFW

Documentation over NSFW library methods.
Not documented yet…


SFW

Documentation over SFW library methods.

SFW Image Methods

SFW GIF Methods


ImageGen

Documentation over ImageGen library methods.
Not documented yet…