uipath 2.0.4.dev4__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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: uipath
3
- Version: 2.0.4.dev4
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==0.0.85; extra == '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
  [![PyPI - Version](https://img.shields.io/pypi/v/uipath)](https://img.shields.io/pypi/v/uipath)
33
33
  [![Python versions](https://img.shields.io/pypi/pyversions/uipath.svg)](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
- - [Installation](#installation)
41
- - [Configuration](#configuration)
42
- - [Environment Variables](#environment-variables)
43
- - [Basic Usage](#basic-usage)
44
- - [Available Services](#available-services)
45
- - [Examples](#examples)
46
- - [Buckets Service](#buckets-service)
47
- - [Context Grounding Service](#context-grounding-service)
48
- - [Command Line Interface (CLI)](#command-line-interface-cli)
49
- - [Authentication](#authentication)
50
- - [Initialize a Project](#initialize-a-project)
51
- - [Debug a Project](#debug-a-project)
52
- - [Package a Project](#package-a-project)
53
- - [Publish a Package](#publish-a-package)
54
- - [Project Structure](#project-structure)
55
- - [Development](#development)
56
- - [Setting Up a Development Environment](#setting-up-a-development-environment)
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
- - `sdk.processes` - Manage and execute UiPath automation processes
100
- - `sdk.assets` - Work with assets (variables, credentials) stored in UiPath
101
- - `sdk.buckets` - Manage cloud storage containers for automation files
102
- - `sdk.connections` - Handle connections to external systems
103
- - `sdk.context_grounding` - Work with semantic contexts for AI-enabled automation
104
- - `sdk.jobs` - Monitor and manage automation jobs
105
- - `sdk.queues` - Work with transaction queues
106
- - `sdk.actions` - Work with Action Center
107
- - `sdk.api_client` - Direct access to the API client for custom requests
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
- - A description field (avoid characters: &, <, >, ", ', ;)
171
- - Author information
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
- - A `pyproject.toml` file with project metadata
191
- - A `uipath.json` file (generated by `uipath init`)
192
- - Any Python files needed for your automation
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 our [contribution guidelines](CONTRIBUTING.md) before submitting a pull request.
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.4.dev4.dist-info/METADATA,sha256=zBNdclWNuGBVmWxbuG4cNqIraS6EMFRtDt72HZn2bJo,5801
73
- uipath-2.0.4.dev4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
74
- uipath-2.0.4.dev4.dist-info/entry_points.txt,sha256=9C2_29U6Oq1ExFu7usihR-dnfIVNSKc-0EFbh0rskB4,43
75
- uipath-2.0.4.dev4.dist-info/licenses/LICENSE,sha256=-KBavWXepyDjimmzH5fVAsi-6jNVpIKFc2kZs0Ri4ng,1058
76
- uipath-2.0.4.dev4.dist-info/RECORD,,
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,,