12 lines
438 B
Python
12 lines
438 B
Python
"""
|
|
Minimal Python toolkit for collecting YouTube transcripts, ingesting them into
|
|
Elasticsearch, and serving a lightweight search API/front-end.
|
|
|
|
Modules:
|
|
config: shared configuration helpers (Elastic endpoint, data paths, etc.).
|
|
transcript_collector: fetches channel metadata and transcripts.
|
|
ingest: pushes transcript JSON into Elasticsearch.
|
|
search_app: Flask app exposing simple search and transcript endpoints.
|
|
"""
|
|
|