Skip to content

Commit 39adea4

Browse files
Merge pull request #243 from UiPath/chore/change-lib-name
chore: change project name
2 parents ae401c5 + fe4d03d commit 39adea4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+1315
-168
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ on:
77
- main
88
paths:
99
- "pyproject.toml"
10-
- "src/uipath_sdk/**"
10+
- "src/**"
1111
pull_request:
1212
branches:
1313
- main
1414
paths:
1515
- "pyproject.toml"
16-
- "src/uipath_sdk/**"
16+
- "src/**"
1717

1818
jobs:
1919
lint:

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ See `just --list` for linting, formatting and build commands.
3737
3. Obtain the project path `PATH_TO_SDK=/Users/YOU_USER/uipath-python`
3838
4. Install the sdk in editable mode `uv add --editable ${PATH_TO_SDK}`
3939

40-
:information_source: Instead of cloning the project into `.venv/lib/python3.9/site-packages/uipath_sdk`, this mode creates a file named `_uipath_sdk.pth` inside `.venv/lib/python3.9/site-packages`. This file contains the value of `PATH_TO_SDK`, which is added to `sys.path`—the list of directories where python searches for packages. (Run `python -c 'import sys; print(sys.path)'` to see the entries.)
40+
:information_source: Instead of cloning the project into `.venv/lib/python3.9/site-packages/uipath`, this mode creates a file named `_uipath.pth` inside `.venv/lib/python3.9/site-packages`. This file contains the value of `PATH_TO_SDK`, which is added to `sys.path`—the list of directories where python searches for packages. (Run `python -c 'import sys; print(sys.path)'` to see the entries.)
4141

4242
## API Style Guide
4343

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ UIPATH_ACCESS_TOKEN=YOUR_TOKEN_HERE
4848
## Basic Usage
4949

5050
```python
51-
from uipath_sdk import UiPathSDK
51+
from uipath import UiPath
5252
# Initialize the SDK
53-
sdk = UiPathSDK()
53+
sdk = UiPath()
5454
# Execute a process
5555
job = sdk.processes.invoke(
5656
name="MyProcess",

docs/assets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
::: uipath_sdk._services.assets_service
1+
::: uipath._services.assets_service

docs/buckets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
::: uipath_sdk._services.buckets_service
1+
::: uipath._services.buckets_service

docs/connections.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
::: uipath_sdk._services.connections_service
1+
::: uipath._services.connections_service

docs/context_grounding.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
::: uipath_sdk._services.context_grounding_service
1+
::: uipath._services.context_grounding_service

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Welcome to UiPath SDK
22

3-
::: uipath_sdk
3+
::: uipath

docs/jobs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
::: uipath_sdk._services.jobs_service
1+
::: uipath._services.jobs_service

docs/processes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
::: uipath_sdk._services.processes_service
1+
::: uipath._services.processes_service

0 commit comments

Comments
 (0)