A test project for in depth python programing
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
For UNIX:
What things you need to install the software and how to install them
sudo apt-get install python3-pip
sudo pip install virtualenv
For Windows:
Install the latest version of Python3
For UNIX:
A step by step series of examples that tell you have to get a development env running
Say what the step will be
- Clone the repository
cd yo-indexer
- Run the following:
virtualenv env &&
source env/bin/activate &&
pip install -e .
- Run with
python yo_indexer
For Windows:
- Clone the repository
cd yo-indexer
- Run the following:
python -m venv env
.\env\Scripts\activate.bat
- Run with
python yo_indexer
All code installation and running should be done in the isolated virtualenv environment.
In order to access the env after the terminal has closed enter source env/bin/activate
If you would like to leave the virtual environmen then enter deactivate
Simple change the code and run
python yo_indexer
pip install -e
allows for the code changes to automatically be reflected withing the virtualenv environment.
Currently no tests
N/A
Use PEP-8
Add additional notes about how to deploy this on a live system
Python3
How to contribute
We use SemVer for versioning.
- Logan Tibbetts
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE.md file for details