19 lines
417 B
Markdown
19 lines
417 B
Markdown
|
# S3 Downloader
|
||
|
|
||
|
This is a simple tool to download files from S3. It is intended to be used as a CLI tool, but can also be used as a library.
|
||
|
|
||
|
## Requirements
|
||
|
|
||
|
* Python 3.8+
|
||
|
|
||
|
## Installation
|
||
|
|
||
|
```bash
|
||
|
python -m venv venv
|
||
|
source venv/bin/activate
|
||
|
pip install git+https://kumig.it/kumisystems/s3downloader.git
|
||
|
```
|
||
|
|
||
|
## License
|
||
|
|
||
|
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|