https://github.com/katy248/r34-api
C# wrapper for rule34.xxx API
https://github.com/katy248/r34-api
Last synced: 3 months ago
JSON representation
C# wrapper for rule34.xxx API
- Host: GitHub
- URL: https://github.com/katy248/r34-api
- Owner: Katy248
- Created: 2022-12-05T22:40:07.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-09-28T13:37:57.000Z (over 1 year ago)
- Last Synced: 2025-01-21T18:48:44.041Z (4 months ago)
- Language: C#
- Homepage:
- Size: 66.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# R34
Fully stolen from [this][sourse_rep].
## Description
Simple C# realization of [Rule34 API][site].
## Using
```c#
using R34;var r34 = new Rule34();
var posts = r34.Search(new string[] { "sex", "boobs", "naked_woman" }, 1, 12);
foreach (var post in posts)
Console.WriteLine($" Post Id: {post.Id}; File url: {post.FileUrl};");var comments = r34.GetComments(7086496);
foreach (var comment in comments)
Console.WriteLine($"Comment ID: {comment.Id}; Body:\n{comment.Body}");
```[sourse_rep]: https://github.com/b3yc0d3/rule34Py
[site]: https://rule34.xxx