parsagon 0.14.23__py3-none-any.whl → 0.14.25__py3-none-any.whl
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/api.py +2 -1
- parsagon/create.py +12 -2
- parsagon/main.py +5 -0
- parsagon/runs.py +2 -1
- {parsagon-0.14.23.dist-info → parsagon-0.14.25.dist-info}/METADATA +1 -1
- {parsagon-0.14.23.dist-info → parsagon-0.14.25.dist-info}/RECORD +9 -9
- {parsagon-0.14.23.dist-info → parsagon-0.14.25.dist-info}/WHEEL +0 -0
- {parsagon-0.14.23.dist-info → parsagon-0.14.25.dist-info}/entry_points.txt +0 -0
- {parsagon-0.14.23.dist-info → parsagon-0.14.25.dist-info}/top_level.txt +0 -0
parsagon/api.py
CHANGED
@@ -235,7 +235,7 @@ def get_pipelines():
|
|
235
235
|
return _api_call(httpx.get, f"/pipelines/")
|
236
236
|
|
237
237
|
|
238
|
-
def get_pipeline_code(pipeline_name, variables, headless, use_uc, optimize):
|
238
|
+
def get_pipeline_code(pipeline_name, variables, headless, use_uc, optimize, use_proxy):
|
239
239
|
escaped_pipeline_name = double_quote(pipeline_name)
|
240
240
|
with RaiseProgramNotFound(pipeline_name):
|
241
241
|
return _api_call(
|
@@ -246,6 +246,7 @@ def get_pipeline_code(pipeline_name, variables, headless, use_uc, optimize):
|
|
246
246
|
"headless": headless,
|
247
247
|
"use_uc": use_uc,
|
248
248
|
"optimize": optimize,
|
249
|
+
"use_proxy": use_proxy,
|
249
250
|
},
|
250
251
|
)
|
251
252
|
|
parsagon/create.py
CHANGED
@@ -1,11 +1,21 @@
|
|
1
|
-
from parsagon.api import get_program_sketches, create_pipeline, create_custom_function, delete_pipeline
|
2
|
-
from parsagon.exceptions import APIException
|
1
|
+
from parsagon.api import get_program_sketches, get_pipeline, create_pipeline, create_custom_function, delete_pipeline
|
2
|
+
from parsagon.exceptions import APIException, ProgramNotFoundException
|
3
3
|
from parsagon.executor import Executor, custom_functions_to_descriptions
|
4
4
|
from parsagon.print import assistant_print, ask, input, confirm
|
5
5
|
from parsagon.secrets import extract_secrets
|
6
6
|
|
7
7
|
|
8
8
|
def create_program(task, headless=False, undetected=False, program_name=None, assume_yes=False):
|
9
|
+
if program_name:
|
10
|
+
try:
|
11
|
+
get_pipeline(program_name)
|
12
|
+
assistant_print(f"A program with the name {program_name} already exists.")
|
13
|
+
return {
|
14
|
+
"success": False,
|
15
|
+
"outcome": f"A program with the name {program_name} already exists. The user must choose a different name.",
|
16
|
+
}
|
17
|
+
except ProgramNotFoundException:
|
18
|
+
pass
|
9
19
|
assistant_print("Creating a program based on your specifications...")
|
10
20
|
task, secrets = extract_secrets(task)
|
11
21
|
program_sketches = get_program_sketches(task)
|
parsagon/main.py
CHANGED
@@ -142,6 +142,11 @@ def get_args(argv):
|
|
142
142
|
action="store_true",
|
143
143
|
help="run in optimized mode",
|
144
144
|
)
|
145
|
+
parser_run.add_argument(
|
146
|
+
"--use_proxy",
|
147
|
+
action="store_true",
|
148
|
+
help="run with proxy",
|
149
|
+
)
|
145
150
|
parser_run.set_defaults(func=run)
|
146
151
|
|
147
152
|
# Delete
|
parsagon/runs.py
CHANGED
@@ -29,6 +29,7 @@ def run(
|
|
29
29
|
output_file=None,
|
30
30
|
undetected=False,
|
31
31
|
optimize=False,
|
32
|
+
use_proxy=False,
|
32
33
|
verbose=False,
|
33
34
|
):
|
34
35
|
"""
|
@@ -80,7 +81,7 @@ def run(
|
|
80
81
|
time.sleep(5)
|
81
82
|
|
82
83
|
run = create_pipeline_run(pipeline_id, variables, True)
|
83
|
-
code = get_pipeline_code(program_name, variables, headless, undetected, optimize)["code"]
|
84
|
+
code = get_pipeline_code(program_name, variables, headless, undetected, optimize, use_proxy)["code"]
|
84
85
|
start_time = datetime.datetime.now(datetime.timezone.utc).isoformat()
|
85
86
|
run_data = {"start_time": start_time}
|
86
87
|
|
@@ -1,16 +1,16 @@
|
|
1
1
|
parsagon/__init__.py,sha256=_S5MlYHBViB4iY96_UbGo3mfGndE8MmFmb1EORJppK8,452
|
2
|
-
parsagon/api.py,sha256=
|
2
|
+
parsagon/api.py,sha256=z52b5zBMTaIpWw9tu5-fF0Ngt58Vtm5TFnreUm8O_XU,9834
|
3
3
|
parsagon/assistant.py,sha256=V3NL6UdDqe74W_X3wPQ1qwFuJRvHzitXtOt-XSCXvds,4065
|
4
|
-
parsagon/create.py,sha256=
|
4
|
+
parsagon/create.py,sha256=igrJN8jVP5p3P9-dPSabrHGOQOlG2Flx7ep4SqEDB14,4373
|
5
5
|
parsagon/custom_function.py,sha256=oEj28qItaHUnsvLIHD7kg5QL3J3aO6rW6xKKP-H-Drs,770
|
6
6
|
parsagon/edit.py,sha256=aLeAcp1hFHm29qh6do21cfYykK76CsHC4tc9Uh2_2bk,3006
|
7
7
|
parsagon/exceptions.py,sha256=tG1vnpmUN1GdJ1GSpe1MaWH3zWmFLZCwtOfEGu8qPP0,910
|
8
8
|
parsagon/executor.py,sha256=9KVsw_Hh4NEwIvWau8MnkAQ2mK83nWrFy1B3iAGzm9Q,25620
|
9
9
|
parsagon/gui_entry.py,sha256=bqG9K0CArXWWwDGoT8aV17YLNM8MfjSf6SJ_B3QbNeA,671
|
10
10
|
parsagon/highlights.js,sha256=2UDfUApblU9xtGgTLCq4X7rHRV0wcqDSSFZPmJS6fJg,16643
|
11
|
-
parsagon/main.py,sha256=
|
11
|
+
parsagon/main.py,sha256=WPxrT1ZyPe6wNSFP7GnnKIGisgPM2dFieHP2TC5TGVQ,9467
|
12
12
|
parsagon/print.py,sha256=-7iVKil0W9e8zX1EJMcdlqNdfpmfPxKTBtZfwzWpGYU,4106
|
13
|
-
parsagon/runs.py,sha256=
|
13
|
+
parsagon/runs.py,sha256=XXbk3eUJjBBETBq6AUyBrNPIR18svCRTSCSnhN2GpOc,8560
|
14
14
|
parsagon/secrets.py,sha256=72dr-6q1q2ATBkE75fT18tcvwDM-4nymTb9NDVwjHTE,545
|
15
15
|
parsagon/settings.py,sha256=ejd9wGCOEB68n8a0M2SyzlmlwPofnzMKaxpBqYhcs34,3552
|
16
16
|
parsagon/gui/__init__.py,sha256=ZvKZfcchSnBh__UY_XeMnQJACd1EG99ix3_SfSHth8g,68
|
@@ -25,8 +25,8 @@ parsagon/tests/test_invalid_args.py,sha256=TAFdHGy92lUxjljPrtODOuEGVss6rn-F5GvEK
|
|
25
25
|
parsagon/tests/test_pipeline_operations.py,sha256=aEwZNtIwOl9X7jdLDLB4YEdgMp7_x8PXCINAE7RT4NY,805
|
26
26
|
parsagon/tests/test_print.py,sha256=BG7f55YDBoL0S7k291-so_Gje_hUAQOkB-jh-bEYsJY,198
|
27
27
|
parsagon/tests/test_secrets.py,sha256=Ctsscl2tmMTZcFAy5dnyqUlgTov2UharZgLpbRCLdEg,2662
|
28
|
-
parsagon-0.14.
|
29
|
-
parsagon-0.14.
|
30
|
-
parsagon-0.14.
|
31
|
-
parsagon-0.14.
|
32
|
-
parsagon-0.14.
|
28
|
+
parsagon-0.14.25.dist-info/METADATA,sha256=SSWWJVRIrKeqzti57XG6tZdmgAJzegU8zXTt_5pBnu4,2432
|
29
|
+
parsagon-0.14.25.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
30
|
+
parsagon-0.14.25.dist-info/entry_points.txt,sha256=I1UlPUb4oY2k9idkI8kvdkEcrjKGRSOl5pMbA6uu6kw,48
|
31
|
+
parsagon-0.14.25.dist-info/top_level.txt,sha256=ih5uYQzW4qjhRKppys-WiHLIbXVZ99YdqDcfAtlcQwk,9
|
32
|
+
parsagon-0.14.25.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|