All Projects → teamssix → url-survival-check

teamssix / url-survival-check

Licence: other
批量检测URL存活

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to url-survival-check

Nanoid
A tiny, secure, URL-friendly, unique string ID generator for Rust
Stars: ✭ 188 (+327.27%)
Mutual labels:  url
Pguri
uri type for PostgreSQL
Stars: ✭ 235 (+434.09%)
Mutual labels:  url
bifrost
🌉 The rainbow bridge. URL shortener for Vercel.
Stars: ✭ 28 (-36.36%)
Mutual labels:  url
Vscode Remote Workspace
Multi protocol support for handling remote files like local ones in Visual Studio Code.
Stars: ✭ 197 (+347.73%)
Mutual labels:  url
Urlhub
URL shortener web application based on the Laravel PHP Framework.
Stars: ✭ 217 (+393.18%)
Mutual labels:  url
Go Http Tunnel
Fast and secure tunnels over HTTP/2
Stars: ✭ 2,786 (+6231.82%)
Mutual labels:  url
New Github Issue Url
Generate a URL for opening a new GitHub issue with prefilled title, body, and other fields
Stars: ✭ 170 (+286.36%)
Mutual labels:  url
Breviare
Small URL shortener made with the MERN Stack
Stars: ✭ 16 (-63.64%)
Mutual labels:  url
Scala Uri
Simple scala library for building and parsing URIs
Stars: ✭ 225 (+411.36%)
Mutual labels:  url
use-route-as-state
Use React Router route and query string as component state
Stars: ✭ 37 (-15.91%)
Mutual labels:  url
Hyperlink
🔗 Immutable, Pythonic, correct URLs.
Stars: ✭ 198 (+350%)
Mutual labels:  url
Unbescape
Advanced yet easy to use escaping library for Java
Stars: ✭ 207 (+370.45%)
Mutual labels:  url
Scout
🔭 Lightweight URL fuzzer and spider: Discover a web server's undisclosed files, directories and VHOSTs
Stars: ✭ 241 (+447.73%)
Mutual labels:  url
React Url Query
A library for managing state through query parameters in the URL in React
Stars: ✭ 195 (+343.18%)
Mutual labels:  url
ultimateMICR-SDK
Bank check information extraction/OCR from Magnetic Ink Character Recognition [MICR] (E-13B & CMC-7) using deep learning
Stars: ✭ 42 (-4.55%)
Mutual labels:  check
Urlbuilder
Java Builders: URL builder
Stars: ✭ 174 (+295.45%)
Mutual labels:  url
Connector
Коннектор: удобный HTTP-клиент для 1С:Предприятие 8
Stars: ✭ 240 (+445.45%)
Mutual labels:  url
linkify
Rust library to find links such as URLs and email addresses in plain text, handling surrounding punctuation correctly
Stars: ✭ 146 (+231.82%)
Mutual labels:  url
parse-github-url
Parse a Github URL into an object. Supports a wide variety of GitHub URL formats.
Stars: ✭ 114 (+159.09%)
Mutual labels:  url
Uri Components
League URI components objects
Stars: ✭ 244 (+454.55%)
Mutual labels:  url

url-survival-check

介绍

由于平时在做资产梳理的时候,往往会遇到对大量URL进行存活检测的工作,有时候有的URL使用http能打开,有的则使用https才能打开,手动去检测效率太低,因此简单写了一个批量检测工具。

安装

pip3 install requests

使用

python3 url_survival_check_min.py url.txt
python3 url_survival_check_max.py url.txt

注意事项

  • url_survival_check_min.py的检测结果只有存活的URL,保存结果文件为result_min.txt
  • url_survival_check_max.py的检测结果既包括存活的URL,也包括不存活的URL,保存结果文件为result_max.txt

使用示例

> python3 url_survival_check_min.py url.txt
http://xxx1.com  Not Survival
https://xxx1.com
http://xxx2.com
https://xxx2.com  Not Survival
> python3 url_survival_check_max.py url.txt
http://xxx1.com  Not Survival
https://xxx1.com
http://xxx2.com
https://xxx2.com  Not Survival

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].