Metadata-Version: 2.1
Name: pkg-downloader
Version: 0.1.3
Summary: A streamlined way to download packages for offline installation.
License: MIT
Author: Dan
Requires-Python: >=3.7,<4.0
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: Jinja2 (>=2.11.2,<3.0.0)
Requires-Dist: docker (>=4.3.1,<5.0.0)
Description-Content-Type: text/markdown

# pkg-downloader

A package downloader for Ubuntu, Debian, and CentOS that downloads the .deb or .rpm packages and their dependencies.

## Installation & Requirements
---

### Prerequisites

- Python 3.7.2+
- [Docker](https://docs.docker.com/engine/install/)


### Install pkg-downloader
```
pip3 install pkg-downloader
```

## Exaple Usage
---
To download packages for centos 8: 
```
pkg-downloader --os centos --version 8 --packages nginx postgresql
```

To download packages for ubuntu 20.04 to a specific directory: 
```
pkg-downloader --os ubuntu --version 20.04 --location ~/Desktop --packages nginx postgresql 
```
