uipathlib 0.0.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.
- uipathlib-0.0.1/LICENSE +28 -0
- uipathlib-0.0.1/MANIFEST.in +2 -0
- uipathlib-0.0.1/PKG-INFO +84 -0
- uipathlib-0.0.1/README.md +60 -0
- uipathlib-0.0.1/pyproject.toml +38 -0
- uipathlib-0.0.1/setup.cfg +4 -0
- uipathlib-0.0.1/uipathlib/__init__.py +3 -0
- uipathlib-0.0.1/uipathlib/__main__.py +7 -0
- uipathlib-0.0.1/uipathlib/uipath.py +5 -0
- uipathlib-0.0.1/uipathlib.egg-info/PKG-INFO +84 -0
- uipathlib-0.0.1/uipathlib.egg-info/SOURCES.txt +12 -0
- uipathlib-0.0.1/uipathlib.egg-info/dependency_links.txt +1 -0
- uipathlib-0.0.1/uipathlib.egg-info/requires.txt +2 -0
- uipathlib-0.0.1/uipathlib.egg-info/top_level.txt +1 -0
uipathlib-0.0.1/LICENSE
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
BSD 3-Clause License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025, ≀Paulo Portela
|
|
4
|
+
|
|
5
|
+
Redistribution and use in source and binary forms, with or without
|
|
6
|
+
modification, are permitted provided that the following conditions are met:
|
|
7
|
+
|
|
8
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
9
|
+
list of conditions and the following disclaimer.
|
|
10
|
+
|
|
11
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
12
|
+
this list of conditions and the following disclaimer in the documentation
|
|
13
|
+
and/or other materials provided with the distribution.
|
|
14
|
+
|
|
15
|
+
3. Neither the name of the copyright holder nor the names of its
|
|
16
|
+
contributors may be used to endorse or promote products derived from
|
|
17
|
+
this software without specific prior written permission.
|
|
18
|
+
|
|
19
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
20
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
21
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
22
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
23
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
24
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
25
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
26
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
27
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
28
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
uipathlib-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: uipathlib
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: UiPath Cloud client Python package that uses the requests library
|
|
5
|
+
Author-email: Paulo Portela <portela.paulo@gmail.com>
|
|
6
|
+
Maintainer-email: Paulo Portela <portela.paulo@gmail.com>
|
|
7
|
+
License-Expression: BSD-3-Clause
|
|
8
|
+
Project-URL: Homepage, https://github.com/aghuttun/uipathlib
|
|
9
|
+
Project-URL: Documentation, https://github.com/aghuttun/uipathlib/blob/main/README.md
|
|
10
|
+
Keywords: UiPath,RPA,Python,API
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
12
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
15
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
16
|
+
Classifier: Operating System :: MacOS
|
|
17
|
+
Classifier: Operating System :: MacOS :: MacOS X
|
|
18
|
+
Requires-Python: >=3.10
|
|
19
|
+
Description-Content-Type: text/markdown
|
|
20
|
+
License-File: LICENSE
|
|
21
|
+
Requires-Dist: requests>=2.0
|
|
22
|
+
Requires-Dist: pydantic~=1.0
|
|
23
|
+
Dynamic: license-file
|
|
24
|
+
|
|
25
|
+
# uipathlib
|
|
26
|
+
|
|
27
|
+
* [Description](#package-description)
|
|
28
|
+
* [Usage](#usage)
|
|
29
|
+
* [Installation](#installation)
|
|
30
|
+
* [License](#license)
|
|
31
|
+
|
|
32
|
+
## Package Description
|
|
33
|
+
|
|
34
|
+
UiPath Cloud client Python package that uses the [requests](https://pypi.org/project/requests/) library.
|
|
35
|
+
|
|
36
|
+
> [!IMPORTANT]
|
|
37
|
+
> This packages uses pydantic~=1.0!
|
|
38
|
+
|
|
39
|
+
## Usage
|
|
40
|
+
|
|
41
|
+
* [uipathlib](#uipathlib)
|
|
42
|
+
|
|
43
|
+
from a script:
|
|
44
|
+
|
|
45
|
+
```python
|
|
46
|
+
import uipathlib
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
## Installation
|
|
50
|
+
|
|
51
|
+
* [uipathlib](#uipathlib)
|
|
52
|
+
|
|
53
|
+
Install python and pip if you have not already.
|
|
54
|
+
|
|
55
|
+
Then run:
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
pip3 install pip --upgrade
|
|
59
|
+
pip3 install wheel
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
For production:
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
pip3 install uipathlib
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
This will install the package and all of it's python dependencies.
|
|
69
|
+
|
|
70
|
+
If you want to install the project for development:
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
git clone https://github.com/aghuttun/uipathlib.git
|
|
74
|
+
cd uipathlib
|
|
75
|
+
pip3 install -e .[dev]
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
To test the development package: [Testing](#testing)
|
|
79
|
+
|
|
80
|
+
## License
|
|
81
|
+
|
|
82
|
+
* [uipathlib](#uipathlib)
|
|
83
|
+
|
|
84
|
+
BSD License (see license file)
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# uipathlib
|
|
2
|
+
|
|
3
|
+
* [Description](#package-description)
|
|
4
|
+
* [Usage](#usage)
|
|
5
|
+
* [Installation](#installation)
|
|
6
|
+
* [License](#license)
|
|
7
|
+
|
|
8
|
+
## Package Description
|
|
9
|
+
|
|
10
|
+
UiPath Cloud client Python package that uses the [requests](https://pypi.org/project/requests/) library.
|
|
11
|
+
|
|
12
|
+
> [!IMPORTANT]
|
|
13
|
+
> This packages uses pydantic~=1.0!
|
|
14
|
+
|
|
15
|
+
## Usage
|
|
16
|
+
|
|
17
|
+
* [uipathlib](#uipathlib)
|
|
18
|
+
|
|
19
|
+
from a script:
|
|
20
|
+
|
|
21
|
+
```python
|
|
22
|
+
import uipathlib
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Installation
|
|
26
|
+
|
|
27
|
+
* [uipathlib](#uipathlib)
|
|
28
|
+
|
|
29
|
+
Install python and pip if you have not already.
|
|
30
|
+
|
|
31
|
+
Then run:
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
pip3 install pip --upgrade
|
|
35
|
+
pip3 install wheel
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
For production:
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
pip3 install uipathlib
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
This will install the package and all of it's python dependencies.
|
|
45
|
+
|
|
46
|
+
If you want to install the project for development:
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
git clone https://github.com/aghuttun/uipathlib.git
|
|
50
|
+
cd uipathlib
|
|
51
|
+
pip3 install -e .[dev]
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
To test the development package: [Testing](#testing)
|
|
55
|
+
|
|
56
|
+
## License
|
|
57
|
+
|
|
58
|
+
* [uipathlib](#uipathlib)
|
|
59
|
+
|
|
60
|
+
BSD License (see license file)
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "uipathlib"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
requires-python = ">=3.10"
|
|
9
|
+
description = "UiPath Cloud client Python package that uses the requests library"
|
|
10
|
+
readme = "README.md"
|
|
11
|
+
authors = [
|
|
12
|
+
{ name = "Paulo Portela", email = "portela.paulo@gmail.com" }
|
|
13
|
+
]
|
|
14
|
+
maintainers = [
|
|
15
|
+
{name = "Paulo Portela", email = "portela.paulo@gmail.com" }
|
|
16
|
+
]
|
|
17
|
+
license = "BSD-3-Clause"
|
|
18
|
+
license-files = ["LICEN[CS]E*"]
|
|
19
|
+
keywords = [
|
|
20
|
+
"UiPath", "RPA", "Python", "API"
|
|
21
|
+
]
|
|
22
|
+
classifiers = [
|
|
23
|
+
"Programming Language :: Python :: 3.10",
|
|
24
|
+
"Programming Language :: Python :: Implementation :: CPython",
|
|
25
|
+
"Intended Audience :: Developers",
|
|
26
|
+
"Operating System :: POSIX :: Linux",
|
|
27
|
+
"Operating System :: Microsoft :: Windows",
|
|
28
|
+
"Operating System :: MacOS",
|
|
29
|
+
"Operating System :: MacOS :: MacOS X",
|
|
30
|
+
]
|
|
31
|
+
dependencies = [
|
|
32
|
+
"requests>=2.0",
|
|
33
|
+
"pydantic~=1.0"
|
|
34
|
+
]
|
|
35
|
+
|
|
36
|
+
[project.urls]
|
|
37
|
+
Homepage = "https://github.com/aghuttun/uipathlib"
|
|
38
|
+
Documentation = "https://github.com/aghuttun/uipathlib/blob/main/README.md"
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: uipathlib
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: UiPath Cloud client Python package that uses the requests library
|
|
5
|
+
Author-email: Paulo Portela <portela.paulo@gmail.com>
|
|
6
|
+
Maintainer-email: Paulo Portela <portela.paulo@gmail.com>
|
|
7
|
+
License-Expression: BSD-3-Clause
|
|
8
|
+
Project-URL: Homepage, https://github.com/aghuttun/uipathlib
|
|
9
|
+
Project-URL: Documentation, https://github.com/aghuttun/uipathlib/blob/main/README.md
|
|
10
|
+
Keywords: UiPath,RPA,Python,API
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
12
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
15
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
16
|
+
Classifier: Operating System :: MacOS
|
|
17
|
+
Classifier: Operating System :: MacOS :: MacOS X
|
|
18
|
+
Requires-Python: >=3.10
|
|
19
|
+
Description-Content-Type: text/markdown
|
|
20
|
+
License-File: LICENSE
|
|
21
|
+
Requires-Dist: requests>=2.0
|
|
22
|
+
Requires-Dist: pydantic~=1.0
|
|
23
|
+
Dynamic: license-file
|
|
24
|
+
|
|
25
|
+
# uipathlib
|
|
26
|
+
|
|
27
|
+
* [Description](#package-description)
|
|
28
|
+
* [Usage](#usage)
|
|
29
|
+
* [Installation](#installation)
|
|
30
|
+
* [License](#license)
|
|
31
|
+
|
|
32
|
+
## Package Description
|
|
33
|
+
|
|
34
|
+
UiPath Cloud client Python package that uses the [requests](https://pypi.org/project/requests/) library.
|
|
35
|
+
|
|
36
|
+
> [!IMPORTANT]
|
|
37
|
+
> This packages uses pydantic~=1.0!
|
|
38
|
+
|
|
39
|
+
## Usage
|
|
40
|
+
|
|
41
|
+
* [uipathlib](#uipathlib)
|
|
42
|
+
|
|
43
|
+
from a script:
|
|
44
|
+
|
|
45
|
+
```python
|
|
46
|
+
import uipathlib
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
## Installation
|
|
50
|
+
|
|
51
|
+
* [uipathlib](#uipathlib)
|
|
52
|
+
|
|
53
|
+
Install python and pip if you have not already.
|
|
54
|
+
|
|
55
|
+
Then run:
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
pip3 install pip --upgrade
|
|
59
|
+
pip3 install wheel
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
For production:
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
pip3 install uipathlib
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
This will install the package and all of it's python dependencies.
|
|
69
|
+
|
|
70
|
+
If you want to install the project for development:
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
git clone https://github.com/aghuttun/uipathlib.git
|
|
74
|
+
cd uipathlib
|
|
75
|
+
pip3 install -e .[dev]
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
To test the development package: [Testing](#testing)
|
|
79
|
+
|
|
80
|
+
## License
|
|
81
|
+
|
|
82
|
+
* [uipathlib](#uipathlib)
|
|
83
|
+
|
|
84
|
+
BSD License (see license file)
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
MANIFEST.in
|
|
3
|
+
README.md
|
|
4
|
+
pyproject.toml
|
|
5
|
+
uipathlib/__init__.py
|
|
6
|
+
uipathlib/__main__.py
|
|
7
|
+
uipathlib/uipath.py
|
|
8
|
+
uipathlib.egg-info/PKG-INFO
|
|
9
|
+
uipathlib.egg-info/SOURCES.txt
|
|
10
|
+
uipathlib.egg-info/dependency_links.txt
|
|
11
|
+
uipathlib.egg-info/requires.txt
|
|
12
|
+
uipathlib.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
uipathlib
|