https://github.com/vocadb/piapro-dotnet
Piapro client for .NET, able to download metadata about content posts
https://github.com/vocadb/piapro-dotnet
csharp dotnet html piapro vocadb vocaloid vocaloid-database
Last synced: 11 months ago
JSON representation
Piapro client for .NET, able to download metadata about content posts
- Host: GitHub
- URL: https://github.com/vocadb/piapro-dotnet
- Owner: VocaDB
- License: mit
- Created: 2013-11-03T17:59:14.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2022-05-17T22:18:07.000Z (about 4 years ago)
- Last Synced: 2025-01-08T08:52:41.245Z (over 1 year ago)
- Topics: csharp, dotnet, html, piapro, vocadb, vocaloid, vocaloid-database
- Language: HTML
- Homepage:
- Size: 127 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
piapro-dotnet
=============
[Piapro](https://piapro.jp/) client for .NET, able to download metadata about content posts.
Compatible with .NET Standard 2.0.
Since Piapro has no API, the client relies on HTML scraping.
### Features
* Piapro URL testing (whether a specific URL is a possible Piapro content post)
* Download post information
* Content type (currently only audio/illustration)
* Title
* Author's Piapro ID and nickname
* Upload date
* Artwork
* Length (for songs)
More features will be added as needed.
### Installing
```
PM> Install-Package VocaDb.PiaproClient
```
### Usage
#### Async
```csharp
var result = await new PiaproClient().ParseByUrlAsync("https://piapro.jp/t/0u5Z");
```
#### Synchronous
```csharp
var result = new PiaproClient().ParseByUrl("https://piapro.jp/t/0u5Z");
```