Skip to content

Commit c758763

Browse files
committed
Update Readme.md
1 parent e4203b5 commit c758763

File tree

1 file changed

+38
-4
lines changed

1 file changed

+38
-4
lines changed

Readme.md

Lines changed: 38 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ alt="follow on Twitter"></a>
88

99
# 🍫Description
1010

11-
Jupyter Forge is a powerful library that seamlessly integrates Autodesk Platform Services with Jupyter Notebooks, enabling interactive 3D viewing and exploration within your notebook environment.
11+
Jupyter Forge is a powerful library that seamlessly integrates [Autodesk Platform Services](https://aps.autodesk.com/) with [Jupyter Notebooks](https://jupyter.org/), enabling interactive 3D viewing and exploration within your notebook environment.
1212

1313
![](./docs/quick-demo.gif)
1414

1515
# ⚡Features
1616

17-
- [x] Show 3d viewer from Autodesk Platform Services
18-
- [x] Show 3d viewer from Autodesk Platform Services with object ids
19-
- [x] Show 3d viewer from Autodesk Platform Services with object ids and ajust width and height
17+
- [x] Show 3d viewer from [Autodesk Platform Services](https://aps.autodesk.com/)
18+
- [x] Show 3d viewer from [Autodesk Platform Services](https://aps.autodesk.com/) with object ids
19+
- [x] Show 3d viewer from [Autodesk Platform Services](https://aps.autodesk.com/) with object ids and ajust width and height
2020
- [x] Zoom In, Zoom Out, Pan, Isolate,
2121
- [x] Clustering Viewer
2222

@@ -80,6 +80,40 @@ please feel free to fork and submit a pull request.
8080

8181
Thanks [JetBrains](https://www.jetbrains.com/) for providing a free All product IDE for this project.
8282

83+
## Q&A
84+
85+
<details><summary>How can I get URN input?</summary>
86+
87+
1. You can use `aps-toolkit` library to get URN of the item latest version.
88+
89+
```python
90+
from aps_toolkit import *
91+
92+
token = Auth().auth2leg()
93+
bim360 = BIM360(token)
94+
urn = bim360.get_latest_derivative_urn("<project_id>", "<folder_id>")
95+
```
96+
97+
2. You can batch report urn to dataframe from BIM360 class in `aps-toolkit` library.
98+
99+
```python
100+
from aps_toolkit import BIM360
101+
from aps_toolkit import Auth
102+
103+
token = Auth().auth3leg()
104+
bim360 = BIM360(token)
105+
df = bim360.batch_report_items("<project_id>", "<folder_id>", ['.rvt'], is_sub_folder=False)
106+
```
107+
108+
</details>
109+
110+
## Knowledge
111+
112+
- [Autodesk Platform Services](https://aps.autodesk.com/)
113+
- [Jupyter Notebook](https://jupyter.org/)
114+
- [Understand About Derivative Urn APS](https://chuongmep.com/posts/2023-12-28-Derivative-Urn-Forge.html#but-wrong-urn)
115+
- [Easy To Snoop Info Item From ACC](https://chuongmep.com/posts/2024-04-02-APS-ACC-URN.html#how-to-get-urn-from-acc)
116+
83117
## Developers
84118

85119
#### Test Data Readme

0 commit comments

Comments
 (0)