simplex 1.2.22__tar.gz → 1.2.24__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.22
3
+ Version: 1.2.24
4
4
  Summary: Official Python SDK for Simplex API
5
5
  Home-page: https://simplex.sh
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.22",
5
+ version="1.2.24",
6
6
  packages=find_packages(),
7
7
  package_data={
8
8
  "simplex": ["browser_agent/dom/*.js"], # Include JS files in the dom directory
@@ -0,0 +1,4 @@
1
+ from .simplex import Simplex
2
+
3
+ __version__ = "1.2.22"
4
+ __all__ = ["Simplex"]
@@ -22,7 +22,6 @@ class Simplex:
22
22
  data={'session_id': self.session_id}
23
23
  )
24
24
  self.session_id = None
25
- print(response.json())
26
25
  if response.json()["succeeded"]:
27
26
  return
28
27
  else:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: simplex
3
- Version: 1.2.22
3
+ Version: 1.2.24
4
4
  Summary: Official Python SDK for Simplex API
5
5
  Home-page: https://simplex.sh
6
6
  Author: Simplex Labs, Inc.
@@ -7,13 +7,14 @@ load_dotenv()
7
7
 
8
8
  def login():
9
9
  simplex = Simplex(api_key=os.getenv("SIMPLEX_API_KEY"))
10
- print(simplex.create_session())
10
+ simplex.create_session()
11
11
  # simplex.goto("https://browser-tests-alpha.vercel.app/api/upload-test")
12
- simplex.goto("https://dropbox.com")
13
- simplex.restore_login_session("dropbox_com_session_data.json")
14
- simplex.goto("https://dropbox.com/")
15
- simplex.click("Upload or drop")
16
- simplex.click_and_upload("File", "ycombinator.svg")
12
+ simplex.wait(10000)
13
+ print("goto: ", simplex.goto("https://dropbox.com"))
14
+ # simplex.restore_login_session("dropbox_com_session_data.json")
15
+ # simplex.goto("https://dropbox.com/")
16
+ # simplex.click("Upload or drop")
17
+ # simplex.click_and_upload("File", "ycombinator.svg")
17
18
  # print(simplex.exists("Download button"))
18
19
  # files = simplex.click_and_download("Download File")
19
20
  # import base64
@@ -1,4 +0,0 @@
1
- from .simplex import Simplex
2
-
3
- __version__ = "0.1.7"
4
- __all__ = ["Simplex"]
File without changes
File without changes
File without changes
File without changes
File without changes