├── .gitignore ├── README.md ├── __init__.py ├── all_terms.csv ├── all_terms.json ├── arxiv_translator.py ├── babeldoc ├── QUICKSTART.md ├── SERVER_README.md ├── babeldoc_backend.py ├── babeldoc_client_example.py ├── babeldoc_config.toml ├── babeldoc_readme.md ├── babeldoc_server.py ├── requirements_server.txt └── start_server.sh ├── chinarxiv.py ├── config_temp-需要修改成config-填入自己的API.py ├── latex2pdf ├── Dockerfile-latex-compile-server ├── README-latex-server.md ├── __init__.py ├── docker-compose-latex-server.yml ├── latex_compile_client.py ├── latex_compile_server.py └── requirements-latex-server.txt ├── start_web.sh ├── static ├── app.js ├── sponsor.jpg └── style.css ├── step1_arxiv_downloader.py ├── step2_latex_parser.py ├── step3_content_splitter.py ├── step4_gpt_model.py ├── step5_result_merger.py ├── step6_translation_manager.py ├── step7_trans_cache.py ├── step8_pdf_compiler.py ├── todo.md └── web_main.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /all_terms.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/all_terms.csv -------------------------------------------------------------------------------- /all_terms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/all_terms.json -------------------------------------------------------------------------------- /arxiv_translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/arxiv_translator.py -------------------------------------------------------------------------------- /babeldoc/QUICKSTART.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/babeldoc/QUICKSTART.md -------------------------------------------------------------------------------- /babeldoc/SERVER_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/babeldoc/SERVER_README.md -------------------------------------------------------------------------------- /babeldoc/babeldoc_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/babeldoc/babeldoc_backend.py -------------------------------------------------------------------------------- /babeldoc/babeldoc_client_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/babeldoc/babeldoc_client_example.py -------------------------------------------------------------------------------- /babeldoc/babeldoc_config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/babeldoc/babeldoc_config.toml -------------------------------------------------------------------------------- /babeldoc/babeldoc_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/babeldoc/babeldoc_readme.md -------------------------------------------------------------------------------- /babeldoc/babeldoc_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/babeldoc/babeldoc_server.py -------------------------------------------------------------------------------- /babeldoc/requirements_server.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/babeldoc/requirements_server.txt -------------------------------------------------------------------------------- /babeldoc/start_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/babeldoc/start_server.sh -------------------------------------------------------------------------------- /chinarxiv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/chinarxiv.py -------------------------------------------------------------------------------- /config_temp-需要修改成config-填入自己的API.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/config_temp-需要修改成config-填入自己的API.py -------------------------------------------------------------------------------- /latex2pdf/Dockerfile-latex-compile-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/latex2pdf/Dockerfile-latex-compile-server -------------------------------------------------------------------------------- /latex2pdf/README-latex-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/latex2pdf/README-latex-server.md -------------------------------------------------------------------------------- /latex2pdf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /latex2pdf/docker-compose-latex-server.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/latex2pdf/docker-compose-latex-server.yml -------------------------------------------------------------------------------- /latex2pdf/latex_compile_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/latex2pdf/latex_compile_client.py -------------------------------------------------------------------------------- /latex2pdf/latex_compile_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/latex2pdf/latex_compile_server.py -------------------------------------------------------------------------------- /latex2pdf/requirements-latex-server.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/latex2pdf/requirements-latex-server.txt -------------------------------------------------------------------------------- /start_web.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/start_web.sh -------------------------------------------------------------------------------- /static/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/static/app.js -------------------------------------------------------------------------------- /static/sponsor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/static/sponsor.jpg -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/static/style.css -------------------------------------------------------------------------------- /step1_arxiv_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/step1_arxiv_downloader.py -------------------------------------------------------------------------------- /step2_latex_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/step2_latex_parser.py -------------------------------------------------------------------------------- /step3_content_splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/step3_content_splitter.py -------------------------------------------------------------------------------- /step4_gpt_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/step4_gpt_model.py -------------------------------------------------------------------------------- /step5_result_merger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/step5_result_merger.py -------------------------------------------------------------------------------- /step6_translation_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/step6_translation_manager.py -------------------------------------------------------------------------------- /step7_trans_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/step7_trans_cache.py -------------------------------------------------------------------------------- /step8_pdf_compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/step8_pdf_compiler.py -------------------------------------------------------------------------------- /todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/todo.md -------------------------------------------------------------------------------- /web_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaixindelele/chinarxiv/HEAD/web_main.py --------------------------------------------------------------------------------