Metadata-Version: 2.1 Name: telegraph Version: 2.2.0 Summary: Telegraph API wrapper Home-page: https://github.com/python273/telegraph Download-URL: https://github.com/python273/telegraph/archive/v2.2.0.zip Author: python273 Author-email: telegraph@python273.pw License: MIT Classifier: License :: OSI Approved :: MIT License Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 3.7 Classifier: Programming Language :: Python :: 3.8 Classifier: Programming Language :: Python :: 3.9 Classifier: Programming Language :: Python :: 3.10 Classifier: Programming Language :: Python :: 3.11 Description-Content-Type: text/markdown License-File: LICENSE Requires-Dist: requests Provides-Extra: aio Requires-Dist: httpx ; extra == 'aio' # Telegraph [](https://pypi.python.org/pypi/telegraph)   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()) ```