Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 576 Bytes

File metadata and controls

26 lines (17 loc) · 576 Bytes

R34

Fully stolen from this.

Description

Simple C# realization of Rule34 API.

Using

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}");