Skip to content
This repository was archived by the owner on Sep 19, 2020. It is now read-only.

Latest commit

 

History

88 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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

About

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

Topics

Resources

Stars

2 stars

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors

Languages