From 25a50067c586f3894230d4504fe88596b081a699 Mon Sep 17 00:00:00 2001 From: q3aql Date: Sat, 2 Jul 2022 17:51:25 +0200 Subject: [PATCH] README.md (v0.1) --- README.md | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..444ff83 --- /dev/null +++ b/README.md @@ -0,0 +1,58 @@ +a2tm - aria2 Tool Manager +========================= + +a2tm is a python script to manage torrent/magnet/URL downloads more easily using a configuration file. + +## Requirements: + +- `Python 3.5+` +- `aria2` + +### Installation: + + * Open the terminal and type the following comands: + + ```shell + $ git clone https://github.com/q3aql/a2tm` + $ cd a2tm + $ chmod +x install.sh + $ sudo ./install.sh + ```` + +* After running the script, you will see the following: + + ```shell + # a2tm installer 0.1 (010722) (GPL v2.0) + + + Copied executable (/usr/bin/a2tm). + + Configuring execution permissions (/usr/bin/a2tm). + + Created service (/etc/systemd/system/a2tm.service). + + INFO: Edit /etc/systemd/system/a2tm.service and change + the variable User=. + + Installation completed. + ```` + +### Configuration File: + + * Linux/Unix: `${HOME}/.aria2/a2tm.conf` + * Windows: `%USERPROFILE%\.aria2\a2tm.conf` + * MacOS: `${HOME}/.aria2/a2tm.conf` + +### How to use: + + ```shell + a2tm + ```` + + + +## Run as service: + + * SysV Init: `/etc/init.d/a2tm {start|stop|restart|status}` + * SystemD: `systemctl {start|stop|status} a2tm` + +### External links: + + * [Python homepage](https://www.python.org/) + * [aria2 homepage](https://aria2.github.io/) + * [aria2 static builds](https://github.com/q3aql/aria2-static-builds)