├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── logo.jpg └── src ├── pipe.py ├── requirement.txt └── test_plan.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yazdipour/xbrain/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yazdipour/xbrain/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yazdipour/xbrain/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yazdipour/xbrain/HEAD/README.md -------------------------------------------------------------------------------- /logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yazdipour/xbrain/HEAD/logo.jpg -------------------------------------------------------------------------------- /src/pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yazdipour/xbrain/HEAD/src/pipe.py -------------------------------------------------------------------------------- /src/requirement.txt: -------------------------------------------------------------------------------- 1 | youtube-transcript-api 2 | beautifulsoup4 3 | html2text -------------------------------------------------------------------------------- /src/test_plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yazdipour/xbrain/HEAD/src/test_plan.py --------------------------------------------------------------------------------