├── .gitignore ├── LICENSE.md ├── Plugins ├── ApiFramework │ ├── ApiFramework.py │ └── README.md ├── ChatLikeCMD │ ├── ChatLikeCMD.py │ └── README.md ├── CoordinateClient │ ├── CoordinateClient.py │ └── README.md ├── JoyStick │ ├── README.md │ ├── joystick.py │ └── run.py ├── LoadBar │ ├── LoadBar.py │ └── README.md ├── MailNotification │ ├── MailNotification.py │ ├── README.md │ └── config.json ├── MysqlClient │ ├── MysqlClient.py │ ├── README.md │ └── Sqlite3Client.py ├── ProgressBar │ ├── ProgressBar.py │ └── README.md ├── ProgressRecorder │ ├── ProcessRecorder.py │ └── README.md ├── QRCode │ ├── QR.jpg │ ├── QRCode.py │ └── README.md └── Tuling │ ├── tuling.json │ └── tuling.py ├── Programs ├── AutoTranslate │ ├── main.py │ └── models │ │ ├── TranslateClient.py │ │ ├── TranslateClient.pyc │ │ ├── __init__.py │ │ └── __init__.pyc ├── Evernote │ ├── EvernoteController │ │ ├── Oauth.py │ │ ├── README.md │ │ ├── Storage.py │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── controller.py │ │ ├── controller.pyc │ │ ├── oauth.pyc │ │ └── storage.pyc │ ├── Memo │ │ ├── EvernoteController.py │ │ ├── Memo.py │ │ ├── README.md │ │ ├── content.enex │ │ ├── example.png │ │ └── header.enex │ └── PackMemo │ │ ├── EvernoteController.py │ │ ├── Memo.py │ │ ├── PackMemo.bat │ │ ├── PackMemo.py │ │ ├── README.md │ │ ├── content.enex │ │ ├── example.png │ │ └── header.enex ├── LogUpdater │ ├── .gitignore │ ├── README.md │ ├── atta.xml │ ├── client │ │ ├── ExcelClient.py │ │ ├── LogClient.py │ │ ├── LogClient_old.py │ │ ├── OutlookAttachViewClient.py │ │ └── __init__.py │ ├── data │ │ └── storage │ │ │ ├── upload-20160302.xls │ │ │ └── upload-20160303.xls │ ├── infolist │ │ ├── cases.xlsx │ │ ├── config.json │ │ └── userNameStorage.xls │ ├── lib │ │ ├── __init__.py │ │ ├── config.py │ │ ├── makeuploadfile.py │ │ ├── producexml.py │ │ └── uploadlog.py │ └── run.py ├── PCMusicViaWechat │ ├── .gitignore │ ├── README.md │ └── run.py └── SetBurpProxy │ ├── README.md │ └── SetBurpProxy.py ├── README.md └── Scripts ├── ChangeEncode.py ├── DaYuSMS.py ├── ExcelClient.py ├── IdentificationNumber ├── IdentificationNumber.py └── district.cfg ├── LogInput&Output ├── py2.py └── py3.py ├── SMSBomb.py ├── SendToMyself.py ├── TimeCalculate.py ├── TranslateClient.py ├── WechatArticlePicDownloader.py ├── ascii.py ├── baidusearch.py └── qtimageconvert.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.swp 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Plugins/ApiFramework/ApiFramework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Plugins/ApiFramework/ApiFramework.py -------------------------------------------------------------------------------- /Plugins/ApiFramework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Plugins/ApiFramework/README.md -------------------------------------------------------------------------------- /Plugins/ChatLikeCMD/ChatLikeCMD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Plugins/ChatLikeCMD/ChatLikeCMD.py -------------------------------------------------------------------------------- /Plugins/ChatLikeCMD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Plugins/ChatLikeCMD/README.md -------------------------------------------------------------------------------- /Plugins/CoordinateClient/CoordinateClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Plugins/CoordinateClient/CoordinateClient.py -------------------------------------------------------------------------------- /Plugins/CoordinateClient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Plugins/CoordinateClient/README.md -------------------------------------------------------------------------------- /Plugins/JoyStick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Plugins/JoyStick/README.md -------------------------------------------------------------------------------- /Plugins/JoyStick/joystick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Plugins/JoyStick/joystick.py -------------------------------------------------------------------------------- /Plugins/JoyStick/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Plugins/JoyStick/run.py -------------------------------------------------------------------------------- /Plugins/LoadBar/LoadBar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Plugins/LoadBar/LoadBar.py -------------------------------------------------------------------------------- /Plugins/LoadBar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Plugins/LoadBar/README.md -------------------------------------------------------------------------------- /Plugins/MailNotification/MailNotification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Plugins/MailNotification/MailNotification.py -------------------------------------------------------------------------------- /Plugins/MailNotification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Plugins/MailNotification/README.md -------------------------------------------------------------------------------- /Plugins/MailNotification/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Plugins/MailNotification/config.json -------------------------------------------------------------------------------- /Plugins/MysqlClient/MysqlClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Plugins/MysqlClient/MysqlClient.py -------------------------------------------------------------------------------- /Plugins/MysqlClient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Plugins/MysqlClient/README.md -------------------------------------------------------------------------------- /Plugins/MysqlClient/Sqlite3Client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Plugins/MysqlClient/Sqlite3Client.py -------------------------------------------------------------------------------- /Plugins/ProgressBar/ProgressBar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Plugins/ProgressBar/ProgressBar.py -------------------------------------------------------------------------------- /Plugins/ProgressBar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Plugins/ProgressBar/README.md -------------------------------------------------------------------------------- /Plugins/ProgressRecorder/ProcessRecorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Plugins/ProgressRecorder/ProcessRecorder.py -------------------------------------------------------------------------------- /Plugins/ProgressRecorder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Plugins/ProgressRecorder/README.md -------------------------------------------------------------------------------- /Plugins/QRCode/QR.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Plugins/QRCode/QR.jpg -------------------------------------------------------------------------------- /Plugins/QRCode/QRCode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Plugins/QRCode/QRCode.py -------------------------------------------------------------------------------- /Plugins/QRCode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Plugins/QRCode/README.md -------------------------------------------------------------------------------- /Plugins/Tuling/tuling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Plugins/Tuling/tuling.json -------------------------------------------------------------------------------- /Plugins/Tuling/tuling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Plugins/Tuling/tuling.py -------------------------------------------------------------------------------- /Programs/AutoTranslate/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/AutoTranslate/main.py -------------------------------------------------------------------------------- /Programs/AutoTranslate/models/TranslateClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/AutoTranslate/models/TranslateClient.py -------------------------------------------------------------------------------- /Programs/AutoTranslate/models/TranslateClient.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/AutoTranslate/models/TranslateClient.pyc -------------------------------------------------------------------------------- /Programs/AutoTranslate/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Programs/AutoTranslate/models/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/AutoTranslate/models/__init__.pyc -------------------------------------------------------------------------------- /Programs/Evernote/EvernoteController/Oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/Evernote/EvernoteController/Oauth.py -------------------------------------------------------------------------------- /Programs/Evernote/EvernoteController/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/Evernote/EvernoteController/README.md -------------------------------------------------------------------------------- /Programs/Evernote/EvernoteController/Storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/Evernote/EvernoteController/Storage.py -------------------------------------------------------------------------------- /Programs/Evernote/EvernoteController/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/Evernote/EvernoteController/__init__.py -------------------------------------------------------------------------------- /Programs/Evernote/EvernoteController/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/Evernote/EvernoteController/__init__.pyc -------------------------------------------------------------------------------- /Programs/Evernote/EvernoteController/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/Evernote/EvernoteController/controller.py -------------------------------------------------------------------------------- /Programs/Evernote/EvernoteController/controller.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/Evernote/EvernoteController/controller.pyc -------------------------------------------------------------------------------- /Programs/Evernote/EvernoteController/oauth.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/Evernote/EvernoteController/oauth.pyc -------------------------------------------------------------------------------- /Programs/Evernote/EvernoteController/storage.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/Evernote/EvernoteController/storage.pyc -------------------------------------------------------------------------------- /Programs/Evernote/Memo/EvernoteController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/Evernote/Memo/EvernoteController.py -------------------------------------------------------------------------------- /Programs/Evernote/Memo/Memo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/Evernote/Memo/Memo.py -------------------------------------------------------------------------------- /Programs/Evernote/Memo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/Evernote/Memo/README.md -------------------------------------------------------------------------------- /Programs/Evernote/Memo/content.enex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/Evernote/Memo/content.enex -------------------------------------------------------------------------------- /Programs/Evernote/Memo/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/Evernote/Memo/example.png -------------------------------------------------------------------------------- /Programs/Evernote/Memo/header.enex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/Evernote/Memo/header.enex -------------------------------------------------------------------------------- /Programs/Evernote/PackMemo/EvernoteController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/Evernote/PackMemo/EvernoteController.py -------------------------------------------------------------------------------- /Programs/Evernote/PackMemo/Memo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/Evernote/PackMemo/Memo.py -------------------------------------------------------------------------------- /Programs/Evernote/PackMemo/PackMemo.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/Evernote/PackMemo/PackMemo.bat -------------------------------------------------------------------------------- /Programs/Evernote/PackMemo/PackMemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/Evernote/PackMemo/PackMemo.py -------------------------------------------------------------------------------- /Programs/Evernote/PackMemo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/Evernote/PackMemo/README.md -------------------------------------------------------------------------------- /Programs/Evernote/PackMemo/content.enex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/Evernote/PackMemo/content.enex -------------------------------------------------------------------------------- /Programs/Evernote/PackMemo/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/Evernote/PackMemo/example.png -------------------------------------------------------------------------------- /Programs/Evernote/PackMemo/header.enex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/Evernote/PackMemo/header.enex -------------------------------------------------------------------------------- /Programs/LogUpdater/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /Programs/LogUpdater/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/LogUpdater/README.md -------------------------------------------------------------------------------- /Programs/LogUpdater/atta.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Programs/LogUpdater/client/ExcelClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/LogUpdater/client/ExcelClient.py -------------------------------------------------------------------------------- /Programs/LogUpdater/client/LogClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/LogUpdater/client/LogClient.py -------------------------------------------------------------------------------- /Programs/LogUpdater/client/LogClient_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/LogUpdater/client/LogClient_old.py -------------------------------------------------------------------------------- /Programs/LogUpdater/client/OutlookAttachViewClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/LogUpdater/client/OutlookAttachViewClient.py -------------------------------------------------------------------------------- /Programs/LogUpdater/client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Programs/LogUpdater/data/storage/upload-20160302.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/LogUpdater/data/storage/upload-20160302.xls -------------------------------------------------------------------------------- /Programs/LogUpdater/data/storage/upload-20160303.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/LogUpdater/data/storage/upload-20160303.xls -------------------------------------------------------------------------------- /Programs/LogUpdater/infolist/cases.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/LogUpdater/infolist/cases.xlsx -------------------------------------------------------------------------------- /Programs/LogUpdater/infolist/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/LogUpdater/infolist/config.json -------------------------------------------------------------------------------- /Programs/LogUpdater/infolist/userNameStorage.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/LogUpdater/infolist/userNameStorage.xls -------------------------------------------------------------------------------- /Programs/LogUpdater/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Programs/LogUpdater/lib/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/LogUpdater/lib/config.py -------------------------------------------------------------------------------- /Programs/LogUpdater/lib/makeuploadfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/LogUpdater/lib/makeuploadfile.py -------------------------------------------------------------------------------- /Programs/LogUpdater/lib/producexml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/LogUpdater/lib/producexml.py -------------------------------------------------------------------------------- /Programs/LogUpdater/lib/uploadlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/LogUpdater/lib/uploadlog.py -------------------------------------------------------------------------------- /Programs/LogUpdater/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/LogUpdater/run.py -------------------------------------------------------------------------------- /Programs/PCMusicViaWechat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/PCMusicViaWechat/.gitignore -------------------------------------------------------------------------------- /Programs/PCMusicViaWechat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/PCMusicViaWechat/README.md -------------------------------------------------------------------------------- /Programs/PCMusicViaWechat/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/PCMusicViaWechat/run.py -------------------------------------------------------------------------------- /Programs/SetBurpProxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/SetBurpProxy/README.md -------------------------------------------------------------------------------- /Programs/SetBurpProxy/SetBurpProxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Programs/SetBurpProxy/SetBurpProxy.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/ChangeEncode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Scripts/ChangeEncode.py -------------------------------------------------------------------------------- /Scripts/DaYuSMS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Scripts/DaYuSMS.py -------------------------------------------------------------------------------- /Scripts/ExcelClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Scripts/ExcelClient.py -------------------------------------------------------------------------------- /Scripts/IdentificationNumber/IdentificationNumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Scripts/IdentificationNumber/IdentificationNumber.py -------------------------------------------------------------------------------- /Scripts/IdentificationNumber/district.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Scripts/IdentificationNumber/district.cfg -------------------------------------------------------------------------------- /Scripts/LogInput&Output/py2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Scripts/LogInput&Output/py2.py -------------------------------------------------------------------------------- /Scripts/LogInput&Output/py3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Scripts/LogInput&Output/py3.py -------------------------------------------------------------------------------- /Scripts/SMSBomb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Scripts/SMSBomb.py -------------------------------------------------------------------------------- /Scripts/SendToMyself.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Scripts/SendToMyself.py -------------------------------------------------------------------------------- /Scripts/TimeCalculate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Scripts/TimeCalculate.py -------------------------------------------------------------------------------- /Scripts/TranslateClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Scripts/TranslateClient.py -------------------------------------------------------------------------------- /Scripts/WechatArticlePicDownloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Scripts/WechatArticlePicDownloader.py -------------------------------------------------------------------------------- /Scripts/ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Scripts/ascii.py -------------------------------------------------------------------------------- /Scripts/baidusearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Scripts/baidusearch.py -------------------------------------------------------------------------------- /Scripts/qtimageconvert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlecodersh/EasierLife/HEAD/Scripts/qtimageconvert.py --------------------------------------------------------------------------------