simplex 1.2.3__tar.gz → 1.2.4__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.

Potentially problematic release.


This version of simplex might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: simplex
3
- Version: 1.2.3
3
+ Version: 1.2.4
4
4
  Summary: Official Python SDK for Simplex API
5
5
  Home-page: https://github.com/shreyka/simplex-python
6
6
  Author: Simplex Labs, Inc.
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="simplex",
5
- version="1.2.3",
5
+ version="1.2.4",
6
6
  packages=find_packages(),
7
7
  install_requires=[
8
8
  "openai>=1.0.0",
@@ -67,6 +67,7 @@ class Simplex:
67
67
 
68
68
 
69
69
  # Print the results
70
+ print(response.status_code)
70
71
  if response.status_code == 200:
71
72
  res = response.json()
72
73
  bbox = [int(res['x1']), int(res['y1']), int(res['x2']), int(res['y2'])]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: simplex
3
- Version: 1.2.3
3
+ Version: 1.2.4
4
4
  Summary: Official Python SDK for Simplex API
5
5
  Home-page: https://github.com/shreyka/simplex-python
6
6
  Author: Simplex Labs, Inc.
@@ -274,6 +274,10 @@ def test_extract_image():
274
274
 
275
275
 
276
276
  if __name__ == "__main__":
277
- test_extract_image()
277
+ simplex = Simplex(api_key=os.getenv("SIMPLEX_API_KEY"))
278
+ simplex.goto("https://www.google.com")
279
+ simplex.click("search bar")
280
+
281
+
278
282
 
279
283
 
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes