├── .dockerignore ├── .gitignore ├── .python-version ├── Dockerfile ├── LICENSE ├── README.md ├── description.md ├── docker-compose.yml ├── examples ├── Accessible Quantum Field Theory.pdf ├── Attention is all you need.pdf └── Gene therapy for deafness.pdf ├── head.html ├── main.py ├── pyproject.toml ├── static ├── icon.png └── logo.png └── uv.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsuchagency/pdf-to-podcast/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsuchagency/pdf-to-podcast/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsuchagency/pdf-to-podcast/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsuchagency/pdf-to-podcast/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsuchagency/pdf-to-podcast/HEAD/README.md -------------------------------------------------------------------------------- /description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsuchagency/pdf-to-podcast/HEAD/description.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsuchagency/pdf-to-podcast/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /examples/Accessible Quantum Field Theory.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsuchagency/pdf-to-podcast/HEAD/examples/Accessible Quantum Field Theory.pdf -------------------------------------------------------------------------------- /examples/Attention is all you need.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsuchagency/pdf-to-podcast/HEAD/examples/Attention is all you need.pdf -------------------------------------------------------------------------------- /examples/Gene therapy for deafness.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsuchagency/pdf-to-podcast/HEAD/examples/Gene therapy for deafness.pdf -------------------------------------------------------------------------------- /head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsuchagency/pdf-to-podcast/HEAD/head.html -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsuchagency/pdf-to-podcast/HEAD/main.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsuchagency/pdf-to-podcast/HEAD/pyproject.toml -------------------------------------------------------------------------------- /static/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsuchagency/pdf-to-podcast/HEAD/static/icon.png -------------------------------------------------------------------------------- /static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsuchagency/pdf-to-podcast/HEAD/static/logo.png -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsuchagency/pdf-to-podcast/HEAD/uv.lock --------------------------------------------------------------------------------