https://github.com/isaa-ctaylor/idevision.py
A python wrapper for the IDevision api
https://github.com/isaa-ctaylor/idevision.py
api api-wrapper coding py python python-3 wrapper
Last synced: 4 months ago
JSON representation
A python wrapper for the IDevision api
- Host: GitHub
- URL: https://github.com/isaa-ctaylor/idevision.py
- Owner: isaa-ctaylor
- License: gpl-3.0
- Created: 2021-05-25T11:23:43.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-17T15:34:30.000Z (almost 5 years ago)
- Last Synced: 2025-06-27T08:20:19.568Z (12 months ago)
- Topics: api, api-wrapper, coding, py, python, python-3, wrapper
- Language: Python
- Homepage:
- Size: 61.5 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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
```
## Examples
```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"))
```