Skip to content
This repository has been archived by the owner on Sep 19, 2020. It is now read-only.
/ circles.NET Public archive

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

License

Notifications You must be signed in to change notification settings

Game4all/circles.NET

Repository files navigation

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