├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── Pypi-uploads.yml │ └── codeql-analysis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── SECURITY.md ├── YoutubeTags └── __init__.py ├── index.rst ├── requirements.txt └── setup.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/YoutubeTags/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/YoutubeTags/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/YoutubeTags/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/Pypi-uploads.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/YoutubeTags/HEAD/.github/workflows/Pypi-uploads.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/YoutubeTags/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/YoutubeTags/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/YoutubeTags/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/YoutubeTags/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/YoutubeTags/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/YoutubeTags/HEAD/SECURITY.md -------------------------------------------------------------------------------- /YoutubeTags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/YoutubeTags/HEAD/YoutubeTags/__init__.py -------------------------------------------------------------------------------- /index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/YoutubeTags/HEAD/index.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | bs4===0.0.1 2 | requests===2.32.0 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/YoutubeTags/HEAD/setup.py --------------------------------------------------------------------------------