├── .gitattributes ├── README.MD ├── app ├── __init__.py ├── api │ ├── __init__.py │ ├── app.py │ ├── helper.py │ ├── main.py │ └── routers │ │ ├── __init__.py │ │ ├── conf.py │ │ └── system.py ├── helper │ ├── __init__.py │ ├── middleware │ │ ├── __init__.py │ │ ├── context.py │ │ ├── exchandler.py │ │ └── proxy.py │ └── routers │ │ ├── __init__.py │ │ ├── conf.py │ │ ├── system.py │ │ └── utils.py ├── html │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .postcssrc.js │ ├── README.md │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── logo.png │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ ├── dist │ │ ├── index.html │ │ └── static │ │ │ ├── css │ │ │ ├── app.ba31b6630a65e0abad4236bb124ed8e1.css │ │ │ └── app.ba31b6630a65e0abad4236bb124ed8e1.css.map │ │ │ ├── fonts │ │ │ ├── materialdesignicons-webfont.2d0a0d8.eot │ │ │ ├── materialdesignicons-webfont.b4917be.woff │ │ │ ├── materialdesignicons-webfont.d006653.woff2 │ │ │ └── materialdesignicons-webfont.f511123.ttf │ │ │ └── js │ │ │ ├── app.451f549ec4a3b00251b3.js │ │ │ ├── app.451f549ec4a3b00251b3.js.map │ │ │ ├── manifest.2ae2e69a05c33dfc65f8.js │ │ │ ├── manifest.2ae2e69a05c33dfc65f8.js.map │ │ │ ├── vendor.0069d94728144397e2f3.js │ │ │ └── vendor.0069d94728144397e2f3.js.map │ ├── index.html │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ ├── logo.png │ │ │ ├── setting.json │ │ │ └── test.json │ │ ├── components │ │ │ ├── main │ │ │ │ ├── Information │ │ │ │ │ ├── Information.vue │ │ │ │ │ └── layout │ │ │ │ │ │ ├── AppInfo.vue │ │ │ │ │ │ └── WorkerInfo.vue │ │ │ │ ├── Settings │ │ │ │ │ ├── Settings.vue │ │ │ │ │ └── layout │ │ │ │ │ │ ├── Checkbox.vue │ │ │ │ │ │ ├── Combobox.vue │ │ │ │ │ │ ├── Configure.vue │ │ │ │ │ │ ├── FormGroup.vue │ │ │ │ │ │ ├── Radio.vue │ │ │ │ │ │ ├── Selects.vue │ │ │ │ │ │ ├── Slider.vue │ │ │ │ │ │ ├── Switch.vue │ │ │ │ │ │ ├── TextField.vue │ │ │ │ │ │ ├── Textareas.vue │ │ │ │ │ │ └── Tree.vue │ │ │ │ ├── TaskData │ │ │ │ │ ├── TaskData.vue │ │ │ │ │ └── layout │ │ │ │ │ │ ├── NodeData.vue │ │ │ │ │ │ └── NodeLog.vue │ │ │ │ ├── TaskDetail │ │ │ │ │ ├── TaskDetail.vue │ │ │ │ │ └── layout │ │ │ │ │ │ ├── FlowChart.vue │ │ │ │ │ │ └── NodeTable.vue │ │ │ │ └── TaskView │ │ │ │ │ ├── TaskView.vue │ │ │ │ │ └── layout │ │ │ │ │ └── TaskList.vue │ │ │ ├── nav │ │ │ │ ├── InformationControl │ │ │ │ │ └── InformationControl.vue │ │ │ │ ├── SettingsControl │ │ │ │ │ ├── SettingsControl.vue │ │ │ │ │ └── layout │ │ │ │ │ │ └── SettingsTool.vue │ │ │ │ └── TaskControl │ │ │ │ │ ├── TaskControl.vue │ │ │ │ │ └── layout │ │ │ │ │ └── TaskTool.vue │ │ │ ├── popout │ │ │ │ ├── dialog │ │ │ │ │ └── AddNew │ │ │ │ │ │ ├── AddNew.vue │ │ │ │ │ │ └── layout │ │ │ │ │ │ └── Combobox.vue │ │ │ │ └── message │ │ │ │ │ └── RespAlert │ │ │ │ │ └── RespAlert.vue │ │ │ └── sider │ │ │ │ └── MainTab │ │ │ │ └── MainTab.vue │ │ ├── css │ │ │ ├── css.css │ │ │ ├── google-material-icons.css │ │ │ ├── main.css │ │ │ └── materialdesignicons.css │ │ ├── fonts │ │ │ ├── materialdesignicons-webfont.eot │ │ │ ├── materialdesignicons-webfont.ttf │ │ │ ├── materialdesignicons-webfont.woff │ │ │ └── materialdesignicons-webfont.woff2 │ │ ├── helper │ │ │ ├── index.js │ │ │ ├── settingTypes.js │ │ │ ├── task.js │ │ │ └── utils.js │ │ ├── main.js │ │ ├── plugins │ │ │ ├── axios.js │ │ │ ├── jsonViewer.js │ │ │ ├── router.js │ │ │ ├── store.js │ │ │ └── vuetify.js │ │ ├── router │ │ │ └── index.js │ │ ├── store │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── index.js │ │ │ ├── modules │ │ │ │ ├── app.js │ │ │ │ ├── index.js │ │ │ │ ├── information.js │ │ │ │ ├── settings.js │ │ │ │ └── task.js │ │ │ ├── mutation-types.js │ │ │ └── mutations.js │ │ └── views │ │ │ ├── layout │ │ │ ├── AppMain.vue │ │ │ ├── NavBar.vue │ │ │ ├── SiderBar.vue │ │ │ └── StatusBar.vue │ │ │ └── pages │ │ │ ├── main │ │ │ ├── InformationPage.vue │ │ │ ├── SettingsPage.vue │ │ │ └── TaskPage.vue │ │ │ └── nav │ │ │ ├── InformationNav.vue │ │ │ ├── SettingsNav.vue │ │ │ └── TaskNav.vue │ ├── static │ │ └── .gitkeep │ ├── test │ │ ├── e2e │ │ │ ├── custom-assertions │ │ │ │ └── elementCount.js │ │ │ ├── nightwatch.conf.js │ │ │ ├── runner.js │ │ │ └── specs │ │ │ │ └── test.js │ │ └── unit │ │ │ ├── .eslintrc │ │ │ ├── jest.conf.js │ │ │ ├── setup.js │ │ │ └── specs │ │ │ └── HelloWorld.spec.js │ └── yarn.lock ├── model │ ├── __init__.py │ ├── base.py │ ├── data.py │ ├── param.py │ └── response.py ├── script │ ├── __init__.py │ ├── app.py │ ├── main.py │ ├── manager.py │ ├── routers │ │ ├── __init__.py │ │ └── routers.py │ └── version.py └── taskflow │ ├── .gitattributes │ ├── LICENSE │ ├── README.md │ ├── __init__.py │ ├── app.py │ ├── config.py │ ├── main.py │ ├── routers │ ├── __init__.py │ ├── helper │ │ ├── __init__.py │ │ └── task.py │ └── task.py │ └── taskmgr.py ├── conf ├── app.ini ├── logger.ini ├── script.ini ├── taskflow.ini └── worker.ini ├── docker-compose.yaml ├── docs └── img │ ├── app_state.png │ ├── backend.png │ ├── settings.png │ ├── task_detail.png │ └── task_view.png ├── exception.py ├── helper ├── __init__.py ├── client │ ├── __init__.py │ ├── api.py │ ├── base.py │ ├── mysql.py │ ├── redis.py │ ├── script.py │ └── taskflow.py ├── codetable.py ├── conf │ ├── __init__.py │ ├── api.py │ ├── app.py │ ├── base.py │ ├── logger.py │ ├── script.py │ ├── taskflow.py │ └── worker.py ├── ctxtools │ ├── __init__.py │ ├── ctx.py │ ├── mgr.py │ └── vars │ │ ├── flow.py │ │ ├── request.py │ │ ├── script.py │ │ ├── stack.py │ │ └── task.py ├── db │ ├── __init__.py │ ├── base.py │ └── logger.py ├── logger │ ├── __init__.py │ ├── base.py │ ├── node.py │ └── system.py ├── payload │ ├── __init__.py │ ├── base.py │ ├── cond.py │ ├── export.py │ ├── flow.py │ ├── request.py │ ├── resolve.py │ └── stack.py └── worker │ ├── __init__.py │ ├── entrypoint.py │ ├── executor.py │ ├── pool.py │ └── worker.py ├── main.py ├── repo ├── __init__.py ├── base.py └── bilibili.py ├── request ├── __init__.py ├── download.py ├── export.py ├── ffmpeg.py ├── helper │ ├── __init__.py │ ├── ffmpeg.py │ ├── javascript.py │ ├── stream.py │ ├── subflow.py │ └── tempfile.py ├── layer │ ├── __init__.py │ ├── base.py │ ├── flow.py │ ├── node.py │ └── script.py ├── live.py ├── script.py ├── task.py └── utils.py ├── requirements.txt ├── start.py ├── startapi.py ├── startscript.py ├── starttf.py └── utils ├── common.py ├── model.py └── sqlalchemy.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/README.MD -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/api/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/api/app.py -------------------------------------------------------------------------------- /app/api/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/api/helper.py -------------------------------------------------------------------------------- /app/api/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/api/main.py -------------------------------------------------------------------------------- /app/api/routers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/api/routers/__init__.py -------------------------------------------------------------------------------- /app/api/routers/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/api/routers/conf.py -------------------------------------------------------------------------------- /app/api/routers/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/api/routers/system.py -------------------------------------------------------------------------------- /app/helper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/helper/middleware/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/helper/middleware/__init__.py -------------------------------------------------------------------------------- /app/helper/middleware/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/helper/middleware/context.py -------------------------------------------------------------------------------- /app/helper/middleware/exchandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/helper/middleware/exchandler.py -------------------------------------------------------------------------------- /app/helper/middleware/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/helper/middleware/proxy.py -------------------------------------------------------------------------------- /app/helper/routers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/helper/routers/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/helper/routers/conf.py -------------------------------------------------------------------------------- /app/helper/routers/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/helper/routers/system.py -------------------------------------------------------------------------------- /app/helper/routers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/helper/routers/utils.py -------------------------------------------------------------------------------- /app/html/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/.babelrc -------------------------------------------------------------------------------- /app/html/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/.editorconfig -------------------------------------------------------------------------------- /app/html/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/.eslintignore -------------------------------------------------------------------------------- /app/html/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/.eslintrc.js -------------------------------------------------------------------------------- /app/html/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/.postcssrc.js -------------------------------------------------------------------------------- /app/html/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/README.md -------------------------------------------------------------------------------- /app/html/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/build/build.js -------------------------------------------------------------------------------- /app/html/build/check-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/build/check-versions.js -------------------------------------------------------------------------------- /app/html/build/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/build/logo.png -------------------------------------------------------------------------------- /app/html/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/build/utils.js -------------------------------------------------------------------------------- /app/html/build/vue-loader.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/build/vue-loader.conf.js -------------------------------------------------------------------------------- /app/html/build/webpack.base.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/build/webpack.base.conf.js -------------------------------------------------------------------------------- /app/html/build/webpack.dev.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/build/webpack.dev.conf.js -------------------------------------------------------------------------------- /app/html/build/webpack.prod.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/build/webpack.prod.conf.js -------------------------------------------------------------------------------- /app/html/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/config/dev.env.js -------------------------------------------------------------------------------- /app/html/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/config/index.js -------------------------------------------------------------------------------- /app/html/config/prod.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = { 3 | NODE_ENV: '"production"' 4 | } 5 | -------------------------------------------------------------------------------- /app/html/config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/config/test.env.js -------------------------------------------------------------------------------- /app/html/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/dist/index.html -------------------------------------------------------------------------------- /app/html/dist/static/css/app.ba31b6630a65e0abad4236bb124ed8e1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/dist/static/css/app.ba31b6630a65e0abad4236bb124ed8e1.css -------------------------------------------------------------------------------- /app/html/dist/static/css/app.ba31b6630a65e0abad4236bb124ed8e1.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/dist/static/css/app.ba31b6630a65e0abad4236bb124ed8e1.css.map -------------------------------------------------------------------------------- /app/html/dist/static/fonts/materialdesignicons-webfont.2d0a0d8.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/dist/static/fonts/materialdesignicons-webfont.2d0a0d8.eot -------------------------------------------------------------------------------- /app/html/dist/static/fonts/materialdesignicons-webfont.b4917be.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/dist/static/fonts/materialdesignicons-webfont.b4917be.woff -------------------------------------------------------------------------------- /app/html/dist/static/fonts/materialdesignicons-webfont.d006653.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/dist/static/fonts/materialdesignicons-webfont.d006653.woff2 -------------------------------------------------------------------------------- /app/html/dist/static/fonts/materialdesignicons-webfont.f511123.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/dist/static/fonts/materialdesignicons-webfont.f511123.ttf -------------------------------------------------------------------------------- /app/html/dist/static/js/app.451f549ec4a3b00251b3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/dist/static/js/app.451f549ec4a3b00251b3.js -------------------------------------------------------------------------------- /app/html/dist/static/js/app.451f549ec4a3b00251b3.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/dist/static/js/app.451f549ec4a3b00251b3.js.map -------------------------------------------------------------------------------- /app/html/dist/static/js/manifest.2ae2e69a05c33dfc65f8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/dist/static/js/manifest.2ae2e69a05c33dfc65f8.js -------------------------------------------------------------------------------- /app/html/dist/static/js/manifest.2ae2e69a05c33dfc65f8.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/dist/static/js/manifest.2ae2e69a05c33dfc65f8.js.map -------------------------------------------------------------------------------- /app/html/dist/static/js/vendor.0069d94728144397e2f3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/dist/static/js/vendor.0069d94728144397e2f3.js -------------------------------------------------------------------------------- /app/html/dist/static/js/vendor.0069d94728144397e2f3.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/dist/static/js/vendor.0069d94728144397e2f3.js.map -------------------------------------------------------------------------------- /app/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/index.html -------------------------------------------------------------------------------- /app/html/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/package.json -------------------------------------------------------------------------------- /app/html/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/App.vue -------------------------------------------------------------------------------- /app/html/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/assets/logo.png -------------------------------------------------------------------------------- /app/html/src/assets/setting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/assets/setting.json -------------------------------------------------------------------------------- /app/html/src/assets/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/assets/test.json -------------------------------------------------------------------------------- /app/html/src/components/main/Information/Information.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/components/main/Information/Information.vue -------------------------------------------------------------------------------- /app/html/src/components/main/Information/layout/AppInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/components/main/Information/layout/AppInfo.vue -------------------------------------------------------------------------------- /app/html/src/components/main/Information/layout/WorkerInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/components/main/Information/layout/WorkerInfo.vue -------------------------------------------------------------------------------- /app/html/src/components/main/Settings/Settings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/components/main/Settings/Settings.vue -------------------------------------------------------------------------------- /app/html/src/components/main/Settings/layout/Checkbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/components/main/Settings/layout/Checkbox.vue -------------------------------------------------------------------------------- /app/html/src/components/main/Settings/layout/Combobox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/components/main/Settings/layout/Combobox.vue -------------------------------------------------------------------------------- /app/html/src/components/main/Settings/layout/Configure.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/components/main/Settings/layout/Configure.vue -------------------------------------------------------------------------------- /app/html/src/components/main/Settings/layout/FormGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/components/main/Settings/layout/FormGroup.vue -------------------------------------------------------------------------------- /app/html/src/components/main/Settings/layout/Radio.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/components/main/Settings/layout/Radio.vue -------------------------------------------------------------------------------- /app/html/src/components/main/Settings/layout/Selects.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/html/src/components/main/Settings/layout/Slider.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/components/main/Settings/layout/Slider.vue -------------------------------------------------------------------------------- /app/html/src/components/main/Settings/layout/Switch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/components/main/Settings/layout/Switch.vue -------------------------------------------------------------------------------- /app/html/src/components/main/Settings/layout/TextField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/components/main/Settings/layout/TextField.vue -------------------------------------------------------------------------------- /app/html/src/components/main/Settings/layout/Textareas.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/html/src/components/main/Settings/layout/Tree.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/components/main/Settings/layout/Tree.vue -------------------------------------------------------------------------------- /app/html/src/components/main/TaskData/TaskData.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/components/main/TaskData/TaskData.vue -------------------------------------------------------------------------------- /app/html/src/components/main/TaskData/layout/NodeData.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/components/main/TaskData/layout/NodeData.vue -------------------------------------------------------------------------------- /app/html/src/components/main/TaskData/layout/NodeLog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/components/main/TaskData/layout/NodeLog.vue -------------------------------------------------------------------------------- /app/html/src/components/main/TaskDetail/TaskDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/components/main/TaskDetail/TaskDetail.vue -------------------------------------------------------------------------------- /app/html/src/components/main/TaskDetail/layout/FlowChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/components/main/TaskDetail/layout/FlowChart.vue -------------------------------------------------------------------------------- /app/html/src/components/main/TaskDetail/layout/NodeTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/components/main/TaskDetail/layout/NodeTable.vue -------------------------------------------------------------------------------- /app/html/src/components/main/TaskView/TaskView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/components/main/TaskView/TaskView.vue -------------------------------------------------------------------------------- /app/html/src/components/main/TaskView/layout/TaskList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/components/main/TaskView/layout/TaskList.vue -------------------------------------------------------------------------------- /app/html/src/components/nav/InformationControl/InformationControl.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/components/nav/InformationControl/InformationControl.vue -------------------------------------------------------------------------------- /app/html/src/components/nav/SettingsControl/SettingsControl.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/components/nav/SettingsControl/SettingsControl.vue -------------------------------------------------------------------------------- /app/html/src/components/nav/SettingsControl/layout/SettingsTool.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/components/nav/SettingsControl/layout/SettingsTool.vue -------------------------------------------------------------------------------- /app/html/src/components/nav/TaskControl/TaskControl.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/components/nav/TaskControl/TaskControl.vue -------------------------------------------------------------------------------- /app/html/src/components/nav/TaskControl/layout/TaskTool.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/components/nav/TaskControl/layout/TaskTool.vue -------------------------------------------------------------------------------- /app/html/src/components/popout/dialog/AddNew/AddNew.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/components/popout/dialog/AddNew/AddNew.vue -------------------------------------------------------------------------------- /app/html/src/components/popout/dialog/AddNew/layout/Combobox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/components/popout/dialog/AddNew/layout/Combobox.vue -------------------------------------------------------------------------------- /app/html/src/components/popout/message/RespAlert/RespAlert.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/components/popout/message/RespAlert/RespAlert.vue -------------------------------------------------------------------------------- /app/html/src/components/sider/MainTab/MainTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/components/sider/MainTab/MainTab.vue -------------------------------------------------------------------------------- /app/html/src/css/css.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/css/css.css -------------------------------------------------------------------------------- /app/html/src/css/google-material-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/css/google-material-icons.css -------------------------------------------------------------------------------- /app/html/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/css/main.css -------------------------------------------------------------------------------- /app/html/src/css/materialdesignicons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/css/materialdesignicons.css -------------------------------------------------------------------------------- /app/html/src/fonts/materialdesignicons-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/fonts/materialdesignicons-webfont.eot -------------------------------------------------------------------------------- /app/html/src/fonts/materialdesignicons-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/fonts/materialdesignicons-webfont.ttf -------------------------------------------------------------------------------- /app/html/src/fonts/materialdesignicons-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/fonts/materialdesignicons-webfont.woff -------------------------------------------------------------------------------- /app/html/src/fonts/materialdesignicons-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/fonts/materialdesignicons-webfont.woff2 -------------------------------------------------------------------------------- /app/html/src/helper/index.js: -------------------------------------------------------------------------------- 1 | export * from './utils' -------------------------------------------------------------------------------- /app/html/src/helper/settingTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/helper/settingTypes.js -------------------------------------------------------------------------------- /app/html/src/helper/task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/helper/task.js -------------------------------------------------------------------------------- /app/html/src/helper/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/helper/utils.js -------------------------------------------------------------------------------- /app/html/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/main.js -------------------------------------------------------------------------------- /app/html/src/plugins/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/plugins/axios.js -------------------------------------------------------------------------------- /app/html/src/plugins/jsonViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/plugins/jsonViewer.js -------------------------------------------------------------------------------- /app/html/src/plugins/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/plugins/router.js -------------------------------------------------------------------------------- /app/html/src/plugins/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/plugins/store.js -------------------------------------------------------------------------------- /app/html/src/plugins/vuetify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/plugins/vuetify.js -------------------------------------------------------------------------------- /app/html/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/router/index.js -------------------------------------------------------------------------------- /app/html/src/store/actions.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/html/src/store/getters.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/html/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/store/index.js -------------------------------------------------------------------------------- /app/html/src/store/modules/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/store/modules/app.js -------------------------------------------------------------------------------- /app/html/src/store/modules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/store/modules/index.js -------------------------------------------------------------------------------- /app/html/src/store/modules/information.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/store/modules/information.js -------------------------------------------------------------------------------- /app/html/src/store/modules/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/store/modules/settings.js -------------------------------------------------------------------------------- /app/html/src/store/modules/task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/store/modules/task.js -------------------------------------------------------------------------------- /app/html/src/store/mutation-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/store/mutation-types.js -------------------------------------------------------------------------------- /app/html/src/store/mutations.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/html/src/views/layout/AppMain.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/views/layout/AppMain.vue -------------------------------------------------------------------------------- /app/html/src/views/layout/NavBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/views/layout/NavBar.vue -------------------------------------------------------------------------------- /app/html/src/views/layout/SiderBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/views/layout/SiderBar.vue -------------------------------------------------------------------------------- /app/html/src/views/layout/StatusBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/views/layout/StatusBar.vue -------------------------------------------------------------------------------- /app/html/src/views/pages/main/InformationPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/views/pages/main/InformationPage.vue -------------------------------------------------------------------------------- /app/html/src/views/pages/main/SettingsPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/views/pages/main/SettingsPage.vue -------------------------------------------------------------------------------- /app/html/src/views/pages/main/TaskPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/views/pages/main/TaskPage.vue -------------------------------------------------------------------------------- /app/html/src/views/pages/nav/InformationNav.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/views/pages/nav/InformationNav.vue -------------------------------------------------------------------------------- /app/html/src/views/pages/nav/SettingsNav.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/views/pages/nav/SettingsNav.vue -------------------------------------------------------------------------------- /app/html/src/views/pages/nav/TaskNav.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/src/views/pages/nav/TaskNav.vue -------------------------------------------------------------------------------- /app/html/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/html/test/e2e/custom-assertions/elementCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/test/e2e/custom-assertions/elementCount.js -------------------------------------------------------------------------------- /app/html/test/e2e/nightwatch.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/test/e2e/nightwatch.conf.js -------------------------------------------------------------------------------- /app/html/test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/test/e2e/runner.js -------------------------------------------------------------------------------- /app/html/test/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/test/e2e/specs/test.js -------------------------------------------------------------------------------- /app/html/test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/test/unit/.eslintrc -------------------------------------------------------------------------------- /app/html/test/unit/jest.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/test/unit/jest.conf.js -------------------------------------------------------------------------------- /app/html/test/unit/setup.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | 3 | Vue.config.productionTip = false 4 | -------------------------------------------------------------------------------- /app/html/test/unit/specs/HelloWorld.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/test/unit/specs/HelloWorld.spec.js -------------------------------------------------------------------------------- /app/html/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/html/yarn.lock -------------------------------------------------------------------------------- /app/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/model/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/model/base.py -------------------------------------------------------------------------------- /app/model/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/model/data.py -------------------------------------------------------------------------------- /app/model/param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/model/param.py -------------------------------------------------------------------------------- /app/model/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/model/response.py -------------------------------------------------------------------------------- /app/script/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/script/__init__.py -------------------------------------------------------------------------------- /app/script/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/script/app.py -------------------------------------------------------------------------------- /app/script/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/script/main.py -------------------------------------------------------------------------------- /app/script/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/script/manager.py -------------------------------------------------------------------------------- /app/script/routers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/script/routers/__init__.py -------------------------------------------------------------------------------- /app/script/routers/routers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/script/routers/routers.py -------------------------------------------------------------------------------- /app/script/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/script/version.py -------------------------------------------------------------------------------- /app/taskflow/.gitattributes: -------------------------------------------------------------------------------- 1 | app/static/* linguist-vendored 2 | -------------------------------------------------------------------------------- /app/taskflow/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/taskflow/LICENSE -------------------------------------------------------------------------------- /app/taskflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/taskflow/README.md -------------------------------------------------------------------------------- /app/taskflow/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /app/taskflow/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/taskflow/app.py -------------------------------------------------------------------------------- /app/taskflow/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/taskflow/config.py -------------------------------------------------------------------------------- /app/taskflow/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/taskflow/main.py -------------------------------------------------------------------------------- /app/taskflow/routers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/taskflow/routers/__init__.py -------------------------------------------------------------------------------- /app/taskflow/routers/helper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/taskflow/routers/helper/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/taskflow/routers/helper/task.py -------------------------------------------------------------------------------- /app/taskflow/routers/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/taskflow/routers/task.py -------------------------------------------------------------------------------- /app/taskflow/taskmgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/app/taskflow/taskmgr.py -------------------------------------------------------------------------------- /conf/app.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/conf/app.ini -------------------------------------------------------------------------------- /conf/logger.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/conf/logger.ini -------------------------------------------------------------------------------- /conf/script.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/conf/script.ini -------------------------------------------------------------------------------- /conf/taskflow.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/conf/taskflow.ini -------------------------------------------------------------------------------- /conf/worker.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/conf/worker.ini -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docs/img/app_state.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/docs/img/app_state.png -------------------------------------------------------------------------------- /docs/img/backend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/docs/img/backend.png -------------------------------------------------------------------------------- /docs/img/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/docs/img/settings.png -------------------------------------------------------------------------------- /docs/img/task_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/docs/img/task_detail.png -------------------------------------------------------------------------------- /docs/img/task_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/docs/img/task_view.png -------------------------------------------------------------------------------- /exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/exception.py -------------------------------------------------------------------------------- /helper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helper/client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/client/__init__.py -------------------------------------------------------------------------------- /helper/client/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/client/api.py -------------------------------------------------------------------------------- /helper/client/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/client/base.py -------------------------------------------------------------------------------- /helper/client/mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/client/mysql.py -------------------------------------------------------------------------------- /helper/client/redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/client/redis.py -------------------------------------------------------------------------------- /helper/client/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/client/script.py -------------------------------------------------------------------------------- /helper/client/taskflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/client/taskflow.py -------------------------------------------------------------------------------- /helper/codetable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/codetable.py -------------------------------------------------------------------------------- /helper/conf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/conf/__init__.py -------------------------------------------------------------------------------- /helper/conf/api.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helper/conf/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/conf/app.py -------------------------------------------------------------------------------- /helper/conf/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/conf/base.py -------------------------------------------------------------------------------- /helper/conf/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/conf/logger.py -------------------------------------------------------------------------------- /helper/conf/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/conf/script.py -------------------------------------------------------------------------------- /helper/conf/taskflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/conf/taskflow.py -------------------------------------------------------------------------------- /helper/conf/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/conf/worker.py -------------------------------------------------------------------------------- /helper/ctxtools/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | from helper.ctxtools.mgr import copy_context_to_dict 4 | -------------------------------------------------------------------------------- /helper/ctxtools/ctx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/ctxtools/ctx.py -------------------------------------------------------------------------------- /helper/ctxtools/mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/ctxtools/mgr.py -------------------------------------------------------------------------------- /helper/ctxtools/vars/flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/ctxtools/vars/flow.py -------------------------------------------------------------------------------- /helper/ctxtools/vars/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/ctxtools/vars/request.py -------------------------------------------------------------------------------- /helper/ctxtools/vars/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/ctxtools/vars/script.py -------------------------------------------------------------------------------- /helper/ctxtools/vars/stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/ctxtools/vars/stack.py -------------------------------------------------------------------------------- /helper/ctxtools/vars/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/ctxtools/vars/task.py -------------------------------------------------------------------------------- /helper/db/__init__.py: -------------------------------------------------------------------------------- 1 | raise NotImplementedError() -------------------------------------------------------------------------------- /helper/db/base.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helper/db/logger.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helper/logger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/logger/__init__.py -------------------------------------------------------------------------------- /helper/logger/base.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helper/logger/node.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helper/logger/system.py: -------------------------------------------------------------------------------- 1 | raise NotImplementedError() -------------------------------------------------------------------------------- /helper/payload/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/payload/__init__.py -------------------------------------------------------------------------------- /helper/payload/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/payload/base.py -------------------------------------------------------------------------------- /helper/payload/cond.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/payload/cond.py -------------------------------------------------------------------------------- /helper/payload/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/payload/export.py -------------------------------------------------------------------------------- /helper/payload/flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/payload/flow.py -------------------------------------------------------------------------------- /helper/payload/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/payload/request.py -------------------------------------------------------------------------------- /helper/payload/resolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/payload/resolve.py -------------------------------------------------------------------------------- /helper/payload/stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/payload/stack.py -------------------------------------------------------------------------------- /helper/worker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/worker/__init__.py -------------------------------------------------------------------------------- /helper/worker/entrypoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/worker/entrypoint.py -------------------------------------------------------------------------------- /helper/worker/executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/worker/executor.py -------------------------------------------------------------------------------- /helper/worker/pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/worker/pool.py -------------------------------------------------------------------------------- /helper/worker/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/helper/worker/worker.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/main.py -------------------------------------------------------------------------------- /repo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repo/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/repo/base.py -------------------------------------------------------------------------------- /repo/bilibili.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/repo/bilibili.py -------------------------------------------------------------------------------- /request/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/request/__init__.py -------------------------------------------------------------------------------- /request/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/request/download.py -------------------------------------------------------------------------------- /request/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/request/export.py -------------------------------------------------------------------------------- /request/ffmpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/request/ffmpeg.py -------------------------------------------------------------------------------- /request/helper/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /request/helper/ffmpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/request/helper/ffmpeg.py -------------------------------------------------------------------------------- /request/helper/javascript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/request/helper/javascript.py -------------------------------------------------------------------------------- /request/helper/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/request/helper/stream.py -------------------------------------------------------------------------------- /request/helper/subflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/request/helper/subflow.py -------------------------------------------------------------------------------- /request/helper/tempfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/request/helper/tempfile.py -------------------------------------------------------------------------------- /request/layer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/request/layer/__init__.py -------------------------------------------------------------------------------- /request/layer/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/request/layer/base.py -------------------------------------------------------------------------------- /request/layer/flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/request/layer/flow.py -------------------------------------------------------------------------------- /request/layer/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/request/layer/node.py -------------------------------------------------------------------------------- /request/layer/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/request/layer/script.py -------------------------------------------------------------------------------- /request/live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/request/live.py -------------------------------------------------------------------------------- /request/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/request/script.py -------------------------------------------------------------------------------- /request/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/request/task.py -------------------------------------------------------------------------------- /request/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/request/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/requirements.txt -------------------------------------------------------------------------------- /start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/start.py -------------------------------------------------------------------------------- /startapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/startapi.py -------------------------------------------------------------------------------- /startscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/startscript.py -------------------------------------------------------------------------------- /starttf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/starttf.py -------------------------------------------------------------------------------- /utils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/utils/common.py -------------------------------------------------------------------------------- /utils/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSAIm/VideoCrawlerEngine/HEAD/utils/model.py -------------------------------------------------------------------------------- /utils/sqlalchemy.py: -------------------------------------------------------------------------------- 1 | # TODO: 封装sqlalchemy,以方便helper.db进一步封装成工具类 2 | raise NotImplementedError() 3 | 4 | --------------------------------------------------------------------------------