├── .flake8 ├── .github └── workflows │ └── test.yml ├── .gitignore ├── README.md ├── app └── parse.py ├── requirements.txt └── tests ├── __init__.py ├── correct_quotes.csv └── test_parse.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlurryfaceZXC/py-scrape-quotes/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlurryfaceZXC/py-scrape-quotes/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlurryfaceZXC/py-scrape-quotes/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlurryfaceZXC/py-scrape-quotes/HEAD/README.md -------------------------------------------------------------------------------- /app/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlurryfaceZXC/py-scrape-quotes/HEAD/app/parse.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlurryfaceZXC/py-scrape-quotes/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/correct_quotes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlurryfaceZXC/py-scrape-quotes/HEAD/tests/correct_quotes.csv -------------------------------------------------------------------------------- /tests/test_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlurryfaceZXC/py-scrape-quotes/HEAD/tests/test_parse.py --------------------------------------------------------------------------------