Metadata-Version: 2.1
Name: reSolved
Version: 0.0.3
Summary: reSolved is an upcoming captcha solving service, capable of solving reCaptcha, hCaptcha, GeeTest as fast as sub 5 seconds. reSolved is designed to handle heavy workloads, unlike other captcha solving services. We strive to improve the reSolved experience every single day - which is why we are releasing libraries that make an already simple integration process completely seamless.
Home-page: https://github.com/pypa/sampleproject
Author: mechaadi
Author-email: as808780@gmail.com
License: UNKNOWN
Description: # reSolved python library
        
        reSolved is an upcoming captcha solving service, capable of solving reCaptcha, hCaptcha, GeeTest as fast as sub 5 seconds. reSolved is designed to handle heavy workloads, unlike other captcha solving services. 
        
        We strive to improve the reSolved experience every single day - which is why we are releasing libraries that make an already simple integration process completely seamless.
        
        
        # Getting Started
        ### Installation
        ```
        pip install reSolved
        ```
        
        
        ### Import the library
        ```py
        from resolved.domlabs import Resolved
        ```
        
        ### Initialize an object
        ```py
        resolved = ReSolved(COMPANY_API_KEY, USER_API_KEY')
        
        ```
        
        
        ### Create a task and get the solved captcha token
        ```py
        task = resolved.createTask(
                SITE_KEY",              # string
                SITE_URL,               # string
                CAPTCHA_SERVICE",       # string - e.g., reCaptcha, hCaptcha etc
                CAPTCHA_TYPE,           # string - e.g, v2Invis/v2
                SESSION_CLONE,          # boolean
                SMART_MOVEMENT,         # boolean
                PROXY)                  # string - e.g., http://ip:port:username:password
        
        taskID = task['data']['taskID']
        token = resolved.getToken()
        ```
        
        # Full code example
        ```py
        # import library
        from src.reSolved import ReSolved
        
        # create a resolved object
        resolved = ReSolved(COMPANY_API_KEY, USER_API_KEY')
        
        # create a task
        task = resolved.createTask(
                SITE_KEY",              # string
                SITE_URL,               # string
                CAPTCHA_SERVICE",       # string - e.g., reCaptcha, hCaptcha etc
                CAPTCHA_TYPE,           # string - e.g, v2Invis/v2
                SESSION_CLONE,          # boolean
                SMART_MOVEMENT,         # boolean
                PROXY)                  # string - e.g., http://ip:port:username:password
        
        taskID = task['data']['taskID']
        
        # store the token
        token = resolved.getToken()
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
