An open API service indexing awesome lists of open source software.

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

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

[![Deploy](https://www.herokucdn.com/deploy/button.png)](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)