uipath 0.0.1__tar.gz → 1.1.1__tar.gz
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-1.1.1/.github/workflows/docs.yml +29 -0
- uipath-1.1.1/.github/workflows/publish.yml +27 -0
- uipath-1.1.1/.gitignore +47 -0
- uipath-1.1.1/LICENSE +21 -0
- uipath-1.1.1/PKG-INFO +177 -0
- uipath-1.1.1/README.md +138 -0
- uipath-1.1.1/docs/index.md +422 -0
- uipath-1.1.1/docs/requirements.txt +3 -0
- uipath-1.1.1/docs/resources/alerts.md +265 -0
- uipath-1.1.1/docs/resources/assets.md +247 -0
- uipath-1.1.1/docs/resources/audit.md +278 -0
- uipath-1.1.1/docs/resources/directory.md +285 -0
- uipath-1.1.1/docs/resources/environments.md +292 -0
- uipath-1.1.1/docs/resources/folders.md +294 -0
- uipath-1.1.1/docs/resources/jobs.md +82 -0
- uipath-1.1.1/docs/resources/libraries.md +288 -0
- uipath-1.1.1/docs/resources/licensing.md +273 -0
- uipath-1.1.1/docs/resources/logs.md +206 -0
- uipath-1.1.1/docs/resources/machines.md +297 -0
- uipath-1.1.1/docs/resources/metrics.md +248 -0
- uipath-1.1.1/docs/resources/packages.md +306 -0
- uipath-1.1.1/docs/resources/processes.md +278 -0
- uipath-1.1.1/docs/resources/queues/test_data_queue.md +5 -0
- uipath-1.1.1/docs/resources/queues.md +155 -0
- uipath-1.1.1/docs/resources/releases.md +285 -0
- uipath-1.1.1/docs/resources/robots.md +201 -0
- uipath-1.1.1/docs/resources/schedules.md +253 -0
- uipath-1.1.1/docs/resources/settings/maintenance.md +5 -0
- uipath-1.1.1/docs/resources/settings.md +283 -0
- uipath-1.1.1/docs/resources/stats.md +258 -0
- uipath-1.1.1/docs/resources/status.md +251 -0
- uipath-1.1.1/docs/resources/task_forms.md +278 -0
- uipath-1.1.1/docs/resources/webhooks.md +267 -0
- uipath-1.1.1/mkdocs.yml +80 -0
- uipath-1.1.1/pyproject.toml +25 -0
- uipath-1.1.1/requirements.txt +1 -0
- {uipath-0.0.1 → uipath-1.1.1}/setup.cfg +4 -4
- uipath-1.1.1/setup.py +41 -0
- uipath-1.1.1/uipath/__init__.py +9 -0
- uipath-1.1.1/uipath/__version__.py +3 -0
- uipath-1.1.1/uipath/auth/authentication.py +53 -0
- uipath-1.1.1/uipath/client/api_client.py +89 -0
- uipath-1.1.1/uipath/client/base_client.py +46 -0
- uipath-1.1.1/uipath/client/resources/__init__.py +5 -0
- uipath-1.1.1/uipath/client/resources/alerts.py +65 -0
- uipath-1.1.1/uipath/client/resources/assets.py +29 -0
- uipath-1.1.1/uipath/client/resources/audit.py +83 -0
- uipath-1.1.1/uipath/client/resources/directory.py +99 -0
- uipath-1.1.1/uipath/client/resources/environments.py +62 -0
- uipath-1.1.1/uipath/client/resources/folders.py +147 -0
- uipath-1.1.1/uipath/client/resources/jobs.py +113 -0
- uipath-1.1.1/uipath/client/resources/libraries.py +120 -0
- uipath-1.1.1/uipath/client/resources/licensing.py +40 -0
- uipath-1.1.1/uipath/client/resources/logs.py +46 -0
- uipath-1.1.1/uipath/client/resources/machines.py +136 -0
- uipath-1.1.1/uipath/client/resources/maintenance.py +85 -0
- uipath-1.1.1/uipath/client/resources/metrics.py +38 -0
- uipath-1.1.1/uipath/client/resources/packages.py +112 -0
- uipath-1.1.1/uipath/client/resources/processes.py +173 -0
- uipath-1.1.1/uipath/client/resources/queues.py +90 -0
- uipath-1.1.1/uipath/client/resources/releases.py +114 -0
- uipath-1.1.1/uipath/client/resources/robots.py +155 -0
- uipath-1.1.1/uipath/client/resources/settings.py +99 -0
- uipath-1.1.1/uipath/client/resources/stats.py +89 -0
- uipath-1.1.1/uipath/client/resources/status.py +31 -0
- uipath-1.1.1/uipath/client/resources/task_forms.py +153 -0
- uipath-1.1.1/uipath/client/resources/test_automation.py +119 -0
- uipath-1.1.1/uipath/client/resources/test_data_queue.py +64 -0
- uipath-1.1.1/uipath/client/resources/users.py +91 -0
- uipath-1.1.1/uipath/client/resources/webhooks.py +98 -0
- uipath-1.1.1/uipath.egg-info/PKG-INFO +177 -0
- uipath-1.1.1/uipath.egg-info/SOURCES.txt +73 -0
- uipath-1.1.1/uipath.egg-info/requires.txt +6 -0
- uipath-0.0.1/MANIFEST.in +0 -2
- uipath-0.0.1/PKG-INFO +0 -18
- uipath-0.0.1/README.md +0 -5
- uipath-0.0.1/UiPath.egg-info/PKG-INFO +0 -18
- uipath-0.0.1/UiPath.egg-info/SOURCES.txt +0 -16
- uipath-0.0.1/UiPath.egg-info/requires.txt +0 -1
- uipath-0.0.1/docs/documentation_coming_soon.txt +0 -0
- uipath-0.0.1/setup.py +0 -24
- uipath-0.0.1/uipath/__init__.py +0 -1
- uipath-0.0.1/uipath/sequence.py +0 -483
- {uipath-0.0.1/UiPath.egg-info → uipath-1.1.1/uipath.egg-info}/dependency_links.txt +0 -0
- {uipath-0.0.1/UiPath.egg-info → uipath-1.1.1/uipath.egg-info}/top_level.txt +0 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
name: Deploy Documentation
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main # or master, depending on your default branch
|
|
7
|
+
release:
|
|
8
|
+
types: [published]
|
|
9
|
+
|
|
10
|
+
permissions:
|
|
11
|
+
contents: write
|
|
12
|
+
|
|
13
|
+
jobs:
|
|
14
|
+
deploy:
|
|
15
|
+
runs-on: ubuntu-latest
|
|
16
|
+
steps:
|
|
17
|
+
- uses: actions/checkout@v4
|
|
18
|
+
- name: Set up Python
|
|
19
|
+
uses: actions/setup-python@v4
|
|
20
|
+
with:
|
|
21
|
+
python-version: '3.x'
|
|
22
|
+
|
|
23
|
+
- name: Install dependencies
|
|
24
|
+
run: |
|
|
25
|
+
python -m pip install --upgrade pip
|
|
26
|
+
pip install .[dev]
|
|
27
|
+
|
|
28
|
+
- name: Deploy Documentation
|
|
29
|
+
run: mkdocs gh-deploy --force
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
name: Publish to PyPI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- 'v*'
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
deploy:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
steps:
|
|
12
|
+
- uses: actions/checkout@v3
|
|
13
|
+
- name: Set up Python
|
|
14
|
+
uses: actions/setup-python@v4
|
|
15
|
+
with:
|
|
16
|
+
python-version: '3.x'
|
|
17
|
+
- name: Install dependencies
|
|
18
|
+
run: |
|
|
19
|
+
python -m pip install --upgrade pip
|
|
20
|
+
pip install build twine
|
|
21
|
+
- name: Build and publish
|
|
22
|
+
env:
|
|
23
|
+
TWINE_USERNAME: __token__
|
|
24
|
+
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
|
|
25
|
+
run: |
|
|
26
|
+
python -m build
|
|
27
|
+
twine upload dist/*
|
uipath-1.1.1/.gitignore
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
api_spec.json
|
|
2
|
+
|
|
3
|
+
# Python
|
|
4
|
+
__pycache__/
|
|
5
|
+
*.py[cod]
|
|
6
|
+
*$py.class
|
|
7
|
+
*.so
|
|
8
|
+
.Python
|
|
9
|
+
build/
|
|
10
|
+
develop-eggs/
|
|
11
|
+
dist/
|
|
12
|
+
downloads/
|
|
13
|
+
eggs/
|
|
14
|
+
.eggs/
|
|
15
|
+
lib/
|
|
16
|
+
lib64/
|
|
17
|
+
parts/
|
|
18
|
+
sdist/
|
|
19
|
+
var/
|
|
20
|
+
wheels/
|
|
21
|
+
*.egg-info/
|
|
22
|
+
.installed.cfg
|
|
23
|
+
*.egg
|
|
24
|
+
|
|
25
|
+
# Virtual Environment
|
|
26
|
+
.env
|
|
27
|
+
.venv
|
|
28
|
+
env/
|
|
29
|
+
venv/
|
|
30
|
+
ENV/
|
|
31
|
+
uipath-env/
|
|
32
|
+
|
|
33
|
+
# IDE
|
|
34
|
+
.idea/
|
|
35
|
+
.vscode/
|
|
36
|
+
*.swp
|
|
37
|
+
*.swo
|
|
38
|
+
|
|
39
|
+
# Testing
|
|
40
|
+
.coverage
|
|
41
|
+
.pytest_cache/
|
|
42
|
+
htmlcov/
|
|
43
|
+
|
|
44
|
+
# Distribution
|
|
45
|
+
dist/
|
|
46
|
+
build/
|
|
47
|
+
*.egg-info/
|
uipath-1.1.1/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 Your Name
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
uipath-1.1.1/PKG-INFO
ADDED
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: uipath
|
|
3
|
+
Version: 1.1.1
|
|
4
|
+
Summary: A Python SDK for UiPath
|
|
5
|
+
Home-page: https://github.com/christianblandford/uipath
|
|
6
|
+
Author: Christian Blandford
|
|
7
|
+
Author-email: christianblandford@me.com
|
|
8
|
+
Keywords: uipath,rpa,robotic process automation,automation,robotics,orchestrator,process-automation,api-client,api-wrapper,uipath-api,uipath-orchestrator,workflow-automation
|
|
9
|
+
Classifier: Development Status :: 3 - Alpha
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
20
|
+
Requires-Python: >=3.7
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
License-File: LICENSE
|
|
23
|
+
Requires-Dist: requests>=2.25.0
|
|
24
|
+
Provides-Extra: dev
|
|
25
|
+
Requires-Dist: mkdocs-material; extra == "dev"
|
|
26
|
+
Requires-Dist: mkdocs-autorefs; extra == "dev"
|
|
27
|
+
Requires-Dist: mkdocstrings[python]; extra == "dev"
|
|
28
|
+
Dynamic: author
|
|
29
|
+
Dynamic: author-email
|
|
30
|
+
Dynamic: classifier
|
|
31
|
+
Dynamic: description
|
|
32
|
+
Dynamic: description-content-type
|
|
33
|
+
Dynamic: home-page
|
|
34
|
+
Dynamic: keywords
|
|
35
|
+
Dynamic: provides-extra
|
|
36
|
+
Dynamic: requires-dist
|
|
37
|
+
Dynamic: requires-python
|
|
38
|
+
Dynamic: summary
|
|
39
|
+
|
|
40
|
+
# 🤖 UiPath Python SDK
|
|
41
|
+
|
|
42
|
+
The most awesome Python SDK for UiPath Orchestrator! Automate all the things with simple Python code.
|
|
43
|
+
|
|
44
|
+
[](https://badge.fury.io/py/uipath)
|
|
45
|
+
[](https://christianblandford.github.io/uipath/)
|
|
46
|
+
|
|
47
|
+
## 🚀 Quick Install
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
pip install uipath
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
## ⚡ Quick Start
|
|
54
|
+
|
|
55
|
+
```python
|
|
56
|
+
from uipath import UiPathClient
|
|
57
|
+
|
|
58
|
+
# Connect to UiPath in just 3 lines! 🎉
|
|
59
|
+
client = UiPathClient(
|
|
60
|
+
organization_id="your_organization_id",
|
|
61
|
+
tenant_id="your_tenant_id",
|
|
62
|
+
client_id="your_client_id",
|
|
63
|
+
client_secret="your_client_secret"
|
|
64
|
+
)
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
## 🎯 Why Choose This SDK?
|
|
68
|
+
|
|
69
|
+
- 🔥 **Complete API Coverage** - Access everything UiPath Orchestrator offers
|
|
70
|
+
- 🎈 **Super Simple Interface** - Designed for humans, by humans
|
|
71
|
+
- 🛡️ **Type Hints** - Get awesome IDE support
|
|
72
|
+
- 📚 **Amazing Docs** - [Check them out here!](https://christianblandford.github.io/uipath/)
|
|
73
|
+
|
|
74
|
+
## 🎨 Features
|
|
75
|
+
|
|
76
|
+
Manage all your UiPath resources with Python:
|
|
77
|
+
|
|
78
|
+
- 🤖 Robots
|
|
79
|
+
- 📦 Packages
|
|
80
|
+
- 📋 Jobs
|
|
81
|
+
- 📁 Folders
|
|
82
|
+
- 🎮 Processes
|
|
83
|
+
- 🔑 Assets
|
|
84
|
+
- 📥 Queues
|
|
85
|
+
- 📚 Libraries
|
|
86
|
+
- 💻 Machines
|
|
87
|
+
- ...and more!
|
|
88
|
+
|
|
89
|
+
## 📖 Examples
|
|
90
|
+
|
|
91
|
+
### Managing Robots
|
|
92
|
+
|
|
93
|
+
```python
|
|
94
|
+
# List all your robot friends
|
|
95
|
+
robots = client.robots.get_all()
|
|
96
|
+
|
|
97
|
+
# Create a new robot buddy
|
|
98
|
+
new_robot = client.robots.create({
|
|
99
|
+
"Name": "Wall-E",
|
|
100
|
+
"Type": "Unattended",
|
|
101
|
+
"Username": "domain\\wall-e"
|
|
102
|
+
})
|
|
103
|
+
|
|
104
|
+
# Update robot status
|
|
105
|
+
client.robots.toggle_enabled(robot_id=123, enabled=True)
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
### Working with Queues
|
|
109
|
+
|
|
110
|
+
```python
|
|
111
|
+
# Add items to your queue
|
|
112
|
+
client.queues.add_queue_item(
|
|
113
|
+
queue_name="TPS_Reports",
|
|
114
|
+
reference="TPS-001",
|
|
115
|
+
priority="High",
|
|
116
|
+
specific_content={
|
|
117
|
+
"ReportNumber": "TPS-001",
|
|
118
|
+
"Urgent": True
|
|
119
|
+
}
|
|
120
|
+
)
|
|
121
|
+
|
|
122
|
+
# Process queue items
|
|
123
|
+
items = client.queues.get_queue_items(
|
|
124
|
+
queue_name="TPS_Reports",
|
|
125
|
+
status="New"
|
|
126
|
+
)
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
## 🔧 Configuration
|
|
130
|
+
|
|
131
|
+
```python
|
|
132
|
+
client = UiPathClient(
|
|
133
|
+
organization_id="org_id",
|
|
134
|
+
tenant_id="tenant_id",
|
|
135
|
+
client_id="client_id",
|
|
136
|
+
client_secret="shhh_its_a_secret",
|
|
137
|
+
base_url="https://cloud.uipath.com" # Optional
|
|
138
|
+
)
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
## 📚 Documentation
|
|
142
|
+
|
|
143
|
+
For full documentation, visit our [awesome docs page](https://christianblandford.github.io/uipath/)!
|
|
144
|
+
|
|
145
|
+
## 🤝 Contributing
|
|
146
|
+
|
|
147
|
+
We love contributions! Here's how:
|
|
148
|
+
|
|
149
|
+
1. 🍴 Fork it
|
|
150
|
+
2. 🌱 Create your feature branch (`git checkout -b feature/CoolFeature`)
|
|
151
|
+
3. 💾 Commit your changes (`git commit -m 'Add CoolFeature'`)
|
|
152
|
+
4. 📤 Push to the branch (`git push origin feature/CoolFeature`)
|
|
153
|
+
5. 🎁 Open a Pull Request
|
|
154
|
+
|
|
155
|
+
## 📝 License
|
|
156
|
+
|
|
157
|
+
MIT License - go wild! See [LICENSE](LICENSE) for more details.
|
|
158
|
+
|
|
159
|
+
## 💪 Support
|
|
160
|
+
|
|
161
|
+
Need help? We've got your back!
|
|
162
|
+
|
|
163
|
+
1. 📚 [Check out our docs](https://christianblandford.github.io/uipath/)
|
|
164
|
+
2. 🎫 [Open an issue](https://github.com/christianblandford/uipath/issues)
|
|
165
|
+
3. 💬 [Start a discussion](https://github.com/christianblandford/uipath/discussions)
|
|
166
|
+
|
|
167
|
+
## ⚡ Requirements
|
|
168
|
+
|
|
169
|
+
- Python 3.7+
|
|
170
|
+
- A love for automation! 🤖
|
|
171
|
+
|
|
172
|
+
## 📢 Disclaimer
|
|
173
|
+
|
|
174
|
+
This is an unofficial SDK created with ❤️ by the community. Not affiliated with UiPath Inc.
|
|
175
|
+
|
|
176
|
+
---
|
|
177
|
+
Made with 🦾 by developers, for developers
|
uipath-1.1.1/README.md
ADDED
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
# 🤖 UiPath Python SDK
|
|
2
|
+
|
|
3
|
+
The most awesome Python SDK for UiPath Orchestrator! Automate all the things with simple Python code.
|
|
4
|
+
|
|
5
|
+
[](https://badge.fury.io/py/uipath)
|
|
6
|
+
[](https://christianblandford.github.io/uipath/)
|
|
7
|
+
|
|
8
|
+
## 🚀 Quick Install
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
pip install uipath
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## ⚡ Quick Start
|
|
15
|
+
|
|
16
|
+
```python
|
|
17
|
+
from uipath import UiPathClient
|
|
18
|
+
|
|
19
|
+
# Connect to UiPath in just 3 lines! 🎉
|
|
20
|
+
client = UiPathClient(
|
|
21
|
+
organization_id="your_organization_id",
|
|
22
|
+
tenant_id="your_tenant_id",
|
|
23
|
+
client_id="your_client_id",
|
|
24
|
+
client_secret="your_client_secret"
|
|
25
|
+
)
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## 🎯 Why Choose This SDK?
|
|
29
|
+
|
|
30
|
+
- 🔥 **Complete API Coverage** - Access everything UiPath Orchestrator offers
|
|
31
|
+
- 🎈 **Super Simple Interface** - Designed for humans, by humans
|
|
32
|
+
- 🛡️ **Type Hints** - Get awesome IDE support
|
|
33
|
+
- 📚 **Amazing Docs** - [Check them out here!](https://christianblandford.github.io/uipath/)
|
|
34
|
+
|
|
35
|
+
## 🎨 Features
|
|
36
|
+
|
|
37
|
+
Manage all your UiPath resources with Python:
|
|
38
|
+
|
|
39
|
+
- 🤖 Robots
|
|
40
|
+
- 📦 Packages
|
|
41
|
+
- 📋 Jobs
|
|
42
|
+
- 📁 Folders
|
|
43
|
+
- 🎮 Processes
|
|
44
|
+
- 🔑 Assets
|
|
45
|
+
- 📥 Queues
|
|
46
|
+
- 📚 Libraries
|
|
47
|
+
- 💻 Machines
|
|
48
|
+
- ...and more!
|
|
49
|
+
|
|
50
|
+
## 📖 Examples
|
|
51
|
+
|
|
52
|
+
### Managing Robots
|
|
53
|
+
|
|
54
|
+
```python
|
|
55
|
+
# List all your robot friends
|
|
56
|
+
robots = client.robots.get_all()
|
|
57
|
+
|
|
58
|
+
# Create a new robot buddy
|
|
59
|
+
new_robot = client.robots.create({
|
|
60
|
+
"Name": "Wall-E",
|
|
61
|
+
"Type": "Unattended",
|
|
62
|
+
"Username": "domain\\wall-e"
|
|
63
|
+
})
|
|
64
|
+
|
|
65
|
+
# Update robot status
|
|
66
|
+
client.robots.toggle_enabled(robot_id=123, enabled=True)
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
### Working with Queues
|
|
70
|
+
|
|
71
|
+
```python
|
|
72
|
+
# Add items to your queue
|
|
73
|
+
client.queues.add_queue_item(
|
|
74
|
+
queue_name="TPS_Reports",
|
|
75
|
+
reference="TPS-001",
|
|
76
|
+
priority="High",
|
|
77
|
+
specific_content={
|
|
78
|
+
"ReportNumber": "TPS-001",
|
|
79
|
+
"Urgent": True
|
|
80
|
+
}
|
|
81
|
+
)
|
|
82
|
+
|
|
83
|
+
# Process queue items
|
|
84
|
+
items = client.queues.get_queue_items(
|
|
85
|
+
queue_name="TPS_Reports",
|
|
86
|
+
status="New"
|
|
87
|
+
)
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
## 🔧 Configuration
|
|
91
|
+
|
|
92
|
+
```python
|
|
93
|
+
client = UiPathClient(
|
|
94
|
+
organization_id="org_id",
|
|
95
|
+
tenant_id="tenant_id",
|
|
96
|
+
client_id="client_id",
|
|
97
|
+
client_secret="shhh_its_a_secret",
|
|
98
|
+
base_url="https://cloud.uipath.com" # Optional
|
|
99
|
+
)
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
## 📚 Documentation
|
|
103
|
+
|
|
104
|
+
For full documentation, visit our [awesome docs page](https://christianblandford.github.io/uipath/)!
|
|
105
|
+
|
|
106
|
+
## 🤝 Contributing
|
|
107
|
+
|
|
108
|
+
We love contributions! Here's how:
|
|
109
|
+
|
|
110
|
+
1. 🍴 Fork it
|
|
111
|
+
2. 🌱 Create your feature branch (`git checkout -b feature/CoolFeature`)
|
|
112
|
+
3. 💾 Commit your changes (`git commit -m 'Add CoolFeature'`)
|
|
113
|
+
4. 📤 Push to the branch (`git push origin feature/CoolFeature`)
|
|
114
|
+
5. 🎁 Open a Pull Request
|
|
115
|
+
|
|
116
|
+
## 📝 License
|
|
117
|
+
|
|
118
|
+
MIT License - go wild! See [LICENSE](LICENSE) for more details.
|
|
119
|
+
|
|
120
|
+
## 💪 Support
|
|
121
|
+
|
|
122
|
+
Need help? We've got your back!
|
|
123
|
+
|
|
124
|
+
1. 📚 [Check out our docs](https://christianblandford.github.io/uipath/)
|
|
125
|
+
2. 🎫 [Open an issue](https://github.com/christianblandford/uipath/issues)
|
|
126
|
+
3. 💬 [Start a discussion](https://github.com/christianblandford/uipath/discussions)
|
|
127
|
+
|
|
128
|
+
## ⚡ Requirements
|
|
129
|
+
|
|
130
|
+
- Python 3.7+
|
|
131
|
+
- A love for automation! 🤖
|
|
132
|
+
|
|
133
|
+
## 📢 Disclaimer
|
|
134
|
+
|
|
135
|
+
This is an unofficial SDK created with ❤️ by the community. Not affiliated with UiPath Inc.
|
|
136
|
+
|
|
137
|
+
---
|
|
138
|
+
Made with 🦾 by developers, for developers
|