MingweiSamuel.Camille 1.3.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package MingweiSamuel.Camille --version 1.3.0
NuGet\Install-Package MingweiSamuel.Camille -Version 1.3.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MingweiSamuel.Camille" Version="1.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MingweiSamuel.Camille --version 1.3.0
#r "nuget: MingweiSamuel.Camille, 1.3.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install MingweiSamuel.Camille as a Cake Addin
#addin nuget:?package=MingweiSamuel.Camille&version=1.3.0

// Install MingweiSamuel.Camille as a Cake Tool
#tool nuget:?package=MingweiSamuel.Camille&version=1.3.0

Camille

AppVeyor branch NuGet Stable NuGet Pre Release

C# Library for the Riot Games API

Camille's goals are speed and reliability. Camille handles rate limits and large requests seamlessly. Data classes are automatically generated from the Riot API Reference (Swagger).

Features

  • Fast, asynchronous, thread-safe
  • Automatically retries failed requests
  • Highly-configurable
  • Targets .NET Standard 1.1+ (.NET Core 1.0+, .NET Framework 4.5+)

Installation

Install via NuGet (MingweiSamuel.Camille).

Usage

All API interactions are done using a RiotApi instance. RiotApi.NewInstance takes either just an API key (for default settings) or a IRiotApiConfig instance (for custom settings).

var riotApi = RiotApi.NewInstance("RGAPI-12345678-abcd-1234-abcd-123456abcdef");
var riotApi = RiotApi.NewInstance(
    new RiotApiConfig.Builder("RGAPI-12345678-abcd-1234-abcd-123456abcdef")
    {
        MaxConcurrentRequests = 200,
        Retries = 10,
        // ...
    }.Build()
);

API methods are divided up into respective endpoints, corresponding to the left bar of the API reference.

Examples

// Get champion static data (for champion names).
// Note the LolStaticData endpoints have very low rate limits (10/hr).
var champs = riotApi.LolStaticData.GetChampionList(Region.NA, dataById: true).Data;

// Get summoners by name synchronously. (using async is faster).
var summoners = new[]
{
    riotApi.Summoner.GetBySummonerName(Region.NA, "c9 sneaky"),
    riotApi.Summoner.GetBySummonerName(Region.NA, "double LIFT")
};

foreach (var summoner in summoners)
{
    Console.WriteLine($"{summoner.Name}'s Top 10 Champs:");

    var masteries =
        riotApi.ChampionMastery.GetAllChampionMasteries(Region.NA, summoner.Id);

    for (var i = 0; i < 10; i++)
    {
        var mastery = masteries[i];
        // Get champion for this mastery.
        var champ = champs[mastery.ChampionId.ToString()];
        // print i, champ name, champ mastery points, and champ level
        Console.WriteLine("{0,3}) {1,-16} {2,7} ({3})", i + 1, champ.Name,
            mastery.ChampionPoints, mastery.ChampionLevel);
    }
    Console.WriteLine();
}

Output (2017-01-18):

C9 Sneaky's Top 10 Champs:
  1) Jhin             268,866 (7)
  2) Lucian           195,541 (7)
  3) Ezreal           146,950 (7)
  4) Ashe             144,269 (7)
  5) Caitlyn          139,390 (7)
  6) Sivir             84,331 (7)
  7) Twitch            82,702 (7)
  8) Vayne             80,733 (7)
  9) Tristana          75,150 (6)
 10) Miss Fortune      70,757 (7)

