├── .github └── workflows │ └── CI.yml ├── .gitignore ├── .pre-commit-config.yaml ├── Dockerfile ├── README.md ├── app.py └── requirements.txt /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhrcook/textrank-streamlit/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhrcook/textrank-streamlit/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhrcook/textrank-streamlit/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhrcook/textrank-streamlit/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhrcook/textrank-streamlit/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhrcook/textrank-streamlit/HEAD/app.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit 2 | summa 3 | --------------------------------------------------------------------------------