https://github.com/tilacog/luigi-talk-pydatabh-example
Code used in PyData BH #1
https://github.com/tilacog/luigi-talk-pydatabh-example
luigi python3
Last synced: 7 months ago
JSON representation
Code used in PyData BH #1
- Host: GitHub
- URL: https://github.com/tilacog/luigi-talk-pydatabh-example
- Owner: tilacog
- Created: 2017-01-26T15:03:23.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-10T18:18:41.000Z (over 8 years ago)
- Last Synced: 2025-01-29T19:49:29.941Z (8 months ago)
- Topics: luigi, python3
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This example showcases a simple luigi data pipeline that downloads a book, count its words and loads the results into a sqlite3 database.
## Installation
Install requirements:
```
$ pip install -r requirements.txt
```## Usage
Example:
```
$ python book_word_count.py LoadToDatabase --book-url="http://www.gutenberg.org/cache/epub/5200/pg5200.txt" --local-scheduler
```