Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/noahgorstein/truckin-through-time
Source code to accompany my blog post Truckin' Through Time: Building a Grateful Dead Database
https://github.com/noahgorstein/truckin-through-time
grateful-dead python web-scraper
Last synced: about 1 month ago
JSON representation
Source code to accompany my blog post Truckin' Through Time: Building a Grateful Dead Database
- Host: GitHub
- URL: https://github.com/noahgorstein/truckin-through-time
- Owner: noahgorstein
- Created: 2024-07-03T12:23:45.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-12T13:14:01.000Z (6 months ago)
- Last Synced: 2024-10-16T10:36:02.566Z (3 months ago)
- Topics: grateful-dead, python, web-scraper
- Language: Python
- Homepage: https://noahgorstein.com/blog/truckin-through-time
- Size: 307 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Truckin' Through Time: Building a Grateful Dead Setlist Database
This repository contains the source code for creating a Grateful Dead setlist database, as described in my [associated blog post](https://noahgorstein.com/blog/truckin-through-time).
## Prerequisites
- Python
- [Ollama](https://ollama.com/)## Installation
To install the package, run:
```sh
pip install .
```## Running the Scraper
After installation, the `scrape` script will be available in your shell. You can use it to scrape and build the database. To see the available options, use the `--help` flag:
```sh
❯ scrape --help
Usage: scrape [OPTIONS]Options:
--ollama-host TEXT Specify where Ollama is running. Default: http://localhost:11434
--ollama-model TEXT Specify the model hosted by --ollama-host that will be used to extract information. Default: llama3
--database TEXT Specify the name of the SQLite database to be created in the current working directory. Default: database.db
--help Show this message and exit.
```For more information, please refer to the [blog post](https://noahgorstein.com/blog/truckin-through-time).