
fluxpoint.py
============
A modern, easy to use, feature-rich, and async ready API wrapper for
Fluxpoint written in Python.
Key Features
- Modern Pythonic API using
async
andawait
. - Proper rate limit handling.
- Optimised in both speed and memory.
Installing
Python 3.8 or higher is required
To install the library, you can just run the following command:
# Linux/macOSpython3 -m pip install -U fluxpoint.py# Windowspy -3 -m pip install -U fluxpoint.py
To speedup the api wrapper you should run the following command:
# Linux/macOSpython3 -m pip install -U "fluxpoint.py[speed]"# Windowspy -3 -m pip install -U fluxpoint.py[speed]
To install the development version, do the following:
$ git clone https://github.com/Dhruvacube/fluxpoint.py$ cd fluxpoint.py$ python3 -m pip install -U .[speed]
Quick Example
from fluxpoint import FluxpointClientimport asyncioimport sys# setting up the fluxpoint client handlera = FluxpointClient(api_token="get api token from https://fluxpoint.dev/api/access")# setting up the windows loop policy according to the operating systemif sys.platform.startswith('win32') or sys.platform.startswith('cygwin'): asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())# getting the image url of AZURLANE imageprint(asyncio.run(a.azurlane()))
You can find more examples in theexamples
directory.
Links
- Documentation
- Official Support Discord Server
- Official Fluxpoint server
- Get Fluxpoint api access
- Official Fluxpoint api docs
Creatrix-Net / fluxpoint.py
Async python wrapper for the fluxpoint api
Top comments(0)
Subscribe
For further actions, you may consider blocking this person and/orreporting abuse