Metadata-Version: 2.1
Name: pluralkit
Version: 0.0.2
Summary: Asynchronous Python wrapper for PluralKit's API.
Home-page: https://github.com/almonds0166/pk.py
Author: Madison Landry, Alyx Warner
Author-email: pkpy@mit.edu
License: MIT
Project-URL: Documentation, https://web.mit.edu/almonds/www/pk.py/index.html
Project-URL: Issue tracker, https://github.com/almonds0166/pk.py/issues
Description: # pk.py
        
        Asynchronous Python wrapper for [PluralKit](https://pluralkit.me/)'s API. Created with [discord.py](https://github.com/Rapptz/discord.py) in mind.
        
        Currently working on PluralKit's v1.0 API.
        
        ## Quick example
        
        ```python
        from pluralkit import Client
        
        pk = Client()
        
        async for member in pk.get_members("abcde"):
           # list members of the system with ID ``abcde``
           print(f"{member.name} (`{member.id}`)")
        ```
        
        ## Token
        
        The client can be used without one's [PluralKit authorization token](https://pluralkit.me/api/#authentication), but they'll need it if they'd like to edit their system or access any of their system's private members or info.
        
        ## Links
        
        * [PyPI link](https://pypi.org/project/pluralkit/)
        * [Latest build of the docs](https://web.mit.edu/almonds/www/pk.py/index.html)
        * [pk.py Discord support server](https://discord.gg/secvguatbC)
        * [PluralKit's API](https://pluralkit.me/)
        * [PluralKit support server](https://discord.gg/PczBt78)
        
        ## Todo
        
        * Documentation, particularly for client methods
        * Tidy up error handling
        * Documentation for get_switches, new_switch
        * Test timezone mechanics
        * Prepare for API v2
        
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
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: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
Provides-Extra: dev
