Get .gitignore files from github.com/github/gitignore
Project description
Overview
gignore Get .gitignore files from github/gitignore.
CLI
gignore comes with a Command Line Interface and works just like any other unix based command line application.
The output of gignore will be echo out to command line and can be simply pipe to other applications.
Usage
CLI
$ gignore Python # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] ....
Backend
>>> from gignore import Gignore >>> gig = Gignore('Python') >>> gig.get_gitignore_file() >>> print(gig.get_file_content()) # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] # C extensions *.so # Distribution / packaging .Python # .... >>>
Supported Python Versions
gignore currently can be run on multiple python versions:
Python 2 (2.7)
Python 3 (3.2, 3.3, 3.4)
PyPy
Installation
gignore is available on pypi
http://pypi.python.org/pypi/gignore
So easily install it by pip
$ pip install gignore
Or by easy_install
$ easy_install gignore
Another way is by cloning python-gignore’s git repo
$ git clone git://github.com/Alir3z4/python-gignore.git
Then install it by running:
$ python setup.py install
License
gignore is distributed under the terms of BSD license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file gignore-2014.10.28.tar.gz
.
File metadata
- Download URL: gignore-2014.10.28.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0daca3a9eb425bd0beebe7c9fdfd67a4f0f25549a7dfec2286abceb251c21cc8 |
|
MD5 | e624ade589817e256fceb50079b7f903 |
|
BLAKE2b-256 | 955ecb00de06f0429cd7bae8f05c5d4f7609cedd664b846df614e8df28756eff |