stoobly-agent 0.34.5__py3-none-any.whl → 0.34.6__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.
- stoobly_agent/__init__.py +1 -1
- stoobly_agent/app/proxy/run.py +3 -0
- stoobly_agent/cli.py +3 -1
- {stoobly_agent-0.34.5.dist-info → stoobly_agent-0.34.6.dist-info}/METADATA +1 -1
- {stoobly_agent-0.34.5.dist-info → stoobly_agent-0.34.6.dist-info}/RECORD +8 -8
- {stoobly_agent-0.34.5.dist-info → stoobly_agent-0.34.6.dist-info}/LICENSE +0 -0
- {stoobly_agent-0.34.5.dist-info → stoobly_agent-0.34.6.dist-info}/WHEEL +0 -0
- {stoobly_agent-0.34.5.dist-info → stoobly_agent-0.34.6.dist-info}/entry_points.txt +0 -0
stoobly_agent/__init__.py
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
COMMAND = 'stoobly-agent'
|
2
|
-
VERSION = '0.34.
|
2
|
+
VERSION = '0.34.6'
|
stoobly_agent/app/proxy/run.py
CHANGED
@@ -124,6 +124,9 @@ def __filter_options(options):
|
|
124
124
|
if 'lifecycle_hooks_path' in options:
|
125
125
|
del options['lifecycle_hooks_path']
|
126
126
|
|
127
|
+
if 'proxyless' in options:
|
128
|
+
del options['proxyless']
|
129
|
+
|
127
130
|
if 'public_directory_path' in options:
|
128
131
|
del options['public_directory_path']
|
129
132
|
|
stoobly_agent/cli.py
CHANGED
@@ -98,6 +98,7 @@ def init(**kwargs):
|
|
98
98
|
An empty header-value removes existing header-name headers. May be passed multiple times.
|
99
99
|
''')
|
100
100
|
@click.option('--proxy-host', default='0.0.0.0', help='Address to bind proxy to.')
|
101
|
+
@click.option('--proxyless', is_flag=True, default=False, help='Disable starting proxy.')
|
101
102
|
@click.option('--proxy-mode', default="regular", help='''
|
102
103
|
Proxy mode can be "regular", "transparent", "socks5",
|
103
104
|
"reverse:SPEC", or "upstream:SPEC". For reverse and
|
@@ -136,7 +137,8 @@ def run(**kwargs):
|
|
136
137
|
if 'headless' in kwargs and not kwargs['headless']:
|
137
138
|
run_api(**kwargs)
|
138
139
|
|
139
|
-
|
140
|
+
if 'proxyless' in kwargs and not kwargs['proxyless']:
|
141
|
+
run_proxy(**kwargs)
|
140
142
|
|
141
143
|
@main.command(
|
142
144
|
help="Mock request"
|
@@ -1,4 +1,4 @@
|
|
1
|
-
stoobly_agent/__init__.py,sha256=
|
1
|
+
stoobly_agent/__init__.py,sha256=5q5pSycnJ-7lw2ZL1E0GOttjb46TtKkffg5EjuwdyN8,45
|
2
2
|
stoobly_agent/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
3
|
stoobly_agent/app/api/__init__.py,sha256=FFSlVoTgjPfUNlYPr_7u6-P5Y4WOKyaUfAHtUcB-Xio,810
|
4
4
|
stoobly_agent/app/api/application_http_request_handler.py,sha256=jf4fkqjOiCeI2IM5Ro7ie0v_C6y0-7-5TIE_IKMPOfg,5513
|
@@ -214,7 +214,7 @@ stoobly_agent/app/proxy/replay/replay_request_service.py,sha256=1OyrGb9Vfflhcfy4
|
|
214
214
|
stoobly_agent/app/proxy/replay/replay_scenario_service.py,sha256=9jV-iO5EBg8geUblEtjjWRFIkom_Pqmo7P-lTc3S4Xw,2824
|
215
215
|
stoobly_agent/app/proxy/replay/rewrite_params_service.py,sha256=jEHlT6_OHq_VBa09Hd6QaRyErv7tZnziDvW7m3Q8CQg,2234
|
216
216
|
stoobly_agent/app/proxy/replay/trace_context.py,sha256=n-jqoVeZaUqzTdHI4ImaQ5vUqLfU4sMDDPW0Ydpvuic,10362
|
217
|
-
stoobly_agent/app/proxy/run.py,sha256=
|
217
|
+
stoobly_agent/app/proxy/run.py,sha256=YQEPhZylsKhqFdGzEnw1hp-OwbgckKSrwv9SmK1Ln3w,4035
|
218
218
|
stoobly_agent/app/proxy/settings.py,sha256=R0LkSa9HrkUXvCd-nur4syJePjbQZdlnAnOPpGnCx38,2172
|
219
219
|
stoobly_agent/app/proxy/simulate_intercept_service.py,sha256=R-L2dh2dfYFebttWXU0NwyxFI_jP6Ud36oKPC-T8HiI,1942
|
220
220
|
stoobly_agent/app/proxy/test/__init__.py,sha256=uW0Ab27oyH2odTeVRjcuUJF8A1FLbTT5sBMzhGZr1so,89
|
@@ -273,7 +273,7 @@ stoobly_agent/app/settings/types/remote_settings.py,sha256=4PvEGKULXM0zv29XTDzV7
|
|
273
273
|
stoobly_agent/app/settings/types/ui_settings.py,sha256=BqPy2F32AbODqzi2mp2kRk28QVUydQIwVmvftn46pco,84
|
274
274
|
stoobly_agent/app/settings/ui_settings.py,sha256=YDEUMPuJFh0SLHaGz6O-Gpz8nwsunNzeuc-TzO9OUbM,1170
|
275
275
|
stoobly_agent/app/settings/url_rule.py,sha256=Qx7YrIpVRSC-4LeNiCAfCtE50Jou4423hojMW-4qUYg,954
|
276
|
-
stoobly_agent/cli.py,sha256=
|
276
|
+
stoobly_agent/cli.py,sha256=AS1ZdVnW5S7pm5YAfzJ_w3_4ot9fKqfBcbQOB4FrYTI,9204
|
277
277
|
stoobly_agent/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
278
278
|
stoobly_agent/config/constants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
279
279
|
stoobly_agent/config/constants/alias_resolve_strategy.py,sha256=_R1tVqFnyGxCraVS5-dhSskaDj_X8-NthsY7i_bEt9M,119
|
@@ -587,8 +587,8 @@ stoobly_agent/test/mock_data/petstore.yaml,sha256=CCdliJky04Az4FIOkFA883uunwFDHL
|
|
587
587
|
stoobly_agent/test/mock_data/request_show_response.py,sha256=K_a0fP0QT58T8sX9PaM6hqtX1A1depZsqg_GsNPf--k,707
|
588
588
|
stoobly_agent/test/mock_data/uspto.yaml,sha256=6U5se7C3o-86J4m9xpOk9Npias399f5CbfWzR87WKwE,7835
|
589
589
|
stoobly_agent/test/test_helper.py,sha256=m_oAI7tmRYCNZdKfNqISWhMv3e44tjeYViQ3nTUfnos,1007
|
590
|
-
stoobly_agent-0.34.
|
591
|
-
stoobly_agent-0.34.
|
592
|
-
stoobly_agent-0.34.
|
593
|
-
stoobly_agent-0.34.
|
594
|
-
stoobly_agent-0.34.
|
590
|
+
stoobly_agent-0.34.6.dist-info/LICENSE,sha256=8QKGyy45eN76Zk52h8gu1DKX2B_gbWgZ3nzDLofEbaE,548
|
591
|
+
stoobly_agent-0.34.6.dist-info/METADATA,sha256=DRjtzHfgPSHIJI2fmcXTVg0g9YP7ULUAMW4R8SQpbow,3304
|
592
|
+
stoobly_agent-0.34.6.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
593
|
+
stoobly_agent-0.34.6.dist-info/entry_points.txt,sha256=aq5wix5oC8MDQtmyPGU0xaFrsjJg7WH28NmXh2sc3Z8,56
|
594
|
+
stoobly_agent-0.34.6.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|