├── .flake8 ├── .gitignore ├── .python-version ├── README.md ├── app.py ├── oai.py ├── poetry.lock ├── pyproject.toml └── scrape.py /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 88 3 | extend-ignore = E203 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinosal/summarizer/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.10.9 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinosal/summarizer/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinosal/summarizer/HEAD/app.py -------------------------------------------------------------------------------- /oai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinosal/summarizer/HEAD/oai.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinosal/summarizer/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinosal/summarizer/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinosal/summarizer/HEAD/scrape.py --------------------------------------------------------------------------------