idevision.py

A python wrapper for the IDevision api


Keywords
python, api, wrapper, coding, api-wrapper, python-3, py
License
GPL-3.0
Install
pip install idevision.py==1.0.7

Documentation

idevision.py

Installation

Installation is simple!

# Stable version

pip install -U idevision.py

# Development version

pip install -U git+https://github.com/isaa-ctaylor/idevision.py

Examples

# Sync

from idevision import sync_client

TOKEN = "" # Optional token

client = sync_client(TOKEN)

print(client.sphinxrtfm("https://docs.aiohttp.org/en/stable/", "ClientSession"))
# Async

from idevision import async_client

TOKEN = "" # Optional token

client = async_client(TOKEN)

print(await client.sphinxrtfm("https://docs.aiohttp.org/en/stable/", "ClientSession"))