Skip to content

Commit

Permalink
Update Readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
chuongmep committed Feb 27, 2024
1 parent 901d4f1 commit 302d622
Showing 1 changed file with 20 additions and 5 deletions.
25 changes: 20 additions & 5 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
<img src="https://img.shields.io/twitter/follow/chuongmep?style=social&logo=twitter"
alt="follow on Twitter"></a>

## APS Toolkit
## 🔩 APS Toolkit

APS Toolkit (Former is Forge) is powerful for you to explore `Autodesk Platform Services`(APS). It's built on top of [Autodesk.Forge](https://www.nuget.org/packages/Autodesk.Forge/) and [Newtonsoft.Json](https://www.nuget.org/packages/Newtonsoft.Json/). Forge Toolkit includes some features allow you to read, download and write data from `Autodesk Platform Services` and export to CSV, Excel, JSON, XML, etc.

![APSToolkit](docs/APSToolkit.png)

## Features
## Features

- [x] Read/Download SVF Model
- [x] Read/Query Properties Database SQLite
Expand All @@ -30,7 +30,7 @@ APS Toolkit (Former is Forge) is powerful for you to explore `Autodesk Platform
- [x] Export Data to Excel
- [x] Export Data to Parquet

## Installation
## Installation

Please follow latest update at [APSToolkit Nuget](https://www.nuget.org/packages/APSToolkit)

Expand All @@ -46,7 +46,22 @@ APS_CLIENT_SECRET = <your client secret>
APS_REFRESH_TOKEN = <your refresh token>
```

## Tutorials
## ⭐ Getting Started

I want export Revit Data To Csv 👇

```csharp
using APSToolkit;
using Autodesk.Forge;
using APSToolkit.Database;
using APSToolkit.Auth;
var token = Authentication.Get2LeggedToken().Result;
string urn = "dXJuOmFkc2sud2lwcHJvZDpmcy5maWxlOnZmLk9kOHR4RGJLU1NlbFRvVmcxb2MxVkE_dmVyc2lvbj0z";
var RevitPropDbReader = new PropDbReaderRevit(urn, token);
RevitPropDbReader.ExportAllDataToExcel("result.xlsx");
```

## 📚 Tutorials

All Tutorials are available under Jupyter Notebook at [Tutorials](./docs/Tutorials)

Expand Down Expand Up @@ -77,7 +92,7 @@ Many thanks some repos:
- [UnityForgeImporter](https://github.com/chuongmep/UnityForgeImporter)
- [forge-bucketsmanager-desktop](https://github.com/Autodesk-Forge/forge-bucketsmanager-desktop)

## Contributing
## 👨‍🏫 Contributing

Please read [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduct, and the process for submitting pull requests to us.

Expand Down

0 comments on commit 302d622

Please sign in to comment.