├── .idea ├── .gitignore ├── VerbaAurea.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── modules.xml └── vcs.xml ├── LICENSE ├── README.md ├── README_EN.md ├── config.json ├── config_manager.py ├── document_processor.py ├── excel_processor.py ├── main.py ├── parallel_processor.py ├── requirements.txt ├── run_web_service.py ├── start_web_service.py ├── static ├── script.js └── style.css ├── templates └── index.html ├── text_analysis.py ├── utils.py ├── web_service.py └── 启动Web服务.bat /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEPAX/VerbaAurea/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/VerbaAurea.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEPAX/VerbaAurea/HEAD/.idea/VerbaAurea.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEPAX/VerbaAurea/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEPAX/VerbaAurea/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEPAX/VerbaAurea/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEPAX/VerbaAurea/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEPAX/VerbaAurea/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEPAX/VerbaAurea/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEPAX/VerbaAurea/HEAD/README_EN.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEPAX/VerbaAurea/HEAD/config.json -------------------------------------------------------------------------------- /config_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEPAX/VerbaAurea/HEAD/config_manager.py -------------------------------------------------------------------------------- /document_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEPAX/VerbaAurea/HEAD/document_processor.py -------------------------------------------------------------------------------- /excel_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEPAX/VerbaAurea/HEAD/excel_processor.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEPAX/VerbaAurea/HEAD/main.py -------------------------------------------------------------------------------- /parallel_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEPAX/VerbaAurea/HEAD/parallel_processor.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEPAX/VerbaAurea/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_web_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEPAX/VerbaAurea/HEAD/run_web_service.py -------------------------------------------------------------------------------- /start_web_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEPAX/VerbaAurea/HEAD/start_web_service.py -------------------------------------------------------------------------------- /static/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEPAX/VerbaAurea/HEAD/static/script.js -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEPAX/VerbaAurea/HEAD/static/style.css -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEPAX/VerbaAurea/HEAD/templates/index.html -------------------------------------------------------------------------------- /text_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEPAX/VerbaAurea/HEAD/text_analysis.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEPAX/VerbaAurea/HEAD/utils.py -------------------------------------------------------------------------------- /web_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEPAX/VerbaAurea/HEAD/web_service.py -------------------------------------------------------------------------------- /启动Web服务.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEPAX/VerbaAurea/HEAD/启动Web服务.bat --------------------------------------------------------------------------------