Metadata-Version: 2.1
Name: download-tarball
Version: 0.0.1
Summary: Automates manual installation of Python modules.
Home-page: https://github.com/OpticGenius/download-tarball
Author: Armaan McLeod
Author-email: opticgenius@hotmail.com
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/OpticGenius/download-tarball/issues
Project-URL: Source, https://github.com/OpticGenius/download-tarball
Keywords: python tarball download
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: tqdm
Requires-Dist: requests
Requires-Dist: beautifulsoup4

# Download Tarball

[![PyPI version](https://badge.fury.io/py/download-tarball.svg)](https://badge.fury.io/py/download-tarball)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

Automates manual Python library installation through the *PyPi* `tar.gz` tarball. If no tarball is found, the program will look for next available `.zip` file and install the package. I've used this in the past when *pip* hasn't worked out, and I have to revert to manual installation of Python libraries. 

#### Install with:

`pip install download-tarball`

Or:

`python setup.py install`

## Basic Usage

Installing a single package from the command line:

`download -p <package name>`

## File Usage

Installing via packages listed on separate lines in a `.txt` file. 

#### Example File Format:

```
xlrd
black
pyinstaller
```

#### Command:

`download -r <text file>`

## Demo

![xlrd-example](demo.gif)

## Note
* This tool currently installs the latest version of your package.
* This package is currently is platform independent. It should work on **Windows**, **Linux** and **MacOSX**. 
* If your using a *Unix* enviorment, you might need to use `python3`/`pip3` instead of `python`/`pip`. 
* Works on **Python 3.5+**. 

