uipath 2.0.4.dev5__py3-none-any.whl → 2.0.5__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.
Potentially problematic release.
This version of uipath might be problematic. Click here for more details.
- {uipath-2.0.4.dev5.dist-info → uipath-2.0.5.dist-info}/METADATA +48 -35
- {uipath-2.0.4.dev5.dist-info → uipath-2.0.5.dist-info}/RECORD +5 -5
- {uipath-2.0.4.dev5.dist-info → uipath-2.0.5.dist-info}/WHEEL +0 -0
- {uipath-2.0.4.dev5.dist-info → uipath-2.0.5.dist-info}/entry_points.txt +0 -0
- {uipath-2.0.4.dev5.dist-info → uipath-2.0.5.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: uipath
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.5
|
|
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
|
|
@@ -23,7 +23,7 @@ Requires-Dist: tenacity>=9.0.0
|
|
|
23
23
|
Requires-Dist: tomli>=2.2.1
|
|
24
24
|
Requires-Dist: types-requests>=2.32.0.20250306
|
|
25
25
|
Provides-Extra: langchain
|
|
26
|
-
Requires-Dist: uipath-langchain
|
|
26
|
+
Requires-Dist: uipath-langchain<0.1.0,>=0.0.88; extra == 'langchain'
|
|
27
27
|
Description-Content-Type: text/markdown
|
|
28
28
|
|
|
29
29
|
# UiPath Python SDK
|
|
@@ -32,28 +32,29 @@ Description-Content-Type: text/markdown
|
|
|
32
32
|
[](https://img.shields.io/pypi/v/uipath)
|
|
33
33
|
[](https://pypi.org/project/uipath/)
|
|
34
34
|
|
|
35
|
-
|
|
36
35
|
A Python SDK that enables programmatic interaction with UiPath Platform services including processes, assets, buckets, context grounding, data services, jobs, and more. The package also features a CLI for creation, packaging, and deployment of automations to UiPath Platform.
|
|
37
36
|
|
|
37
|
+
Use the [UiPath LangChain SDK](https://github.com/UiPath/uipath-langchain-python) to pack and publish LangGraph Agents.
|
|
38
|
+
|
|
38
39
|
## Table of Contents
|
|
39
40
|
|
|
40
|
-
-
|
|
41
|
-
-
|
|
42
|
-
|
|
43
|
-
-
|
|
44
|
-
-
|
|
45
|
-
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
-
|
|
55
|
-
-
|
|
56
|
-
|
|
41
|
+
- [Installation](#installation)
|
|
42
|
+
- [Configuration](#configuration)
|
|
43
|
+
- [Environment Variables](#environment-variables)
|
|
44
|
+
- [Basic Usage](#basic-usage)
|
|
45
|
+
- [Available Services](#available-services)
|
|
46
|
+
- [Examples](#examples)
|
|
47
|
+
- [Buckets Service](#buckets-service)
|
|
48
|
+
- [Context Grounding Service](#context-grounding-service)
|
|
49
|
+
- [Command Line Interface (CLI)](#command-line-interface-cli)
|
|
50
|
+
- [Authentication](#authentication)
|
|
51
|
+
- [Initialize a Project](#initialize-a-project)
|
|
52
|
+
- [Debug a Project](#debug-a-project)
|
|
53
|
+
- [Package a Project](#package-a-project)
|
|
54
|
+
- [Publish a Package](#publish-a-package)
|
|
55
|
+
- [Project Structure](#project-structure)
|
|
56
|
+
- [Development](#development)
|
|
57
|
+
- [Setting Up a Development Environment](#setting-up-a-development-environment)
|
|
57
58
|
|
|
58
59
|
## Installation
|
|
59
60
|
|
|
@@ -96,15 +97,24 @@ asset = sdk.assets.retrieve(name="MyAsset")
|
|
|
96
97
|
## Available Services
|
|
97
98
|
|
|
98
99
|
The SDK provides access to various UiPath services:
|
|
99
|
-
|
|
100
|
-
-
|
|
101
|
-
|
|
102
|
-
-
|
|
103
|
-
|
|
104
|
-
-
|
|
105
|
-
|
|
106
|
-
-
|
|
107
|
-
|
|
100
|
+
|
|
101
|
+
- `sdk.processes` - Manage and execute UiPath automation processes
|
|
102
|
+
|
|
103
|
+
- `sdk.assets` - Work with assets (variables, credentials) stored in UiPath
|
|
104
|
+
|
|
105
|
+
- `sdk.buckets` - Manage cloud storage containers for automation files
|
|
106
|
+
|
|
107
|
+
- `sdk.connections` - Handle connections to external systems
|
|
108
|
+
|
|
109
|
+
- `sdk.context_grounding` - Work with semantic contexts for AI-enabled automation
|
|
110
|
+
|
|
111
|
+
- `sdk.jobs` - Monitor and manage automation jobs
|
|
112
|
+
|
|
113
|
+
- `sdk.queues` - Work with transaction queues
|
|
114
|
+
|
|
115
|
+
- `sdk.actions` - Work with Action Center
|
|
116
|
+
|
|
117
|
+
- `sdk.api_client` - Direct access to the API client for custom requests
|
|
108
118
|
|
|
109
119
|
## Examples
|
|
110
120
|
|
|
@@ -167,10 +177,12 @@ uipath pack
|
|
|
167
177
|
Packages your project into a `.nupkg` file that can be deployed to UiPath.
|
|
168
178
|
|
|
169
179
|
**Note:** Your `pyproject.toml` must include:
|
|
170
|
-
|
|
171
|
-
-
|
|
180
|
+
|
|
181
|
+
- A description field (avoid characters: &, <, >, ", ', ;)
|
|
182
|
+
- Author information
|
|
172
183
|
|
|
173
184
|
Example:
|
|
185
|
+
|
|
174
186
|
```toml
|
|
175
187
|
description = "Your package description"
|
|
176
188
|
authors = [{name = "Your Name", email = "your.email@example.com"}]
|
|
@@ -187,12 +199,13 @@ Publishes the most recently created package to your UiPath Orchestrator.
|
|
|
187
199
|
## Project Structure
|
|
188
200
|
|
|
189
201
|
To properly use the CLI for packaging and publishing, your project should include:
|
|
190
|
-
|
|
191
|
-
-
|
|
192
|
-
-
|
|
202
|
+
|
|
203
|
+
- A `pyproject.toml` file with project metadata
|
|
204
|
+
- A `uipath.json` file (generated by `uipath init`)
|
|
205
|
+
- Any Python files needed for your automation
|
|
193
206
|
|
|
194
207
|
## Development
|
|
195
208
|
|
|
196
209
|
### Setting Up a Development Environment
|
|
197
210
|
|
|
198
|
-
Please read
|
|
211
|
+
Please read [CONTRIBUTING.md](https://uipath.github.io/uipath-python/how_to_contribute/) before submitting a pull request.
|
|
@@ -69,8 +69,8 @@ uipath/models/job.py,sha256=f9L6_kg_VP0dAYvdcz1DWEWzy4NZPdlpHREod0uNK1E,3099
|
|
|
69
69
|
uipath/models/llm_gateway.py,sha256=0sl5Wtve94V14H3AHwmJSoXAhoc-Fai3wJxP8HrnBPg,1994
|
|
70
70
|
uipath/models/processes.py,sha256=Atvfrt6X4TYST3iA62jpS_Uxc3hg6uah11p-RaKZ6dk,2029
|
|
71
71
|
uipath/models/queues.py,sha256=N_s0GKucbyjh0RnO8SxPk6wlRgvq8KIIYsfaoIY46tM,6446
|
|
72
|
-
uipath-2.0.
|
|
73
|
-
uipath-2.0.
|
|
74
|
-
uipath-2.0.
|
|
75
|
-
uipath-2.0.
|
|
76
|
-
uipath-2.0.
|
|
72
|
+
uipath-2.0.5.dist-info/METADATA,sha256=GWc1HQtzRxly86jzrRR7NtPq9M4qt0QYFchqLdzEkgo,6046
|
|
73
|
+
uipath-2.0.5.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
74
|
+
uipath-2.0.5.dist-info/entry_points.txt,sha256=9C2_29U6Oq1ExFu7usihR-dnfIVNSKc-0EFbh0rskB4,43
|
|
75
|
+
uipath-2.0.5.dist-info/licenses/LICENSE,sha256=-KBavWXepyDjimmzH5fVAsi-6jNVpIKFc2kZs0Ri4ng,1058
|
|
76
|
+
uipath-2.0.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|