uipath 2.1.13__py3-none-any.whl → 2.1.14__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.
@@ -86,3 +86,19 @@ def get_org_scoped_url(base_url: str) -> str:
86
86
  org_name, *_ = parsed.path.strip("/").split("/")
87
87
  org_scoped_url = f"{parsed.scheme}://{parsed.netloc}/{org_name}"
88
88
  return org_scoped_url
89
+
90
+
91
+ def clean_directory(directory: str) -> None:
92
+ """Clean up Python files in the specified directory.
93
+
94
+ Args:
95
+ directory (str): Path to the directory to clean.
96
+
97
+ This function removes all Python files (*.py) from the specified directory.
98
+ It's used to prepare a directory for a quickstart agent/coded MCP server.
99
+ """
100
+ for file_name in os.listdir(directory):
101
+ file_path = os.path.join(directory, file_name)
102
+
103
+ if os.path.isfile(file_path) and file_name.endswith(".py"):
104
+ os.remove(file_path)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: uipath
3
- Version: 2.1.13
3
+ Version: 2.1.14
4
4
  Summary: Python SDK and CLI for UiPath Platform, enabling programmatic interaction with automation services, process management, and deployment tools.
5
5
  Project-URL: Homepage, https://uipath.com
6
6
  Project-URL: Repository, https://github.com/UiPath/uipath-python
@@ -51,7 +51,7 @@ uipath/_cli/_templates/.rels.template,sha256=-fTcw7OA1AcymHr0LzBqbMAAtzZTRXLTNa_
51
51
  uipath/_cli/_templates/[Content_Types].xml.template,sha256=bYsKDz31PkIF9QksjgAY_bqm57YC8U_owsZeNZAiBxQ,584
52
52
  uipath/_cli/_templates/main.py.template,sha256=QB62qX5HKDbW4lFskxj7h9uuxBITnTWqu_DE6asCwcU,476
53
53
  uipath/_cli/_templates/package.nuspec.template,sha256=YZyLc-u_EsmIoKf42JsLQ55OGeFmb8VkIU2VF7DFbtw,359
54
- uipath/_cli/_utils/_common.py,sha256=EwtNvcSgjK1dZcQhwR1ZOue7E4Uj7AD7m4Vr5twdx7I,2595
54
+ uipath/_cli/_utils/_common.py,sha256=OVPe09pPq5yqk6oJKk17YfFU7rxrQJ8flBydin8VOqY,3135
55
55
  uipath/_cli/_utils/_console.py,sha256=scvnrrFoFX6CE451K-PXKV7UN0DUkInbOtDZ5jAdPP0,10070
56
56
  uipath/_cli/_utils/_constants.py,sha256=AXeVidtHUFiODrkB2BCX_bqDL-bUzRg-Ieh1-2cCrGA,1374
57
57
  uipath/_cli/_utils/_debug.py,sha256=zamzIR4VgbdKADAE4gbmjxDsbgF7wvdr7C5Dqp744Oc,1739
@@ -113,8 +113,8 @@ uipath/tracing/_traced.py,sha256=qeVDrds2OUnpdUIA0RhtF0kg2dlAZhyC1RRkI-qivTM,185
113
113
  uipath/tracing/_utils.py,sha256=ZeensQexnw69jVcsVrGyED7mPlAU-L1agDGm6_1A3oc,10388
114
114
  uipath/utils/__init__.py,sha256=VD-KXFpF_oWexFg6zyiWMkxl2HM4hYJMIUDZ1UEtGx0,105
115
115
  uipath/utils/_endpoints_manager.py,sha256=hiGEu6vyfQJoeiiql6w21TNiG6tADUfXlVBimxPU1-Q,4160
116
- uipath-2.1.13.dist-info/METADATA,sha256=FGy8glSaVOgyaOm3gADf73kwb-3o_bYCavkrLry9-bs,6367
117
- uipath-2.1.13.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
118
- uipath-2.1.13.dist-info/entry_points.txt,sha256=9C2_29U6Oq1ExFu7usihR-dnfIVNSKc-0EFbh0rskB4,43
119
- uipath-2.1.13.dist-info/licenses/LICENSE,sha256=-KBavWXepyDjimmzH5fVAsi-6jNVpIKFc2kZs0Ri4ng,1058
120
- uipath-2.1.13.dist-info/RECORD,,
116
+ uipath-2.1.14.dist-info/METADATA,sha256=NvFzEwkpuk2EiageBt0CSzkf7y-F5oHiTx1jDN-btxQ,6367
117
+ uipath-2.1.14.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
118
+ uipath-2.1.14.dist-info/entry_points.txt,sha256=9C2_29U6Oq1ExFu7usihR-dnfIVNSKc-0EFbh0rskB4,43
119
+ uipath-2.1.14.dist-info/licenses/LICENSE,sha256=-KBavWXepyDjimmzH5fVAsi-6jNVpIKFc2kZs0Ri4ng,1058
120
+ uipath-2.1.14.dist-info/RECORD,,