https://github.com/mariot/mozika-scraper
Scrap lyrics with Python
https://github.com/mariot/mozika-scraper
Last synced: about 2 months ago
JSON representation
Scrap lyrics with Python
- Host: GitHub
- URL: https://github.com/mariot/mozika-scraper
- Owner: mariot
- Created: 2017-10-11T20:28:13.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-06-10T18:48:43.000Z (almost 4 years ago)
- Last Synced: 2025-01-30T03:15:01.155Z (4 months ago)
- Language: Python
- Size: 88.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mozika Scraper
Scrap lyrics from a webpage
## Running Locally
Make sure you have Python [installed properly](http://install.python-guide.org). Also, install the [Heroku Toolbelt](https://toolbelt.heroku.com/) and [Postgres](https://devcenter.heroku.com/articles/heroku-postgresql#local-setup).
```sh
$ git clone [email protected]:mariot/mozika-scraper.git
$ cd mozika-scraper$ pip install -r requirements.txt
$ createdb mozika
$ python manage.py migrate
$ python manage.py collectstatic$ heroku local
```Your app should now be running on [localhost:5000](http://localhost:5000/).
## Deploying to Heroku
```sh
$ heroku create
$ git push heroku master$ heroku run python manage.py migrate
$ heroku open
```
or[](https://heroku.com/deploy)
## Documentation
For more information about using Python on Heroku, see these Dev Center articles:
- [Python on Heroku](https://devcenter.heroku.com/categories/python)