Skip to content

Fix AudioSolver and Reimplemented ImageSolver #57

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 40 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
cea72f7
Fix AudioSolver and Reimplemented ImageSolver
Jul 23, 2019
73e9399
Add new titles
Jul 24, 2019
81fc3c1
Fix Select Image detection
Aug 28, 2019
6bacd25
Update my Fork from Francesco149/nonoCAPTCHA
Nov 23, 2019
5694820
Rename Project
Nov 24, 2019
bfa4030
Update README.rst
Nov 24, 2019
40dbecf
Update all Requeriments
Nov 24, 2019
1eaab66
Upload projecto to Pypi
Nov 24, 2019
0ff1892
Upgrade version
Nov 24, 2019
f7abfe2
Downgrade Requirements
Nov 24, 2019
ad486a8
Update README.rst
MacKey-255 Dec 20, 2019
1228863
Delete Proxy and More changes
MacKey-255 Dec 20, 2019
e7edfcf
Merge remote-tracking branch 'origin/master'
MacKey-255 Dec 20, 2019
5cd4d1d
Fix image solver
MacKey-255 Dec 21, 2019
ee1c2fa
Update README
MacKey-255 Dec 21, 2019
869028f
Update version
MacKey-255 Dec 21, 2019
33a5efe
Add events
MacKey-255 Dec 22, 2019
d4e92c9
Release 2.3.1
MacKey-255 Dec 22, 2019
06b33a1
Add models folder
MacKey-255 Dec 27, 2019
77a61fb
Testing Pypi deploy
MacKey-255 Dec 27, 2019
fd29126
Add extra plugins
MacKey-255 Dec 28, 2019
c0c2a1e
Update README.rst
MacKey-255 Dec 29, 2019
b8c98da
Add description training yolov3
MacKey-255 Dec 31, 2019
bae375c
Restructure project
MacKey-255 May 12, 2020
a6eb9c3
Optimize Image Solver
MacKey-255 May 13, 2020
8d1f348
Optimize Audio Solver
MacKey-255 May 13, 2020
685b081
Change to version 2.4.0
MacKey-255 May 13, 2020
71f2b3e
Testing Audio Solver 1/2
MacKey-255 Jun 15, 2020
635e9b3
Testing Audio Solver 2/2
MacKey-255 Jun 24, 2020
a43582e
Add SourceForge Downloads
MacKey-255 Jun 24, 2020
c0f1a9e
Update Requirements
MacKey-255 Jul 20, 2020
700e2bc
Fix Chrome Error in Pyppeteer
MacKey-255 Jul 22, 2020
f5a1423
Fix issues
MacKey-255 Jul 26, 2020
abe48d0
docs(readme): add python3-pocketsphinx as requirement
Helias Sep 29, 2020
6249cf8
Update README.rst
Helias Sep 29, 2020
5726828
Merge pull request #12 from Helias/patch-1
MacKey-255 Sep 29, 2020
d8c2805
Update requirements.txt
Jourdelune May 4, 2021
afe6ab1
Merge pull request #18 from Jourdelune/master
MacKey-255 Oct 20, 2021
83bf282
Update requirements.txt
OTHFamily Jun 8, 2023
4c376b7
Merge pull request #22 from OTHFamily/patch-2
MacKey-255 Jun 8, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
12 changes: 11 additions & 1 deletion .gitignore
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ lib/
lib64/
parts/
sdist/
dist/
var/
*.egg-info/
.installed.cfg
Expand Down Expand Up @@ -58,7 +59,7 @@ aiomisc
aiohttp

# Config file
nonocaptcha.yaml
goodbyecaptcha.yaml

# Mac's DS_Store
.DS_Store
Expand All @@ -84,3 +85,12 @@ pocketsphinx

# visual studio code editor configs
.vscode

# Pycharm
venv
.idea

# Images Project
goodbyecaptcha/data/pictures/*
goodbyecaptcha/tmp/*
goodbyecaptcha/models/yolov3.weights
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: python
python: 3.6
python: 3.7
sudo: required
before_install:
- sudo apt-get update && sudo apt-get install swig libpulse-dev libasound2-dev
Expand Down
Loading