Skip to content

Commit 857979e

Browse files
committed
Add README.md and update scripts
1 parent e358472 commit 857979e

3 files changed

Lines changed: 62 additions & 1 deletion

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Install Python
1515
uses: actions/setup-python@v2
1616
with:
17-
python-version: '3.8'
17+
python-version: '3.9'
1818
architecture: 'x64'
1919
- name: Install requirements and packages
2020
run: |

README.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# MultiDownloader
2+
3+
[!Platform: Linux](https://img.shields.io/static/v1?label=Platform&message=Linux&color=5d91ff&style=for-the-badge&logo=linux)
4+
5+
## What is this
6+
7+
This small project was created to simplify the process of downloading your files.
8+
9+
## How to use
10+
11+
- If you use Termux, run this
12+
13+
```sh
14+
sh install.sh
15+
```
16+
17+
- If you use Linux (Ubuntu, Debian, etc.), run this instead
18+
19+
```sh
20+
sudo sh install_sudo.sh
21+
```
22+
23+
-----
24+
25+
After installation run main.py
26+
27+
```sh
28+
python3 main.py
29+
```
30+
31+
## License
32+
33+
```plain
34+
Copyright 2020 TrueMLGPro
35+
36+
Licensed under the Apache License, Version 2.0 (the "License");
37+
you may not use this file except in compliance with the License.
38+
You may obtain a copy of the License at
39+
40+
http://www.apache.org/licenses/LICENSE-2.0
41+
42+
Unless required by applicable law or agreed to in writing, software
43+
distributed under the License is distributed on an "AS IS" BASIS,
44+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
45+
See the License for the specific language governing permissions and
46+
limitations under the License.
47+
```

main.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# Copyright 2020 TrueMLGPro
2+
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
115
import argparse
216
import os
317
import pyfiglet

0 commit comments

Comments
 (0)