A python interface to the aging Minerva website.
Usage:
minervashadow login
minervashadow transcript
minervashadow -h | --help
minervashadow -v | --version
Examples:
minervashadow login
minervashadow transcript
Options:
-h, --help Show this screen.
-v, --version Print the current version.
If you just want to run the package without prior installation, (provided you already have install the depedencies) run:
git clone https://github.com/cadesalaberry/minervashadow.git
python minervashadow
pip install --user minervashadow
If you prefer not to use Pypi, or want to get the latest cutting-edge version, you can pull directly from github:
pip install git+https://github.com/cadesalaberry/minervashadow
To remove the package, just run:
pip uninstall minervashadow
In installing minervashadow on your SOCS server, you might run into the same issues I did:
minervashadow: command not found
To solve it, I just had to modify my ~/.bashrc file to look like this:
# .bashrc
# Source global definitions
if [ -f /usr/socs/Profile ]; then
. /usr/socs/Profile
fi
# User specific aliases and functions
export PYTHONPATH=$HOME/.local/lib/python2.7/site-packages:$PYTHONPATH
export PATH=$HOME/.local/bin:$PATH
The two last lines add the python packages folder to the PATH.
To contribute do not hesitate to send me pull requests !
- Use the present tense ("Add feature" not "Added feature")
- Use the imperative mood ("Move cursor to..." not "Moves cursor to...")
- Limit the first line to 72 characters or less
- Reference issues and pull requests liberally
- Consider starting the commit message with an applicable emoji:
- 💄 when improving the format/structure of the code
- 🐎 when improving performance
- 🚱 when plugging memory leaks
- 📝 when writing docs
- 💡 Check out the Emoji Cheat Sheet for more ideas.
To help on the development of the app you can setup your dev environment as follow:
git clone https://github.com/cadesalaberry/minervashadow.git
cd minervashadow
python setup.py develop --user
And you are good to go !
The future of this package is uncertain for now, but here is the planning I had for it on the short term if you are interested:
https://github.com/cadesalaberry/minervashadow/issues/milestones
