parsagon 0.14.30__tar.gz → 0.14.31__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.
- {parsagon-0.14.30 → parsagon-0.14.31}/PKG-INFO +2 -3
- {parsagon-0.14.30 → parsagon-0.14.31}/pyproject.toml +2 -3
- {parsagon-0.14.30 → parsagon-0.14.31}/src/parsagon.egg-info/PKG-INFO +2 -3
- {parsagon-0.14.30 → parsagon-0.14.31}/src/parsagon.egg-info/requires.txt +1 -2
- {parsagon-0.14.30 → parsagon-0.14.31}/README.md +0 -0
- {parsagon-0.14.30 → parsagon-0.14.31}/setup.cfg +0 -0
- {parsagon-0.14.30 → parsagon-0.14.31}/src/__init__.py +0 -0
- {parsagon-0.14.30 → parsagon-0.14.31}/src/parsagon/__init__.py +0 -0
- {parsagon-0.14.30 → parsagon-0.14.31}/src/parsagon/api.py +0 -0
- {parsagon-0.14.30 → parsagon-0.14.31}/src/parsagon/assistant.py +0 -0
- {parsagon-0.14.30 → parsagon-0.14.31}/src/parsagon/create.py +0 -0
- {parsagon-0.14.30 → parsagon-0.14.31}/src/parsagon/custom_function.py +0 -0
- {parsagon-0.14.30 → parsagon-0.14.31}/src/parsagon/edit.py +0 -0
- {parsagon-0.14.30 → parsagon-0.14.31}/src/parsagon/exceptions.py +0 -0
- {parsagon-0.14.30 → parsagon-0.14.31}/src/parsagon/executor.py +0 -0
- {parsagon-0.14.30 → parsagon-0.14.31}/src/parsagon/gui/__init__.py +0 -0
- {parsagon-0.14.30 → parsagon-0.14.31}/src/parsagon/gui/controller.py +0 -0
- {parsagon-0.14.30 → parsagon-0.14.31}/src/parsagon/gui/menu.py +0 -0
- {parsagon-0.14.30 → parsagon-0.14.31}/src/parsagon/gui/window.py +0 -0
- {parsagon-0.14.30 → parsagon-0.14.31}/src/parsagon/gui_entry.py +0 -0
- {parsagon-0.14.30 → parsagon-0.14.31}/src/parsagon/highlights.js +0 -0
- {parsagon-0.14.30 → parsagon-0.14.31}/src/parsagon/main.py +0 -0
- {parsagon-0.14.30 → parsagon-0.14.31}/src/parsagon/print.py +0 -0
- {parsagon-0.14.30 → parsagon-0.14.31}/src/parsagon/runs.py +0 -0
- {parsagon-0.14.30 → parsagon-0.14.31}/src/parsagon/secrets.py +0 -0
- {parsagon-0.14.30 → parsagon-0.14.31}/src/parsagon/settings.py +0 -0
- {parsagon-0.14.30 → parsagon-0.14.31}/src/parsagon/tests/__init__.py +0 -0
- {parsagon-0.14.30 → parsagon-0.14.31}/src/parsagon/tests/api_mocks.py +0 -0
- {parsagon-0.14.30 → parsagon-0.14.31}/src/parsagon/tests/conftest.py +0 -0
- {parsagon-0.14.30 → parsagon-0.14.31}/src/parsagon/tests/test_executor.py +0 -0
- {parsagon-0.14.30 → parsagon-0.14.31}/src/parsagon/tests/test_invalid_args.py +0 -0
- {parsagon-0.14.30 → parsagon-0.14.31}/src/parsagon/tests/test_pipeline_operations.py +0 -0
- {parsagon-0.14.30 → parsagon-0.14.31}/src/parsagon/tests/test_print.py +0 -0
- {parsagon-0.14.30 → parsagon-0.14.31}/src/parsagon/tests/test_secrets.py +0 -0
- {parsagon-0.14.30 → parsagon-0.14.31}/src/parsagon.egg-info/SOURCES.txt +0 -0
- {parsagon-0.14.30 → parsagon-0.14.31}/src/parsagon.egg-info/dependency_links.txt +0 -0
- {parsagon-0.14.30 → parsagon-0.14.31}/src/parsagon.egg-info/entry_points.txt +0 -0
- {parsagon-0.14.30 → parsagon-0.14.31}/src/parsagon.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: parsagon
|
3
|
-
Version: 0.14.
|
3
|
+
Version: 0.14.31
|
4
4
|
Summary: Allows you to create browser automations with natural language
|
5
5
|
Author-email: Sandy Suh <sandy@parsagon.io>
|
6
6
|
Project-URL: Homepage, https://parsagon.io
|
@@ -10,13 +10,12 @@ Requires-Python: >=3.8
|
|
10
10
|
Description-Content-Type: text/markdown
|
11
11
|
Requires-Dist: selenium==4.9.1
|
12
12
|
Requires-Dist: lxml==4.9.2
|
13
|
-
Requires-Dist: cssselect==1.2.0
|
14
13
|
Requires-Dist: httpx==0.27.0
|
15
14
|
Requires-Dist: psutil==5.9.6
|
16
15
|
Requires-Dist: rich==13.6.0
|
17
16
|
Requires-Dist: PyVirtualDisplay==3.0
|
18
17
|
Requires-Dist: selenium-wire==5.1.0
|
19
|
-
Requires-Dist: cssselect==1.
|
18
|
+
Requires-Dist: cssselect==1.2.0
|
20
19
|
Requires-Dist: undetected-chromedriver==3.5.5
|
21
20
|
Requires-Dist: webdriver-manager==4.0.1
|
22
21
|
Requires-Dist: jsonpath-ng==1.5.3
|
@@ -16,7 +16,7 @@ line-length = 120
|
|
16
16
|
|
17
17
|
[project]
|
18
18
|
name = "parsagon"
|
19
|
-
version = "0.14.
|
19
|
+
version = "0.14.31"
|
20
20
|
description = "Allows you to create browser automations with natural language"
|
21
21
|
readme = "README.md"
|
22
22
|
requires-python = ">=3.8"
|
@@ -31,7 +31,6 @@ classifiers = [
|
|
31
31
|
dependencies = [
|
32
32
|
'selenium == 4.9.1',
|
33
33
|
'lxml == 4.9.2',
|
34
|
-
'cssselect == 1.2.0',
|
35
34
|
'httpx == 0.27.0',
|
36
35
|
'psutil == 5.9.6',
|
37
36
|
'rich == 13.6.0',
|
@@ -39,7 +38,7 @@ dependencies = [
|
|
39
38
|
# Used only in pipeline code execution
|
40
39
|
'PyVirtualDisplay==3.0',
|
41
40
|
'selenium-wire==5.1.0',
|
42
|
-
'cssselect==1.
|
41
|
+
'cssselect==1.2.0',
|
43
42
|
'undetected-chromedriver==3.5.5',
|
44
43
|
'webdriver-manager==4.0.1',
|
45
44
|
'jsonpath-ng==1.5.3',
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: parsagon
|
3
|
-
Version: 0.14.
|
3
|
+
Version: 0.14.31
|
4
4
|
Summary: Allows you to create browser automations with natural language
|
5
5
|
Author-email: Sandy Suh <sandy@parsagon.io>
|
6
6
|
Project-URL: Homepage, https://parsagon.io
|
@@ -10,13 +10,12 @@ Requires-Python: >=3.8
|
|
10
10
|
Description-Content-Type: text/markdown
|
11
11
|
Requires-Dist: selenium==4.9.1
|
12
12
|
Requires-Dist: lxml==4.9.2
|
13
|
-
Requires-Dist: cssselect==1.2.0
|
14
13
|
Requires-Dist: httpx==0.27.0
|
15
14
|
Requires-Dist: psutil==5.9.6
|
16
15
|
Requires-Dist: rich==13.6.0
|
17
16
|
Requires-Dist: PyVirtualDisplay==3.0
|
18
17
|
Requires-Dist: selenium-wire==5.1.0
|
19
|
-
Requires-Dist: cssselect==1.
|
18
|
+
Requires-Dist: cssselect==1.2.0
|
20
19
|
Requires-Dist: undetected-chromedriver==3.5.5
|
21
20
|
Requires-Dist: webdriver-manager==4.0.1
|
22
21
|
Requires-Dist: jsonpath-ng==1.5.3
|
@@ -1,12 +1,11 @@
|
|
1
1
|
selenium==4.9.1
|
2
2
|
lxml==4.9.2
|
3
|
-
cssselect==1.2.0
|
4
3
|
httpx==0.27.0
|
5
4
|
psutil==5.9.6
|
6
5
|
rich==13.6.0
|
7
6
|
PyVirtualDisplay==3.0
|
8
7
|
selenium-wire==5.1.0
|
9
|
-
cssselect==1.
|
8
|
+
cssselect==1.2.0
|
10
9
|
undetected-chromedriver==3.5.5
|
11
10
|
webdriver-manager==4.0.1
|
12
11
|
jsonpath-ng==1.5.3
|
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
|
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
|