/circles.NET

An asynchronous .NET Standard api wrapper for the osu! api

Primary LanguageC#The UnlicenseUnlicense

circles.NET

An asynchronous .NET Standard wrapper for the osu! api
Nuget

Get Started

using circles.NET;

class SampleProgram
    {
        static async Task Main(string[] args)
        {
            //Getting user information on Cookieizi
            var x = new CirclesAPIClient("<YOUR API KEY HERE>");
            var user = x.GetUsersAsync("Cookiezi");

            foreach (var field in typeof(APIUser).GetProperties())
            {
                Console.WriteLine($"{field.Name}: {field.GetValue(user[0])}");
            }
            Console.ReadLine();
        }
    }

Documentation

Markdown documentation avalaible