Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/harrislapiroff/jicama
A pleasant Turntable.fm robot.
https://github.com/harrislapiroff/jicama
Last synced: 1 day ago
JSON representation
A pleasant Turntable.fm robot.
- Host: GitHub
- URL: https://github.com/harrislapiroff/jicama
- Owner: harrislapiroff
- Created: 2013-05-23T14:19:40.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-06-13T19:17:19.000Z (over 11 years ago)
- Last Synced: 2024-11-25T12:44:19.891Z (2 months ago)
- Language: Python
- Size: 97.7 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
Jicama
------Jicama is a Turntable robot built using Alain Gilbert's [Turntable-API][ttapi].
[ttapi]: https://github.com/alaingilbert/Turntable-API/tree/python_ttapi
Installation & Usage
====================You'll need to use Git to clone the jicama repository to your computer.
You will need to install the python packages listed in `requirements.txt` to run Jicama. I encourage you to use [pip][] and [virtualenv][] (and [virtualenvwrapper][]). If you're on a Mac this should get you started:
[pip]: http://www.pip-installer.org/
[virtualenv]: http://www.virtualenv.org/
[virtualenvwrapper]: http://virtualenvwrapper.readthedocs.org/```bash
sudo easy_install pip # install pip
sudo pip install virtualenv virtualenvwrapper # install virtualenv
source ~/.profile # hopefully this works
mkvirtualenv jicama # create a new virtualenv
cd /PATH/TO/jicama/ # CHANGE THIS TO THE PATH TO JICAMA
pip install -r requirements.txt # install requirements to this environment
```Now, be sure to create a new `settings/settings.py` file based on `settings/sample_settings.py`.
Now, every time you want to run Jicama, use the following commands:
```bash
workon jicama # activate the virtualenv
python jicama.py # run jicama
````To stop Jicama, type Ctrl-C. You will need to restart Jicama between code changes.