JavaProgswing / idevision.py

A python wrapper for the IDevision api

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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"))

About

A python wrapper for the IDevision api

License:GNU General Public License v3.0


Languages

Language:Python 100.0%