Metadata-Version: 2.1
Name: custom_telegraph
Version: 0.1.0
Summary: A library adds dots annotation to telegraph library
Author: BeadierMitten49
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: telegraph

# Custom telegraph library docs 

A Python library for working with the [Telegraph API](https://telegra.ph/).

Custom telegraph library uses data class instead of dicts to show telegraph api data 
**Note:** This is my first library, so if you find bugs, please don't kill me

- __from custom_telegraph import Telegraph__ to get main object
- __from custom_telegraph.types import *__ to get types

## Installation

You can install the package using `pip`:
```bash
pip install custom_telegraph
```


## Usage
Importing the Main Object
To get started, import the main Telegraph object:
```python
from custom_telegraph import Telegraph
```


Importing Types
If you need access to custom types:

```python
from custom_telegraph.types import *
```

