├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── documentation-improvement.md │ ├── feature_request.md │ └── performance-issue.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── bandit-analysis.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── SECURITY.md ├── Yirabot Request Process.png ├── requirements.txt ├── setup.py └── yirabot ├── __init__.py ├── crawling_functions.py ├── data_extraction_functions.py ├── display_functions.py ├── errors.py ├── help.py ├── helper_functions.py ├── saving_functions.py ├── seo_functions.py └── yirabot.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwenOrcan/YiraBot-Crawler/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation-improvement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwenOrcan/YiraBot-Crawler/HEAD/.github/ISSUE_TEMPLATE/documentation-improvement.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwenOrcan/YiraBot-Crawler/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/performance-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwenOrcan/YiraBot-Crawler/HEAD/.github/ISSUE_TEMPLATE/performance-issue.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwenOrcan/YiraBot-Crawler/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/bandit-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwenOrcan/YiraBot-Crawler/HEAD/.github/workflows/bandit-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwenOrcan/YiraBot-Crawler/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwenOrcan/YiraBot-Crawler/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwenOrcan/YiraBot-Crawler/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwenOrcan/YiraBot-Crawler/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwenOrcan/YiraBot-Crawler/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwenOrcan/YiraBot-Crawler/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwenOrcan/YiraBot-Crawler/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Yirabot Request Process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwenOrcan/YiraBot-Crawler/HEAD/Yirabot Request Process.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwenOrcan/YiraBot-Crawler/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwenOrcan/YiraBot-Crawler/HEAD/setup.py -------------------------------------------------------------------------------- /yirabot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwenOrcan/YiraBot-Crawler/HEAD/yirabot/__init__.py -------------------------------------------------------------------------------- /yirabot/crawling_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwenOrcan/YiraBot-Crawler/HEAD/yirabot/crawling_functions.py -------------------------------------------------------------------------------- /yirabot/data_extraction_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwenOrcan/YiraBot-Crawler/HEAD/yirabot/data_extraction_functions.py -------------------------------------------------------------------------------- /yirabot/display_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwenOrcan/YiraBot-Crawler/HEAD/yirabot/display_functions.py -------------------------------------------------------------------------------- /yirabot/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwenOrcan/YiraBot-Crawler/HEAD/yirabot/errors.py -------------------------------------------------------------------------------- /yirabot/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwenOrcan/YiraBot-Crawler/HEAD/yirabot/help.py -------------------------------------------------------------------------------- /yirabot/helper_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwenOrcan/YiraBot-Crawler/HEAD/yirabot/helper_functions.py -------------------------------------------------------------------------------- /yirabot/saving_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwenOrcan/YiraBot-Crawler/HEAD/yirabot/saving_functions.py -------------------------------------------------------------------------------- /yirabot/seo_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwenOrcan/YiraBot-Crawler/HEAD/yirabot/seo_functions.py -------------------------------------------------------------------------------- /yirabot/yirabot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwenOrcan/YiraBot-Crawler/HEAD/yirabot/yirabot.py --------------------------------------------------------------------------------