simplex 1.2.49__tar.gz → 1.2.53__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,11 +1,10 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: simplex
3
- Version: 1.2.49
3
+ Version: 1.2.53
4
4
  Summary: Official Python SDK for Simplex API
5
5
  Home-page: https://simplex.sh
6
6
  Author: Simplex Labs, Inc.
7
- Author-email: "Simplex Labs, Inc." <founders@simplex.sh>
8
- Project-URL: Homepage, https://simplex.sh
7
+ Author-email: founders@simplex.sh
9
8
  Classifier: Programming Language :: Python :: 3
10
9
  Classifier: License :: OSI Approved :: MIT License
11
10
  Classifier: Operating System :: OS Independent
@@ -21,8 +20,15 @@ Requires-Dist: click
21
20
  Provides-Extra: playwright
22
21
  Requires-Dist: playwright>=1.0.0; extra == "playwright"
23
22
  Dynamic: author
23
+ Dynamic: author-email
24
+ Dynamic: classifier
25
+ Dynamic: description
26
+ Dynamic: description-content-type
24
27
  Dynamic: home-page
28
+ Dynamic: provides-extra
29
+ Dynamic: requires-dist
25
30
  Dynamic: requires-python
31
+ Dynamic: summary
26
32
 
27
33
  # Simplex AI Python SDK
28
34
 
@@ -22,7 +22,7 @@ class PostInstallCommand(install):
22
22
 
23
23
  setup(
24
24
  name="simplex",
25
- version="1.2.50",
25
+ version="1.2.53",
26
26
  packages=find_packages(),
27
27
  package_data={
28
28
  "simplex": ["browser_agent/dom/*.js"], # Include JS files in the dom directory
@@ -0,0 +1 @@
1
+
@@ -151,7 +151,8 @@ class Simplex:
151
151
  livestream_url = response_json['livestream_url']
152
152
 
153
153
  # Start Playwright without using context manager
154
- self.pw = sync_playwright().start()
154
+ if PLAYWRIGHT_AVAILABLE:
155
+ self.pw = sync_playwright().start()
155
156
  self.connect_url = response_json['connect_url']
156
157
  # self.pw_browser = self.pw.chromium.connect_over_cdp(response_json['connect_url'])
157
158
 
@@ -1,11 +1,10 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: simplex
3
- Version: 1.2.49
3
+ Version: 1.2.53
4
4
  Summary: Official Python SDK for Simplex API
5
5
  Home-page: https://simplex.sh
6
6
  Author: Simplex Labs, Inc.
7
- Author-email: "Simplex Labs, Inc." <founders@simplex.sh>
8
- Project-URL: Homepage, https://simplex.sh
7
+ Author-email: founders@simplex.sh
9
8
  Classifier: Programming Language :: Python :: 3
10
9
  Classifier: License :: OSI Approved :: MIT License
11
10
  Classifier: Operating System :: OS Independent
@@ -21,8 +20,15 @@ Requires-Dist: click
21
20
  Provides-Extra: playwright
22
21
  Requires-Dist: playwright>=1.0.0; extra == "playwright"
23
22
  Dynamic: author
23
+ Dynamic: author-email
24
+ Dynamic: classifier
25
+ Dynamic: description
26
+ Dynamic: description-content-type
24
27
  Dynamic: home-page
28
+ Dynamic: provides-extra
29
+ Dynamic: requires-dist
25
30
  Dynamic: requires-python
31
+ Dynamic: summary
26
32
 
27
33
  # Simplex AI Python SDK
28
34
 
@@ -1,13 +1,14 @@
1
1
  LICENSE
2
2
  README.md
3
- pyproject.toml
4
3
  setup.py
5
4
  simplex/__init__.py
6
5
  simplex/cli.py
6
+ simplex/setup.py
7
7
  simplex/simplex.py
8
8
  simplex.egg-info/PKG-INFO
9
9
  simplex.egg-info/SOURCES.txt
10
10
  simplex.egg-info/dependency_links.txt
11
+ simplex.egg-info/entry_points.txt
11
12
  simplex.egg-info/requires.txt
12
13
  simplex.egg-info/top_level.txt
13
14
  simplex/deploy/__init__.py
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ simplex = simplex.cli:main
@@ -1,32 +0,0 @@
1
- [build-system]
2
- requires = ["setuptools>=42", "wheel"]
3
- build-backend = "setuptools.build_meta"
4
-
5
- [project]
6
- name = "simplex"
7
- version = "1.2.49"
8
- description = "Official Python SDK for Simplex API"
9
- authors = [
10
- {name = "Simplex Labs, Inc.", email = "founders@simplex.sh"}
11
- ]
12
- readme = "README.md"
13
- requires-python = ">=3.9"
14
- classifiers = [
15
- "Programming Language :: Python :: 3",
16
- "License :: OSI Approved :: MIT License",
17
- "Operating System :: OS Independent",
18
- "Development Status :: 4 - Beta",
19
- "Intended Audience :: Developers",
20
- ]
21
- dependencies = [
22
- "colorama",
23
- "requests",
24
- "python-dotenv",
25
- "click",
26
- ]
27
-
28
- [project.optional-dependencies]
29
- playwright = ["playwright>=1.0.0"]
30
-
31
- [project.urls]
32
- Homepage = "https://simplex.sh"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes