All Projects → CoolAcsi → baidu-chain-dog

CoolAcsi / baidu-chain-dog

Licence: GPL-3.0 license
百度莱茨狗爬虫。

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to baidu-chain-dog

MillionHeros
Android直播答题助手,支持全部答题APP,百万英雄/百万赢家/冲顶大会/芝士超人
Stars: ✭ 23 (-55.77%)
Mutual labels:  ocr, baidu
Baidu Ocr Api
👓 Baidu OCR Api For Node.js
Stars: ✭ 315 (+505.77%)
Mutual labels:  ocr, baidu
Millionheroassistant
百万 / 冲顶 / 芝士 / UC / 万能 答题助手(知识图谱更加专业,自动推荐答案, Android手机自动屏幕适配,模拟器支持,多开)
Stars: ✭ 524 (+907.69%)
Mutual labels:  ocr, baidu
vehicle-rear
Vehicle-Rear: A New Dataset to Explore Feature Fusion For Vehicle Identification Using Convolutional Neural Networks
Stars: ✭ 99 (+90.38%)
Mutual labels:  ocr
ty-baidu-textcensor
🗑在Typecho中加入百度文本内容审核,过滤评论中的敏感内容
Stars: ✭ 42 (-19.23%)
Mutual labels:  baidu
ocrd cis
OCR-D python tools
Stars: ✭ 28 (-46.15%)
Mutual labels:  ocr
Korean-OCR-Model-Design-based-on-Keras-CNN
Korean OCR Model Design(한글 OCR 모델 설계)
Stars: ✭ 34 (-34.62%)
Mutual labels:  ocr
deep-learning-for-document-dewarping
An application of high resolution GANs to dewarp images of perturbed documents
Stars: ✭ 100 (+92.31%)
Mutual labels:  ocr
deep-license-plate-recognition
Automatic License Plate Recognition (ALPR) or Automatic Number Plate Recognition (ANPR) software that works with any camera.
Stars: ✭ 309 (+494.23%)
Mutual labels:  ocr
ocr space
Free Online OCR for Ruby - Convert images to text
Stars: ✭ 62 (+19.23%)
Mutual labels:  ocr
pmOCR
A wrapper for tesseract / abbyyOCR11 ocr4linux finereader cli that can perform batch operations or monitor a directory and launch an OCR conversion on file activity
Stars: ✭ 53 (+1.92%)
Mutual labels:  ocr
papermerge-core
Papermerge RESTful backend structured as reusable Django app
Stars: ✭ 103 (+98.08%)
Mutual labels:  ocr
ReadToMe
No description or website provided.
Stars: ✭ 51 (-1.92%)
Mutual labels:  ocr
AgentOCR
一个多语言支持、易使用的 OCR 项目。An easy-to-use OCR project with multilingual support.
Stars: ✭ 98 (+88.46%)
Mutual labels:  ocr
pytorch.ctpn
pytorch, ctpn ,text detection ,ocr,文本检测
Stars: ✭ 123 (+136.54%)
Mutual labels:  ocr
ScribeBot
A highly scriptable automation system full of cool features. Automate everything with a little bit of Lua.
Stars: ✭ 72 (+38.46%)
Mutual labels:  ocr
ocr-machine-learning
OCR Machine Learning in python
Stars: ✭ 42 (-19.23%)
Mutual labels:  ocr
BankCard-Recognizer
Identifying numbers from bankcard, based on Deep Learning with Keras [China Software Cup 2019]
Stars: ✭ 74 (+42.31%)
Mutual labels:  ocr
Game2Text
Complete toolbox for gamifying language learning
Stars: ✭ 86 (+65.38%)
Mutual labels:  ocr
ID-Card-Passport-Recognition-SDK-Android
On-Device ID Card & Passport & Driver License Recognition SDK for Android
Stars: ✭ 223 (+328.85%)
Mutual labels:  ocr

百度莱茨狗购买爬虫

莱茨狗

如果这个项目对你有帮助,烦请点一下右上角的star,thanks~

v0.6版本使用前请先解压resources/下的svm.model.zip文件到该目录;

效果图:

功能

当前版本只是简单地根据预定价格自动买入。

特色

  • 本地、快速、准确的验证码识别机制,识别正确率高达96%;
  • 健壮的抓狗机制,长时间挂机不会被block;
  • 允许失败重抓(主要针对验证码识别错误);
  • 支持多账号同时运行;

使用

对于没有接触过java的同学,可以使用 intellig idea,参考网上教程配好jdk(此工程只能使用jdk8(9也不行))

准备就绪后找到Application.java,点击下图中的运行按钮即可启动应用。

  1. Application.java 配置端口号;
  2. config.json配置用户信息、价格等;
  3. 准备就绪后启动应用;
  4. enjoy it~

config.json 配置

{
  // 每次刷新的时间间隔
  "time": 500,
  // 是否显示全量日志
  "logSwitch": false,
  // 是否执行程序
  "isExecutable": true,
  // 验证码策略,目前支持chaojiying/local,local暂不可用
  "verCodeStrategy": "chaojiying",
  // 是否导出验证码到本地
  "exportSwitch": false,
  // 导出验证码路径
  "exportVerCodeImgPath": "",
  // 账号,可以添加多个
  "acounts": [
    {
      // 账号描述,在日志中表示用户名
      "des": "Acsi",
      "cookie":"我的cookie"
    }
  ],
  // 价格配置,目前只有购买价格是生效的
  "amounts":[
    {
      "rareDegree": 0,
      "des":"普通",
      "buyAmount": 250,
      "saleAmount": 999999
    },{
      "rareDegree": 1,
      "des":"稀有",
      "buyAmount": 250,
      "saleAmount": 999999
    },{
      "rareDegree": 2,
      "des":"卓越",
      "buyAmount": 250,
      "saleAmount": 999999
    },{
      "rareDegree": 3,
      "des":"史诗",
      "buyAmount": 500,
      "saleAmount": 999999
    },{
      "rareDegree": 4,
      "des":"神话",
      "buyAmount": 40000,
      "saleAmount": 999999
    },{
      "rareDegree": 5,
      "des":"传说",
      "buyAmount": 40000,
      "saleAmount": 999999
    }
  ]
}

说明

你也可以只使用它的验证码识别服务:

POST http://localhost:{port}/ocr 参数为诸如{"img":"xxxxxxxxxxxx"}格式的json串,其中img为要识别图片的base64加密数据 返回识别结果字符串。

该工程只有训练好的模型,训练算法近几日开源;

版本更新

v0.8

  • 修复若干bug,增加容错,提高服务健壮性;
  • 使用主从服务的机制,更快获取最新的市场列表;
  • 根据宠物id生成购买链接;

v0.7

  • 修复若干bug;
  • 增加了对服务器挂机的支持,可以运行时动态修改配置;
  • 百度更新了验证码,本地识别暂不可用;

v0.6

  • 修复若干bug;
  • 优化验证码图像处理算法、重新训练模型,目前正确率提升至96%;
  • 使用前请先解压resources/下的svm.model.zip文件到该目录;

v0.5

  • 项目重构,欢迎review
  • 优化了验证码校验逻辑,生单速度目测提升40%;
  • 更灵活的配置方式,使用config.json即可完成必要配置,开放一些配置项;
  • 更简洁的启动方式;
  • 更加人性化的日志;

遇到问题欢迎提Issues~

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].