├── .gitignore ├── .idea ├── encodings.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml ├── url_check.iml └── workspace.xml ├── README.md ├── checkScript.py ├── common ├── HTMLBuilder.py ├── __init__.py └── emailCommon.py ├── data └── url_data.xls ├── requirements.txt ├── run.py └── templete └── templete.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/url_check/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/url_check/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/url_check/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/url_check/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/url_check/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/url_check.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/url_check/HEAD/.idea/url_check.iml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/url_check/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/url_check/HEAD/README.md -------------------------------------------------------------------------------- /checkScript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/url_check/HEAD/checkScript.py -------------------------------------------------------------------------------- /common/HTMLBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/url_check/HEAD/common/HTMLBuilder.py -------------------------------------------------------------------------------- /common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/emailCommon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/url_check/HEAD/common/emailCommon.py -------------------------------------------------------------------------------- /data/url_data.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/url_check/HEAD/data/url_data.xls -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/url_check/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/url_check/HEAD/run.py -------------------------------------------------------------------------------- /templete/templete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/url_check/HEAD/templete/templete.html --------------------------------------------------------------------------------