├── .gitignore ├── README.md ├── app ├── __init__.py ├── bd_api.py ├── database.py ├── main.py ├── models.py ├── parse_sponsor.py ├── process_pool_manager.py ├── schemas.py └── sponsor_worker.py ├── env.sample ├── frontend ├── .gitignore ├── README.md ├── eslint.config.js ├── index.html ├── package-lock.json ├── package.json ├── public │ └── vite.svg ├── src │ ├── App.css │ ├── App.tsx │ ├── assets │ │ └── react.svg │ ├── components │ │ └── PendingChannels.tsx │ ├── index.css │ ├── main.tsx │ ├── pages │ │ ├── VideoDetail.tsx │ │ ├── VideoInput.tsx │ │ └── VideoList.tsx │ └── vite-env.d.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── requirements.txt └── sql_app.db /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | env/ 3 | __pycache__/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/AI-Sponsor-Detection/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/bd_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/AI-Sponsor-Detection/HEAD/app/bd_api.py -------------------------------------------------------------------------------- /app/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/AI-Sponsor-Detection/HEAD/app/database.py -------------------------------------------------------------------------------- /app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/AI-Sponsor-Detection/HEAD/app/main.py -------------------------------------------------------------------------------- /app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/AI-Sponsor-Detection/HEAD/app/models.py -------------------------------------------------------------------------------- /app/parse_sponsor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/AI-Sponsor-Detection/HEAD/app/parse_sponsor.py -------------------------------------------------------------------------------- /app/process_pool_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/AI-Sponsor-Detection/HEAD/app/process_pool_manager.py -------------------------------------------------------------------------------- /app/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/AI-Sponsor-Detection/HEAD/app/schemas.py -------------------------------------------------------------------------------- /app/sponsor_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/AI-Sponsor-Detection/HEAD/app/sponsor_worker.py -------------------------------------------------------------------------------- /env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/AI-Sponsor-Detection/HEAD/env.sample -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/AI-Sponsor-Detection/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/AI-Sponsor-Detection/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/AI-Sponsor-Detection/HEAD/frontend/eslint.config.js -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/AI-Sponsor-Detection/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/AI-Sponsor-Detection/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/AI-Sponsor-Detection/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/AI-Sponsor-Detection/HEAD/frontend/public/vite.svg -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/AI-Sponsor-Detection/HEAD/frontend/src/App.css -------------------------------------------------------------------------------- /frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/AI-Sponsor-Detection/HEAD/frontend/src/App.tsx -------------------------------------------------------------------------------- /frontend/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/AI-Sponsor-Detection/HEAD/frontend/src/assets/react.svg -------------------------------------------------------------------------------- /frontend/src/components/PendingChannels.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/AI-Sponsor-Detection/HEAD/frontend/src/components/PendingChannels.tsx -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/AI-Sponsor-Detection/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/AI-Sponsor-Detection/HEAD/frontend/src/main.tsx -------------------------------------------------------------------------------- /frontend/src/pages/VideoDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/AI-Sponsor-Detection/HEAD/frontend/src/pages/VideoDetail.tsx -------------------------------------------------------------------------------- /frontend/src/pages/VideoInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/AI-Sponsor-Detection/HEAD/frontend/src/pages/VideoInput.tsx -------------------------------------------------------------------------------- /frontend/src/pages/VideoList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/AI-Sponsor-Detection/HEAD/frontend/src/pages/VideoList.tsx -------------------------------------------------------------------------------- /frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /frontend/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/AI-Sponsor-Detection/HEAD/frontend/tsconfig.app.json -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/AI-Sponsor-Detection/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/AI-Sponsor-Detection/HEAD/frontend/tsconfig.node.json -------------------------------------------------------------------------------- /frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/AI-Sponsor-Detection/HEAD/frontend/vite.config.ts -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/AI-Sponsor-Detection/HEAD/requirements.txt -------------------------------------------------------------------------------- /sql_app.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/AI-Sponsor-Detection/HEAD/sql_app.db --------------------------------------------------------------------------------