Metadata-Version: 2.1
Name: aria2rpc
Version: 1.0.0
Summary: Simple aria2 XML-RPC client.
Home-page: https://github.com/foxe6/
Author: f̣ộx̣ệ6
Author-email: foxe6@protonmail.com
License: AGPL-3.0
Project-URL: Sourcecode, https://github.com/foxe6/aria2rpc
Project-URL: Documentation, https://github.com/foxe6/aria2rpc/blob/master/test
Project-URL: Example, https://github.com/foxe6/aria2rpc/blob/master/aria2rpc/example
Project-URL: Issues, https://github.com/foxe6/aria2rpc/issues
Project-URL: Funding, https://paypal.me/foxe6
Project-URL: Say Thanks!, https://saythanks.io/to/foxe6
Keywords: aria2 rpc client
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Utilities
Classifier: Natural Language :: English
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: Development Status :: 5 - Production/Stable
Requires-Python: >=3
Description-Content-Type: text/markdown
License-File: LICENSE

# Aria2RPC

<badges>[![version](https://img.shields.io/pypi/v/aria2rpc.svg)](https://pypi.org/project/aria2rpc/)
[![license](https://img.shields.io/pypi/l/aria2rpc.svg)](https://pypi.org/project/aria2rpc/)
[![pyversions](https://img.shields.io/pypi/pyversions/aria2rpc.svg)](https://pypi.org/project/aria2rpc/)  
[![powered](https://img.shields.io/badge/Say-Thanks-ddddff.svg)](https://saythanks.io/to/foxe6)
[![donate](https://img.shields.io/badge/Donate-Paypal-0070ba.svg)](https://paypal.me/foxe6)
[![made](https://img.shields.io/badge/Made%20with-PyCharm-red.svg)](https://paypal.me/foxe6)
</badges>

<i>Simple aria2 XML-RPC client.</i>

# Hierarchy

```
aria2rpc
|---- aria2_rpc_api()
|   |---- addUri()
|   |---- addTorrent()
|   |---- addMetalink()
|   |---- remove()
|   |---- forceRemove()
|   |---- pause()
|   |---- pauseAll()
|   |---- forcePause()
|   |---- forcePauseAll()
|   |---- unpause()
|   |---- unpauseAll()
|   |---- tellStatus()
|   |---- getUris()
|   |---- getFiles()
|   |---- getPeers()
|   |---- getServers()
|   |---- tellActive()
|   |---- tellWaiting()
|   |---- tellStopped()
|   |---- changePosition()
|   |---- changeUri()
|   |---- getOption()
|   |---- changeOption()
|   |---- getGlobalOption()
|   |---- changeGlobalOption()
|   |---- getGlobalStat()
|   |---- purgeDownloadResult()
|   |---- removeDownloadResult()
|   |---- getVersion()
|   |---- getSessionInfo()
|   |---- shutdown()
|   |---- forceShutdown()
|   '---- saveSession()
|---- system_rpc_api()
|   |---- multicall()
|   |---- listMethods()
|   '---- listNotifications()
'---- utils
    '---- generate_core()
```

# Example

## python
See `test`.