Doublelift's Top 10 Champs:
  1) Jhin             126,291 (7)
  2) Caitlyn           97,410 (7)
  3) Vayne             79,420 (7)
  4) Lucian            77,254 (7)
  5) Kalista           43,572 (5)
  6) Ashe              36,408 (7)
  7) Ezreal            35,754 (6)
  8) Twitch            33,169 (6)
  9) Kog'Maw           22,459 (5)
 10) Tristana          20,582 (4)
 
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp1.0 is compatible.  netcoreapp1.1 was computed.  netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard1.1 is compatible.  netstandard1.2 was computed.  netstandard1.3 was computed.  netstandard1.4 was computed.  netstandard1.5 was computed.  netstandard1.6 was computed.  netstandard2.0 was computed.  netstandard2.1 was computed. 
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen30 was computed.  tizen40 was computed.  tizen60 was computed. 
Universal Windows Platform uap was computed.  uap10.0 was computed. 
Windows Phone wpa81 was computed. 
Windows Store netcore was computed.  netcore45 was computed.  netcore451 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.9.1-nightly-2022-06-03-b5... 1,873 6/3/2022
2.9.1-nightly-2022-02-11-b5... 1,212 2/11/2022
2.9.1-nightly-2022-02-10-b5... 1,094 2/10/2022
2.9.1-nightly-2022-02-05-b5... 1,171 2/5/2022
2.9.1-nightly-2022-01-19-e5... 1,159 1/19/2022
2.9.1-nightly-2021-12-30-e5... 1,100 12/30/2021
2.9.1-nightly-2021-11-21-e5... 1,791 11/21/2021
2.9.1-nightly-2021-11-20-e5... 1,508 11/20/2021
2.9.1-nightly-2021-11-11-e5... 1,206 11/11/2021
2.9.1-nightly-2021-10-08-e5... 1,219 10/8/2021
2.9.1-nightly-2021-10-07-e5... 1,246 10/7/2021
2.9.1-nightly-2021-10-07-d1... 1,310 10/7/2021
2.8.1-nightly-2021-09-29-d1... 1,258 9/29/2021
2.8.1-nightly-2021-09-10-fc... 1,319 9/10/2021
2.8.1-nightly-2021-09-04-fc... 1,189 9/4/2021
2.8.1-nightly-2021-09-02-fc... 1,286 9/2/2021
2.8.1-nightly-2021-08-25-fc... 1,243 8/25/2021
2.8.1-nightly-2021-07-24-aa... 1,324 7/24/2021
2.8.1-nightly-2021-07-15-aa... 1,232 7/15/2021
2.8.1-nightly-2021-07-03-aa... 1,354 7/3/2021
2.8.1-nightly-2021-06-26-aa... 1,251 6/26/2021
2.8.1-nightly-2021-06-05-aa... 1,325 6/5/2021
2.8.1-nightly-2021-05-21-78... 1,258 5/21/2021
2.8.1-nightly-2021-05-20-78... 1,301 5/20/2021
2.8.1-nightly-2021-05-14-28... 1,249 5/14/2021
2.8.0 3,488 5/9/2021
2.7.3-nightly-2021-05-02-51... 1,282 5/2/2021
2.7.3-nightly-2021-04-30-51... 1,199 4/30/2021
2.7.3-nightly-2021-04-22-51... 1,224 4/22/2021
2.7.3-nightly-2021-04-15-51... 1,230 4/15/2021
2.7.3-nightly-2021-04-14-51... 1,212 4/14/2021
2.7.3-nightly-2021-04-03-51... 1,320 4/3/2021
2.7.3-nightly-2021-01-17-51... 1,395 1/17/2021
2.7.3-nightly-2021-01-14-51... 1,447 1/14/2021
2.7.3-nightly-2021-01-09-51... 1,391 1/9/2021
2.7.3-nightly-2021-01-07-51... 1,452 1/7/2021
2.7.2 1,838 12/12/2020
2.7.2-nightly-2020-11-12-31... 1,418 11/12/2020
2.7.2-nightly-2020-11-06-31... 1,496 11/6/2020
2.7.2-nightly-2020-11-02-31... 1,364 11/2/2020
2.7.1 1,778 11/1/2020
2.7.1-nightly-2020-10-07-31... 1,462 10/7/2020
2.7.1-nightly-2020-10-03-31... 1,393 10/3/2020
2.7.1-nightly-2020-10-02-31... 1,396 10/2/2020
2.7.1-nightly-2020-09-19-31... 1,453 9/19/2020
2.7.0 1,569 9/17/2020
2.6.4-nightly-2020-09-16-7b... 1,493 9/16/2020
2.6.4-nightly-2020-09-15-7b... 1,476 9/15/2020
2.6.3 1,663 9/2/2020
2.6.3-nightly-2020-09-02-7b... 1,500 9/2/2020
2.6.3-nightly-2020-09-01-7b... 1,472 9/1/2020
2.6.3-nightly-2020-08-27-b7... 1,428 8/27/2020
2.6.2 1,704 8/25/2020
2.6.2-nightly-2020-08-04-43... 1,358 8/4/2020
2.6.2-nightly-2020-07-31-43... 1,490 7/31/2020
2.6.2-nightly-2020-07-30-43... 1,496 7/30/2020
2.6.2-nightly-2020-07-27-43... 1,475 7/27/2020
2.6.2-nightly-2020-07-24-43... 1,392 7/24/2020
2.6.2-nightly-2020-07-23-43... 1,453 7/23/2020
2.6.1 2,457 7/23/2020
2.6.1-nightly-2020-07-17-42... 1,527 7/17/2020
2.6.1-nightly-2020-07-14-42... 1,427 7/14/2020
2.6.0 1,567 7/12/2020
2.5.3-nightly-2020-07-12-42... 1,433 7/12/2020
2.5.3-nightly-2020-05-12-d1... 1,489 5/12/2020
2.5.3-nightly-2020-05-11-3a... 1,478 5/11/2020
2.5.3-nightly-2020-04-16-41... 1,460 5/5/2020
2.5.2 1,740 5/4/2020
2.5.2-nightly-2020-04-16-41... 1,473 4/17/2020
2.5.2-nightly-2020-04-14-da... 1,432 4/16/2020
2.5.1 1,561 4/14/2020
2.5.0 1,583 4/13/2020
2.4.2-nightly-2020-04-14-da... 1,403 4/14/2020
2.4.2-nightly-2020-02-18-01... 1,572 2/18/2020
2.4.2-nightly-2020-02-12-1e... 1,488 2/12/2020
2.4.1 1,782 11/5/2019
2.4.1-nightly-2019-11-05-d3... 1,487 11/5/2019
2.4.0 1,644 10/31/2019
2.3.1-nightly-2019-10-31-7f... 1,534 10/31/2019
2.3.1-nightly-2019-10-16-f4... 1,429 10/17/2019
2.3.1-nightly-2019-10-11-0b... 1,468 10/12/2019
2.3.0 1,694 10/11/2019
2.2.3-nightly-2019-10-08-e3... 1,822 10/10/2019
2.2.3-nightly-2019-09-27-64... 1,890 9/27/2019
2.2.3-nightly-2019-08-29-43... 1,968 8/30/2019
2.2.2 2,275 8/29/2019
2.2.2-nightly-2019-08-14-2d... 1,818 8/14/2019
2.2.2-nightly-2019-08-05-2e... 1,792 8/5/2019
2.2.2-nightly-2019-07-09-07... 1,957 7/9/2019
2.2.1 2,216 7/2/2019
2.2.1-nightly-2019-07-02-c9... 1,854 7/2/2019
2.2.1-nightly-2019-05-23-29... 2,067 5/23/2019
2.2.0 2,550 2/7/2019
2.2.0-nightly-2019-04-08-4d... 1,882 4/8/2019
2.2.0-nightly-2019-03-08-2d... 1,890 3/8/2019
2.2.0-nightly-2019-03-05-f6... 1,926 3/5/2019
2.2.0-nightly-2019-02-19-13... 2,005 2/19/2019
2.1.0 2,339 1/27/2019
2.0.0 2,232 12/16/2018
2.0.0-nightly-2019-01-17-9f... 2,070 1/17/2019
2.0.0-alpha-nightly-2018-12... 1,801 12/16/2018
2.0.0-alpha-nightly-2018-12... 1,898 12/16/2018
1.3.0 2,650 7/14/2018
1.3.0-nightly-2018-07-14-7c... 2,289 7/14/2018
1.2.0 2,560 6/2/2018
1.2.0-nightly-2018-07-14-b1... 2,251 7/14/2018
1.2.0-nightly-2018-06-06-2c... 2,262 6/6/2018
1.2.0-nightly-2018-06-06-28... 2,178 6/6/2018
1.2.0-nightly-2018-06-02-98... 2,155 6/3/2018
1.1.0 2,588 2/27/2018
1.1.0-nightly-2018-06-02-17... 2,252 6/2/2018
1.1.0-nightly-2018-02-23-7e... 2,262 2/23/2018
1.0.1 2,707 2/8/2018
1.0.1-nightly-2018-02-16-b9... 2,351 2/16/2018
1.0.1-nightly-2018-02-15-13... 2,357 2/15/2018
1.0.1-nightly-2018-02-14-46... 2,226 2/14/2018
1.0.1-nightly-2018-02-08-97... 2,370 2/8/2018
1.0.0 2,019 1/16/2018
1.0.0-nightly-b24c77881a 1,900 1/16/2018
1.0.0-nightly-986e3393a4 1,986 1/18/2018
1.0.0-nightly-2018-02-08-f0... 2,445 2/8/2018

Adding CancellationTokens