gemini-webapi 1.10.0__tar.gz → 1.10.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/.github/workflows/pypi-publish.yml +2 -2
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/PKG-INFO +2 -1
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/README.md +1 -0
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/src/gemini_webapi/constants.py +5 -0
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/src/gemini_webapi.egg-info/PKG-INFO +2 -1
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/.github/dependabot.yml +0 -0
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/.github/workflows/github-release.yml +0 -0
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/.gitignore +0 -0
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/.vscode/launch.json +0 -0
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/.vscode/settings.json +0 -0
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/LICENSE +0 -0
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/assets/banner.png +0 -0
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/assets/favicon.png +0 -0
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/assets/logo.svg +0 -0
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/assets/sample.pdf +0 -0
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/pyproject.toml +0 -0
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/setup.cfg +0 -0
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/src/gemini_webapi/__init__.py +0 -0
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/src/gemini_webapi/client.py +0 -0
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/src/gemini_webapi/exceptions.py +0 -0
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/src/gemini_webapi/types/__init__.py +0 -0
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/src/gemini_webapi/types/candidate.py +0 -0
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/src/gemini_webapi/types/image.py +0 -0
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/src/gemini_webapi/types/modeloutput.py +0 -0
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/src/gemini_webapi/utils/__init__.py +0 -0
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/src/gemini_webapi/utils/get_access_token.py +0 -0
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/src/gemini_webapi/utils/load_browser_cookies.py +0 -0
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/src/gemini_webapi/utils/logger.py +0 -0
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/src/gemini_webapi/utils/rotate_1psidts.py +0 -0
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/src/gemini_webapi/utils/upload_file.py +0 -0
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/src/gemini_webapi.egg-info/SOURCES.txt +0 -0
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/src/gemini_webapi.egg-info/dependency_links.txt +0 -0
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/src/gemini_webapi.egg-info/requires.txt +0 -0
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/src/gemini_webapi.egg-info/top_level.txt +0 -0
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/tests/test_client_features.py +0 -0
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/tests/test_rotate_cookies.py +0 -0
- {gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/tests/test_save_image.py +0 -0
|
@@ -36,7 +36,7 @@ jobs:
|
|
|
36
36
|
- name: Build package
|
|
37
37
|
run: python -m build
|
|
38
38
|
- name: Archive production artifacts
|
|
39
|
-
uses: actions/upload-artifact@v4.6.
|
|
39
|
+
uses: actions/upload-artifact@v4.6.2
|
|
40
40
|
with:
|
|
41
41
|
name: dist
|
|
42
42
|
path: dist
|
|
@@ -52,7 +52,7 @@ jobs:
|
|
|
52
52
|
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
|
|
53
53
|
steps:
|
|
54
54
|
- name: Retrieve built artifacts
|
|
55
|
-
uses: actions/download-artifact@v4.1
|
|
55
|
+
uses: actions/download-artifact@v4.2.1
|
|
56
56
|
with:
|
|
57
57
|
name: dist
|
|
58
58
|
path: dist
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gemini-webapi
|
|
3
|
-
Version: 1.10.
|
|
3
|
+
Version: 1.10.1
|
|
4
4
|
Summary: ✨ An elegant async Python wrapper for Google Gemini web app
|
|
5
5
|
Author: UZQueen
|
|
6
6
|
License: GNU AFFERO GENERAL PUBLIC LICENSE
|
|
@@ -830,6 +830,7 @@ Currently available models (as of Feb 5, 2025):
|
|
|
830
830
|
|
|
831
831
|
Models pending update (may not work as expected):
|
|
832
832
|
|
|
833
|
+
- `gemini-2.5-exp-advanced` - Gemini 2.5 Experimental Advanced **(requires Gemini Advanced account)**
|
|
833
834
|
- `gemini-2.0-exp-advanced` - Gemini 2.0 Experimental Advanced **(requires Gemini Advanced account)**
|
|
834
835
|
- `gemini-1.5-pro` - Gemini 1.5 Pro **(requires Gemini Advanced account)**
|
|
835
836
|
- `gemini-1.5-pro-research` - Gemini 1.5 Pro with Deep Research **(requires Gemini Advanced account)**
|
|
@@ -147,6 +147,7 @@ Currently available models (as of Feb 5, 2025):
|
|
|
147
147
|
|
|
148
148
|
Models pending update (may not work as expected):
|
|
149
149
|
|
|
150
|
+
- `gemini-2.5-exp-advanced` - Gemini 2.5 Experimental Advanced **(requires Gemini Advanced account)**
|
|
150
151
|
- `gemini-2.0-exp-advanced` - Gemini 2.0 Experimental Advanced **(requires Gemini Advanced account)**
|
|
151
152
|
- `gemini-1.5-pro` - Gemini 1.5 Pro **(requires Gemini Advanced account)**
|
|
152
153
|
- `gemini-1.5-pro-research` - Gemini 1.5 Pro with Deep Research **(requires Gemini Advanced account)**
|
|
@@ -50,6 +50,11 @@ class Model(Enum):
|
|
|
50
50
|
{"x-goog-ext-525001261-jspb": '[null,null,null,null,"b1e46a6037e6aa9f"]'},
|
|
51
51
|
True,
|
|
52
52
|
)
|
|
53
|
+
G_2_5_EXP_ADVANCED = (
|
|
54
|
+
"gemini-2.5-exp-advanced",
|
|
55
|
+
{"x-goog-ext-525001261-jspb": '[null,null,null,null,"203e6bb81620bcfe"]'},
|
|
56
|
+
True,
|
|
57
|
+
)
|
|
53
58
|
G_1_5_FLASH = (
|
|
54
59
|
"gemini-1.5-flash",
|
|
55
60
|
{"x-goog-ext-525001261-jspb": '[null,null,null,null,"418ab5ea040b5c43"]'},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gemini-webapi
|
|
3
|
-
Version: 1.10.
|
|
3
|
+
Version: 1.10.1
|
|
4
4
|
Summary: ✨ An elegant async Python wrapper for Google Gemini web app
|
|
5
5
|
Author: UZQueen
|
|
6
6
|
License: GNU AFFERO GENERAL PUBLIC LICENSE
|
|
@@ -830,6 +830,7 @@ Currently available models (as of Feb 5, 2025):
|
|
|
830
830
|
|
|
831
831
|
Models pending update (may not work as expected):
|
|
832
832
|
|
|
833
|
+
- `gemini-2.5-exp-advanced` - Gemini 2.5 Experimental Advanced **(requires Gemini Advanced account)**
|
|
833
834
|
- `gemini-2.0-exp-advanced` - Gemini 2.0 Experimental Advanced **(requires Gemini Advanced account)**
|
|
834
835
|
- `gemini-1.5-pro` - Gemini 1.5 Pro **(requires Gemini Advanced account)**
|
|
835
836
|
- `gemini-1.5-pro-research` - Gemini 1.5 Pro with Deep Research **(requires Gemini Advanced account)**
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/src/gemini_webapi/utils/load_browser_cookies.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{gemini_webapi-1.10.0 → gemini_webapi-1.10.1}/src/gemini_webapi.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|