Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/python273/telegraph

Telegraph API wrapper | Telegra.ph
https://github.com/python273/telegraph

api-wrapper python telegraph telegraph-api

Last synced: about 2 months ago
JSON representation

Telegraph API wrapper | Telegra.ph

Awesome Lists containing this project

README

        

# Telegraph
[![PyPI](https://img.shields.io/pypi/v/telegraph.svg)](https://pypi.python.org/pypi/telegraph)
![Python Versions](https://img.shields.io/pypi/pyversions/telegraph.svg)
![License](https://img.shields.io/github/license/python273/telegraph.svg)

Python Telegraph API wrapper

- [Documentation](https://python-telegraph.readthedocs.io/en/latest/)

```bash
$ python3 -m pip install telegraph
# with asyncio support
$ python3 -m pip install 'telegraph[aio]'
```

## Example
```python
from telegraph import Telegraph

telegraph = Telegraph()
telegraph.create_account(short_name='1337')

response = telegraph.create_page(
'Hey',
html_content='

Hello, world!

'
)
print(response['url'])
```

## Async Example
```python
import asyncio
from telegraph.aio import Telegraph

async def main():
telegraph = Telegraph()
print(await telegraph.create_account(short_name='1337'))

response = await telegraph.create_page(
'Hey',
html_content='

Hello, world!

',
)
print(response['url'])

asyncio.run(main())
```