├── .gitignore ├── JD-AutomaticEvaluate ├── .gitignore ├── JDpc-AutomaticEvaluate.py ├── README.md ├── common │ └── utils.py ├── ios │ ├── .gitignore │ ├── README.md │ ├── __init__.py │ └── src │ │ ├── automaticEvaluate.py │ │ ├── data.py │ │ ├── logger.py │ │ ├── selector.py │ │ └── utils.py ├── pc │ └── src │ │ ├── AutomaticEvaluate.py │ │ ├── __init__.py │ │ ├── api_service.py │ │ ├── data.py │ │ ├── logInWithCookies.py │ │ └── logger.py └── requirements.txt ├── JD-GetCookie ├── .gitignore ├── README.md ├── getCookies.py ├── logInWithCookies.py └── requirements.txt ├── JD-PersDataExporter ├── .gitignore ├── README.en.md ├── README.md ├── config │ ├── config.json │ ├── mysql_config.json │ └── mysql_user.ini ├── main.py ├── requirements.txt ├── src │ ├── Exporter.py │ ├── LoginManager.py │ ├── __init__.py │ ├── data.py │ ├── dataPortector.py │ ├── databaseManager.py │ ├── logger.py │ └── storage │ │ ├── __init__.py │ │ ├── dataStorageToExcel.py │ │ └── dataStorageToMySQL.py ├── static │ ├── image │ │ ├── webUI-account-info.png │ │ ├── webUI-add-account.png │ │ ├── webUI-fetch.png │ │ ├── webUI-form-preview.png │ │ ├── webUI-storage-data.png │ │ ├── webUI-storage-excel-add.png │ │ ├── webUI-storage-excel-success.png │ │ └── webUI-storage-excel.png │ └── theme.py └── webUI.py ├── LICENSE ├── README.en.md └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/.gitignore -------------------------------------------------------------------------------- /JD-AutomaticEvaluate/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-AutomaticEvaluate/.gitignore -------------------------------------------------------------------------------- /JD-AutomaticEvaluate/JDpc-AutomaticEvaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-AutomaticEvaluate/JDpc-AutomaticEvaluate.py -------------------------------------------------------------------------------- /JD-AutomaticEvaluate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-AutomaticEvaluate/README.md -------------------------------------------------------------------------------- /JD-AutomaticEvaluate/common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-AutomaticEvaluate/common/utils.py -------------------------------------------------------------------------------- /JD-AutomaticEvaluate/ios/.gitignore: -------------------------------------------------------------------------------- 1 | # project 2 | .idea/ 3 | res/ 4 | Test/ -------------------------------------------------------------------------------- /JD-AutomaticEvaluate/ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-AutomaticEvaluate/ios/README.md -------------------------------------------------------------------------------- /JD-AutomaticEvaluate/ios/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-AutomaticEvaluate/ios/__init__.py -------------------------------------------------------------------------------- /JD-AutomaticEvaluate/ios/src/automaticEvaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-AutomaticEvaluate/ios/src/automaticEvaluate.py -------------------------------------------------------------------------------- /JD-AutomaticEvaluate/ios/src/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-AutomaticEvaluate/ios/src/data.py -------------------------------------------------------------------------------- /JD-AutomaticEvaluate/ios/src/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-AutomaticEvaluate/ios/src/logger.py -------------------------------------------------------------------------------- /JD-AutomaticEvaluate/ios/src/selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-AutomaticEvaluate/ios/src/selector.py -------------------------------------------------------------------------------- /JD-AutomaticEvaluate/ios/src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-AutomaticEvaluate/ios/src/utils.py -------------------------------------------------------------------------------- /JD-AutomaticEvaluate/pc/src/AutomaticEvaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-AutomaticEvaluate/pc/src/AutomaticEvaluate.py -------------------------------------------------------------------------------- /JD-AutomaticEvaluate/pc/src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-AutomaticEvaluate/pc/src/__init__.py -------------------------------------------------------------------------------- /JD-AutomaticEvaluate/pc/src/api_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-AutomaticEvaluate/pc/src/api_service.py -------------------------------------------------------------------------------- /JD-AutomaticEvaluate/pc/src/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-AutomaticEvaluate/pc/src/data.py -------------------------------------------------------------------------------- /JD-AutomaticEvaluate/pc/src/logInWithCookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-AutomaticEvaluate/pc/src/logInWithCookies.py -------------------------------------------------------------------------------- /JD-AutomaticEvaluate/pc/src/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-AutomaticEvaluate/pc/src/logger.py -------------------------------------------------------------------------------- /JD-AutomaticEvaluate/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-AutomaticEvaluate/requirements.txt -------------------------------------------------------------------------------- /JD-GetCookie/.gitignore: -------------------------------------------------------------------------------- 1 | # project 2 | *[0-9].* 3 | cookies.json 4 | -------------------------------------------------------------------------------- /JD-GetCookie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-GetCookie/README.md -------------------------------------------------------------------------------- /JD-GetCookie/getCookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-GetCookie/getCookies.py -------------------------------------------------------------------------------- /JD-GetCookie/logInWithCookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-GetCookie/logInWithCookies.py -------------------------------------------------------------------------------- /JD-GetCookie/requirements.txt: -------------------------------------------------------------------------------- 1 | playwright==1.47.0 -------------------------------------------------------------------------------- /JD-PersDataExporter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-PersDataExporter/.gitignore -------------------------------------------------------------------------------- /JD-PersDataExporter/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-PersDataExporter/README.en.md -------------------------------------------------------------------------------- /JD-PersDataExporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-PersDataExporter/README.md -------------------------------------------------------------------------------- /JD-PersDataExporter/config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-PersDataExporter/config/config.json -------------------------------------------------------------------------------- /JD-PersDataExporter/config/mysql_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-PersDataExporter/config/mysql_config.json -------------------------------------------------------------------------------- /JD-PersDataExporter/config/mysql_user.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-PersDataExporter/config/mysql_user.ini -------------------------------------------------------------------------------- /JD-PersDataExporter/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-PersDataExporter/main.py -------------------------------------------------------------------------------- /JD-PersDataExporter/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-PersDataExporter/requirements.txt -------------------------------------------------------------------------------- /JD-PersDataExporter/src/Exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-PersDataExporter/src/Exporter.py -------------------------------------------------------------------------------- /JD-PersDataExporter/src/LoginManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-PersDataExporter/src/LoginManager.py -------------------------------------------------------------------------------- /JD-PersDataExporter/src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-PersDataExporter/src/__init__.py -------------------------------------------------------------------------------- /JD-PersDataExporter/src/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-PersDataExporter/src/data.py -------------------------------------------------------------------------------- /JD-PersDataExporter/src/dataPortector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-PersDataExporter/src/dataPortector.py -------------------------------------------------------------------------------- /JD-PersDataExporter/src/databaseManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-PersDataExporter/src/databaseManager.py -------------------------------------------------------------------------------- /JD-PersDataExporter/src/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-PersDataExporter/src/logger.py -------------------------------------------------------------------------------- /JD-PersDataExporter/src/storage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-PersDataExporter/src/storage/__init__.py -------------------------------------------------------------------------------- /JD-PersDataExporter/src/storage/dataStorageToExcel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-PersDataExporter/src/storage/dataStorageToExcel.py -------------------------------------------------------------------------------- /JD-PersDataExporter/src/storage/dataStorageToMySQL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-PersDataExporter/src/storage/dataStorageToMySQL.py -------------------------------------------------------------------------------- /JD-PersDataExporter/static/image/webUI-account-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-PersDataExporter/static/image/webUI-account-info.png -------------------------------------------------------------------------------- /JD-PersDataExporter/static/image/webUI-add-account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-PersDataExporter/static/image/webUI-add-account.png -------------------------------------------------------------------------------- /JD-PersDataExporter/static/image/webUI-fetch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-PersDataExporter/static/image/webUI-fetch.png -------------------------------------------------------------------------------- /JD-PersDataExporter/static/image/webUI-form-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-PersDataExporter/static/image/webUI-form-preview.png -------------------------------------------------------------------------------- /JD-PersDataExporter/static/image/webUI-storage-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-PersDataExporter/static/image/webUI-storage-data.png -------------------------------------------------------------------------------- /JD-PersDataExporter/static/image/webUI-storage-excel-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-PersDataExporter/static/image/webUI-storage-excel-add.png -------------------------------------------------------------------------------- /JD-PersDataExporter/static/image/webUI-storage-excel-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-PersDataExporter/static/image/webUI-storage-excel-success.png -------------------------------------------------------------------------------- /JD-PersDataExporter/static/image/webUI-storage-excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-PersDataExporter/static/image/webUI-storage-excel.png -------------------------------------------------------------------------------- /JD-PersDataExporter/static/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-PersDataExporter/static/theme.py -------------------------------------------------------------------------------- /JD-PersDataExporter/webUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/JD-PersDataExporter/webUI.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/README.en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goodnameisfordoggy/JD-AutomatedTools/HEAD/README.md --------------------------------------------------------------------------------