├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md └── dependabot.yml ├── .gitignore ├── .replit ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Procfile ├── README.md ├── SECURITY.md ├── app.json ├── app.py ├── cache_purge_jsdeliver.py ├── config.py ├── index.py ├── main.py ├── minify.py ├── poetry.lock ├── pyproject.toml ├── replit.nix ├── requirements.txt ├── screenshots ├── anime.jpeg ├── episode.png ├── home.jpeg └── search.jpeg ├── static ├── css │ ├── anime.css │ ├── anime_min.css │ ├── episode.css │ ├── episode_min.css │ ├── home.css │ ├── home_min.css │ ├── search.css │ └── search_min.css ├── img │ ├── cover.jpg │ ├── favicon-5.png │ ├── favicon.ico │ ├── header.png │ ├── headerr.png │ ├── loading.gif │ └── loading2.gif └── robots.txt ├── templates ├── anime.html ├── anime_min.html ├── embed.html ├── embed_min.html ├── episode.html ├── episode_min.html ├── home.html ├── home_min.html ├── search.html ├── search_min.html ├── vid.html └── vid_min.html ├── utils ├── anilist.py ├── anime_loader.py ├── db.py ├── html_gen.py ├── others.py └── techzapi.py ├── vercel.json └── wsgi.py /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/.gitignore -------------------------------------------------------------------------------- /.replit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/.replit -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn main:app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/app.json -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/app.py -------------------------------------------------------------------------------- /cache_purge_jsdeliver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/cache_purge_jsdeliver.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/config.py -------------------------------------------------------------------------------- /index.py: -------------------------------------------------------------------------------- 1 | from wsgi import app 2 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/main.py -------------------------------------------------------------------------------- /minify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/minify.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/pyproject.toml -------------------------------------------------------------------------------- /replit.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/replit.nix -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | bs4 3 | flask 4 | yarl 5 | pycryptodomex 6 | gunicorn -------------------------------------------------------------------------------- /screenshots/anime.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/screenshots/anime.jpeg -------------------------------------------------------------------------------- /screenshots/episode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/screenshots/episode.png -------------------------------------------------------------------------------- /screenshots/home.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/screenshots/home.jpeg -------------------------------------------------------------------------------- /screenshots/search.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/screenshots/search.jpeg -------------------------------------------------------------------------------- /static/css/anime.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/static/css/anime.css -------------------------------------------------------------------------------- /static/css/anime_min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/static/css/anime_min.css -------------------------------------------------------------------------------- /static/css/episode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/static/css/episode.css -------------------------------------------------------------------------------- /static/css/episode_min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/static/css/episode_min.css -------------------------------------------------------------------------------- /static/css/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/static/css/home.css -------------------------------------------------------------------------------- /static/css/home_min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/static/css/home_min.css -------------------------------------------------------------------------------- /static/css/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/static/css/search.css -------------------------------------------------------------------------------- /static/css/search_min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/static/css/search_min.css -------------------------------------------------------------------------------- /static/img/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/static/img/cover.jpg -------------------------------------------------------------------------------- /static/img/favicon-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/static/img/favicon-5.png -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/static/img/header.png -------------------------------------------------------------------------------- /static/img/headerr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/static/img/headerr.png -------------------------------------------------------------------------------- /static/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/static/img/loading.gif -------------------------------------------------------------------------------- /static/img/loading2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/static/img/loading2.gif -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/static/robots.txt -------------------------------------------------------------------------------- /templates/anime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/templates/anime.html -------------------------------------------------------------------------------- /templates/anime_min.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/templates/anime_min.html -------------------------------------------------------------------------------- /templates/embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/templates/embed.html -------------------------------------------------------------------------------- /templates/embed_min.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/templates/embed_min.html -------------------------------------------------------------------------------- /templates/episode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/templates/episode.html -------------------------------------------------------------------------------- /templates/episode_min.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/templates/episode_min.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/home_min.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/templates/home_min.html -------------------------------------------------------------------------------- /templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/templates/search.html -------------------------------------------------------------------------------- /templates/search_min.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/templates/search_min.html -------------------------------------------------------------------------------- /templates/vid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/templates/vid.html -------------------------------------------------------------------------------- /templates/vid_min.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/templates/vid_min.html -------------------------------------------------------------------------------- /utils/anilist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/utils/anilist.py -------------------------------------------------------------------------------- /utils/anime_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/utils/anime_loader.py -------------------------------------------------------------------------------- /utils/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/utils/db.py -------------------------------------------------------------------------------- /utils/html_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/utils/html_gen.py -------------------------------------------------------------------------------- /utils/others.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/utils/others.py -------------------------------------------------------------------------------- /utils/techzapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/utils/techzapi.py -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/vercel.json -------------------------------------------------------------------------------- /wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AnimeDex/HEAD/wsgi.py --------------------------------------------------------------------------------