anti-captcha.com ruby api wrapper
Add this line to your application's Gemfile:
gem 'anti-captcha'
And then execute:
$ bundle
Or install it yourself as:
$ gem install anti-captcha
Configure with api params
AntiCaptcha.configure do |config|
config.key = 'api_key'
config.min_len = 6
config.max_len = 10
end
@client = AntiCaptcha::Client.new(retries_count: 5, phrase: 1)
code = @client.decode(image_content)
@client = AntiCaptcha::Client.new(retries_count: 5, phrase: 1)
code = @client.decode(image_content_base64, :base64)
gem release anti-captcha.gemspec
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request