├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── demo └── demo.gif ├── main.py ├── requirements.txt ├── screenshots ├── home_page.png ├── token_manager.png └── zoro_to_myanimelist.png ├── static ├── background.png ├── favicon.ico ├── index.js └── style.css └── templates ├── copy.html ├── index.html ├── instructions.html ├── loading.html ├── tokenmanager.html └── zorotomal.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zai-Kun/AniWatch-AKA-Zoro-To-MyAnimeList/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .venv 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zai-Kun/AniWatch-AKA-Zoro-To-MyAnimeList/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zai-Kun/AniWatch-AKA-Zoro-To-MyAnimeList/HEAD/README.md -------------------------------------------------------------------------------- /demo/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zai-Kun/AniWatch-AKA-Zoro-To-MyAnimeList/HEAD/demo/demo.gif -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zai-Kun/AniWatch-AKA-Zoro-To-MyAnimeList/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zai-Kun/AniWatch-AKA-Zoro-To-MyAnimeList/HEAD/requirements.txt -------------------------------------------------------------------------------- /screenshots/home_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zai-Kun/AniWatch-AKA-Zoro-To-MyAnimeList/HEAD/screenshots/home_page.png -------------------------------------------------------------------------------- /screenshots/token_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zai-Kun/AniWatch-AKA-Zoro-To-MyAnimeList/HEAD/screenshots/token_manager.png -------------------------------------------------------------------------------- /screenshots/zoro_to_myanimelist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zai-Kun/AniWatch-AKA-Zoro-To-MyAnimeList/HEAD/screenshots/zoro_to_myanimelist.png -------------------------------------------------------------------------------- /static/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zai-Kun/AniWatch-AKA-Zoro-To-MyAnimeList/HEAD/static/background.png -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zai-Kun/AniWatch-AKA-Zoro-To-MyAnimeList/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zai-Kun/AniWatch-AKA-Zoro-To-MyAnimeList/HEAD/static/index.js -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zai-Kun/AniWatch-AKA-Zoro-To-MyAnimeList/HEAD/static/style.css -------------------------------------------------------------------------------- /templates/copy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zai-Kun/AniWatch-AKA-Zoro-To-MyAnimeList/HEAD/templates/copy.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zai-Kun/AniWatch-AKA-Zoro-To-MyAnimeList/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/instructions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zai-Kun/AniWatch-AKA-Zoro-To-MyAnimeList/HEAD/templates/instructions.html -------------------------------------------------------------------------------- /templates/loading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zai-Kun/AniWatch-AKA-Zoro-To-MyAnimeList/HEAD/templates/loading.html -------------------------------------------------------------------------------- /templates/tokenmanager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zai-Kun/AniWatch-AKA-Zoro-To-MyAnimeList/HEAD/templates/tokenmanager.html -------------------------------------------------------------------------------- /templates/zorotomal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zai-Kun/AniWatch-AKA-Zoro-To-MyAnimeList/HEAD/templates/zorotomal.html --------------------------------------------------------------------------------