Skip to content
This repository was archived by the owner on Nov 5, 2018. It is now read-only.
/ instaparse Public archive

A python script which generates a simple input file parser.

License

Notifications You must be signed in to change notification settings

impguard/instaparse

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 Cannot retrieve latest commit at this time.
Nov 16, 2014
Nov 6, 2014
Nov 22, 2014
Nov 16, 2014
Aug 29, 2014
Nov 9, 2014
Aug 29, 2014
Nov 6, 2014
Nov 16, 2014
Nov 22, 2014
Nov 16, 2014
Aug 29, 2014

Repository files navigation

instaparse

A python script that generates simple file parsers.

Development

To get the package simply pull from the repository:

git clone https://github.com/ImpGuard/instaparse.git <project_directory>

In order to install the dependencies, navigate to the project directory and use pip. Note using virtualenv in this example is optional:

virtualenv <venv>               # Create a virtual environment if desired
source <venv>/bin/activate      # Activate the environment if installed
pip install -r requirements.txt # Install the necessary modules
...
...
deactivate                      # Leave the virtual environment when work is finished

All the source files are located within the folder instaparse. In order to test the script, use nose within the home directory (which is installed as a dependency):

make check                      # Calls nose indirectly

See the documentation for nose for more information on how testing works. All tests are located within the folder tests.

Link to documentation