KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
U-Crawler
★ 8
Open GitHub ↗
Crawl urls from search engine
Download README (.md)
Explore Similar Repositories
protractor-pretty-html-reporter
:
A jasmine reporter that produces an easy to use html report to analyze protractor test results.
Build-Minimum-CMS-with-Laravel
:
基于laravel框架构建最小内容管理系统
mTLS-Tests
:
A golang client and server test setup for mutual TLS
grpc-spring-boot
:
this project contain spring boot application that use Google’s gRPC to data transaction
bmi-fortran
:
Basic Model Interface for Fortran
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
U-Crawler
?
Download (.md)
# U-Crawler U-Crawler即Url-Crawler 并发的爬取baidu,yahoo,bing和360so搜索结果的url。暂不支持google,google的反爬虫机制太严了,爬取不到一百个结果,就要验证,故取消。  ### 环境 - Python 2.7 - pip ### 依赖 - gevent - requests - BeautifulSoup - lxml ### 使用说明 ``` Usage: U-Crawler.py [-q] query [--limit] number [-o] filename Options: --version show program's version number and exit -h, --help show this help message and exit -q QUERY, --query=QUERY The query of search engine. -l LIMIT, --limit=LIMIT The limit of each search engine. -o NAME, --output=NAME If not use -o,the filename of output is time string. -b, --baseurl The url of writing in file,if it is set,the url will remove path and param. ``` ```python U-Crawler.py -q inurl:login.php -l 100``` q参数即搜索语法,l参数是每个搜索引擎结果的数。 ```python U-Crawler.py -q inurl:login.php -l 10 -b -o login.txt``` b参数是写入的url去掉后面的路径,默认不去除。o参数是保存结果文件名,默认以开始运行的时间为文件名。