Metadata-Version: 2.1
Name: netkeiba
Version: 0.0.3
Summary: A Django app which crawls and imports race data from netkeiba.com
Home-page: https://github.com/hankehly/netkeiba
Author: Hank Ehly
Author-email: henry.ehly@gmail.com
License: MIT License
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/markdown
Requires-Dist: scrapy (>=1.6.0)
Requires-Dist: beautifulsoup4 (>=4.7.1)
Requires-Dist: python-dateutil (>=2.8.0)

# netkeiba

A reusable Django app which crawls and imports race data from netkeiba.com

### Installation
1. Install with pip
```bash
pip install netkeiba
```
2. Add to your existing django project
```
# settings.py
INSTALLED_APPS = [
    ...
    'netkeiba'
]
```
You should now be able to use netkeiba commands and models.

### Usage
Extract and import all data from races between 2018-01-01 ~ 2019-01-01
```bash
python manage.py pipeline --min-date 2018-01-01 --max-date 2019-01-01
```


