Metadata-Version: 2.1
Name: download-gitignore
Version: 2.0.0
Summary: A Python CLI program to download .gitignore files from Github's repository
Home-page: https://github.com/vccolombo/download-gitignore
Author: Víctor Cora Colombo
Author-email: victorcora98@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Version Control :: Git
Requires-Python: >=3.5
Description-Content-Type: text/markdown
Requires-Dist: click (==7.0)
Requires-Dist: requests (==2.22.0)

# Download-gitignore

A Python CLI program to download .gitignore files from [Github's repository](https://github.com/github/gitignore) easily.

***

# How to Download

**download-gitignore requires** that you have installed in your machine:

* Python >= 3.5
* Pip3

Run the following command to **install download-gitignore**:

```console
pip3 install download-gitignore
```

***

# How to use

### Download .gitignore file

Use the command `download-gitignore download` with the language you want to download the .gitignore file. 

Example:

```console
download-gitignore download python
```

You can also use `dgi`as an alias for `download-gitignore`:

```console
dgi download c++
```

### List all available .gitignore files

Use the command `download-gitignore list` to list all available .gitignore files to download:

```console
download-gitignore list
```


