├── .env.example ├── .flake8 ├── .github ├── CODEOWNERS ├── FUNDING.yml ├── beautifulsoup@2x.jpg └── dependabot.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── beautifulsoup_tutorial ├── __init__.py ├── fetch.py └── scrape.py ├── config.py ├── main.py ├── poetry.lock ├── pyproject.toml ├── renovate.json └── requirements.txt /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackersandslackers/beautifulsoup-tutorial/HEAD/.env.example -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackersandslackers/beautifulsoup-tutorial/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackersandslackers/beautifulsoup-tutorial/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackersandslackers/beautifulsoup-tutorial/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/beautifulsoup@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackersandslackers/beautifulsoup-tutorial/HEAD/.github/beautifulsoup@2x.jpg -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackersandslackers/beautifulsoup-tutorial/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackersandslackers/beautifulsoup-tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackersandslackers/beautifulsoup-tutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackersandslackers/beautifulsoup-tutorial/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackersandslackers/beautifulsoup-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /beautifulsoup_tutorial/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackersandslackers/beautifulsoup-tutorial/HEAD/beautifulsoup_tutorial/__init__.py -------------------------------------------------------------------------------- /beautifulsoup_tutorial/fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackersandslackers/beautifulsoup-tutorial/HEAD/beautifulsoup_tutorial/fetch.py -------------------------------------------------------------------------------- /beautifulsoup_tutorial/scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackersandslackers/beautifulsoup-tutorial/HEAD/beautifulsoup_tutorial/scrape.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackersandslackers/beautifulsoup-tutorial/HEAD/config.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackersandslackers/beautifulsoup-tutorial/HEAD/main.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackersandslackers/beautifulsoup-tutorial/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackersandslackers/beautifulsoup-tutorial/HEAD/pyproject.toml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackersandslackers/beautifulsoup-tutorial/HEAD/renovate.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackersandslackers/beautifulsoup-tutorial/HEAD/requirements.txt --------------------------------------------------------------------------------