From 1cf753d254e4413d4837404449050064c3c38f76 Mon Sep 17 00:00:00 2001 From: Alperen Sert <63921520+alperensert@users.noreply.github.com> Date: Sat, 19 Nov 2022 09:07:09 +0300 Subject: [PATCH] added ReCaptchaV2Enterprise --- .github/dependabot.yml | 2 +- .github/workflows/publish.yml | 6 +++--- README.md | 15 ++------------- setup.py | 3 ++- 4 files changed, 8 insertions(+), 18 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b38df29..d90e769 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,6 +1,6 @@ version: 2 updates: - package-ecosystem: "pip" - directory: "/" + directory: "/capmonster_python" schedule: interval: "daily" diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 6731485..3f65d5b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -10,11 +10,11 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v3 with: - python-version: "3.7" + python-version: "3.9" - name: Install setup dependencies run: make setup_dependencies diff --git a/README.md b/README.md index 12fcbce..33600e2 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Capmonster.cloud for Python [Capmonster.cloud](https://capmonster.cloud) package for Python3 -If you have any problem with usage, [read the documentation](https://github.com/alperensert/capmonster_python/wiki) or [create an issue](https://github.com/alperensert/capmonster_python/issues/new) +If you have any problem with usage, [read the documentation](https://alperensert.github.io/capmonster_python) or [create an issue](https://github.com/alperensert/capmonster_python/issues/new) *At least 2x cheaper, up to 30x faster than manual recognition services.* @@ -71,15 +71,4 @@ print(result.get("seccode")) print(result.get("validate")) ``` -For other examples and api documentation please visit [wiki](https://github.com/alperensert/capmonster_python/wiki) - -### Migration from 1.3.2 to 2.x -- v2.x is created for automation and stability. -- If you want to use old version: (no longer supported) - - ``` - pip install capmonster-python==1.3.2 - ``` -- If you want to use new version 2.x: - - All methods, classes and fields are changed for maximum optimization and continuous automation. - Check out [wiki](https://github.com/alperensert/capmonster_python/wiki) for usage examples and package api. \ No newline at end of file +For other examples and api documentation please visit [wiki](https://alperensert.github.io/capmonster_python) \ No newline at end of file diff --git a/setup.py b/setup.py index 8c8274c..0876f9b 100644 --- a/setup.py +++ b/setup.py @@ -7,6 +7,7 @@ setup( name="capmonster_python", + version="2.2.1", packages=["capmonster_python"], url="https://github.com/alperensert/capmonster_python", long_description=long_description, @@ -32,7 +33,7 @@ install_requires=["requests", "six"], python_requires=">=3", project_urls={ - "Documentation": 'https://github.com/alperensert/capmonster_python/wiki/', + "Documentation": 'https://alperensert.github.io/capmonster_python/', "Source": 'https://github.com/alperensert/capmonster_python/', "Tracker": 'https://github.com/alperensert/capmonster_python/issues', },