Metadata-Version: 2.1
Name: idevision.py
Version: 1.0.3
Summary: A python wrapper for the IDevision api
Home-page: https://github.com/isaa-ctaylor/idevision.py
Author: isaa_ctaylor
Author-email: isaacjontaylor@gmail.com
License: GPL-3.0
Description: # idevision.py
        
        ## Installation
        
        Installation is simple!
        ```python
        # Stable version
        
        pip install -U idevision.py
        
        # Development version
        
        pip install -U git+https://github.com/isaa-ctaylor/idevision.py
        
        ```
        
        ## Quick start
        
        ```python
        # Sync
        
        from idevision import sync_client
        
        TOKEN = "" # Optional token
        
        client = sync_client(TOKEN)
        
        print(client.sphinxrtfm("https://docs.aiohttp.org/en/stable/", "ClientSession"))
        ```
        
        ```python
        # Async
        
        from idevision import async_client
        
        TOKEN = "" # Optional token
        
        client = async_client(TOKEN)
        
        print(await client.sphinxrtfm("https://docs.aiohttp.org/en/stable/", "ClientSession"))
        ```
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
