Metadata-Version: 2.1
Name: pypxl
Version: 0.1.3
Summary: Asynchronous API wrapper for the pxlapi https://pxlapi.dev
Home-page: https://github.com/Kile/pypxl
Author: Kile
License: MIT
Project-URL: Website, https://pxlapi.dev
Description: # pypxl
        An asynchronous wrapper for [pxlapi](https://pxlapi.dev)
        
        # Install it
        Just use `pip3 install pypxl` to install it
        
        # How to use it
        ```py
        from pypxl import Pxlapi
        #Define yout details here
        pxl = Pxlapi(token="Your pxlapi token", stop_on_error=False)
        ```
        
        Now you can use a all pxlapi features with just one line of code!
        ```py
        glitch = await pxl.glitch(images=["https://cdn.discordapp.com/avatars/606162661184372736/a_62245605493deac02c291fe8fa517bee.gif?size=512"])
        ```
        
        # Docs
        I have not written any documentation. Generally every enpoint has a function with the same name and the same parameters as the enpoint along with the same default values. For an example in a discord bot, please look [here](https://github.com/Kile/pypxl/blob/main/examples/glitch_discord.markdown)
        
        For questions and suggestions, join my discord server or dm me (`Kile#0606`)
        
         <a> [![Discord Server](https://img.shields.io/discord/691713541262147687.svg?label=Discord&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2&style=flat)](https://discord.gg/zXqDHkm)
        </a>
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: English
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
