Metadata-Version: 2.1
Name: iydon
Version: 0.5.2
Summary: personal api
Home-page: https://github.com/iydon/iydon
Author: Iydon Liang
Author-email: 11711217@mail.sustech.edu.cn
License: MIT License
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: IPython
Requires-Dist: pip
Requires-Dist: requests

*Iydon* is a Python package that provide personal api for Iydon.

* * *
```
██╗██╗   ██╗██████╗  ██████╗ ███╗   ██╗
██║╚██╗ ██╔╝██╔══██╗██╔═══██╗████╗  ██║
██║ ╚████╔╝ ██║  ██║██║   ██║██╔██╗ ██║
██║  ╚██╔╝  ██║  ██║██║   ██║██║╚██╗██║
██║   ██║   ██████╔╝╚██████╔╝██║ ╚████║
╚═╝   ╚═╝   ╚═════╝  ╚═════╝ ╚═╝  ╚═══╝
```
* * *

# Basic Usage
## Installation
Install with pip:
```shell
pip install iydon
```

Get started:
```shell
python -m iydon
```


## Deploy Environment
```Python
from iydon import deploy

deploy.python_packages(ask=False, basic=True, research=True)
```


## Basic Information
```Python
from iydon import info

print(info.as_dict())
print(info.as_namedtuple())
```


## Sites Information
```Python
from iydon import sites

print(sites.get_all_links(full=True))
```


