Camille.Enums 3.0.0-nightly-2024-04-10-3150c5f593

This is a prerelease version of Camille.Enums.
dotnet add package Camille.Enums --version 3.0.0-nightly-2024-04-10-3150c5f593
NuGet\Install-Package Camille.Enums -Version 3.0.0-nightly-2024-04-10-3150c5f593
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="Camille.Enums" Version="3.0.0-nightly-2024-04-10-3150c5f593" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Camille.Enums --version 3.0.0-nightly-2024-04-10-3150c5f593
#r "nuget: Camille.Enums, 3.0.0-nightly-2024-04-10-3150c5f593"
#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 Camille.Enums as a Cake Addin
#addin nuget:?package=Camille.Enums&version=3.0.0-nightly-2024-04-10-3150c5f593&prerelease

// Install Camille.Enums as a Cake Tool
#tool nuget:?package=Camille.Enums&version=3.0.0-nightly-2024-04-10-3150c5f593&prerelease

Camille

Github Actions NuGet Stable NuGet Pre Release API Reference

C# Library for the Riot Games API

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

Features

  • Fast, asynchronous, thread-safe.
  • Automatically retries failed requests.
  • Automatic up-to-date nightlies, reflecting Riot API changes within 24 hours.
  • Multi-targeted: .NET Standard 1.1+, .NET Framework 4.5+, .NET Core 2.0, .NET Standard 2.1+, .NET Core 3.0+.
  • Highly-configurable.
  • Riot API LOL-V4, TFT, LOR support.
  • C# 8 nullable support.

Installation

Install via NuGet (Camille.RiotGames).

Type the following in the package manager console:

Install-Package Camille.RiotGames -IncludePrerelease

Or use the .NET CLI:

dotnet add package Camille.RiotGames --prerelease

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).

using Camille.Enums;
using Camille.RiotGames;
var riotApi = RiotGamesApi.NewInstance("RGAPI-12345678-abcd-1234-abcd-123456abcdef");
// OR
var riotApi = RiotGamesApi.NewInstance(
    new RiotGamesApiConfig.Builder("RGAPI-12345678-abcd-1234-abcd-123456abcdef")
    {
        MaxConcurrentRequests = 200,
        Retries = 10,
        // ...
    }.Build()
);

You can find all configuration options here.

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

Example

// Get summoners by name synchronously. (Note: async is faster as it allows simultaneous requests).
var summoners = new[]
{
    riotApi.SummonerV4().GetBySummonerName(PlatformRoute.NA1, "jAnna kendrick"),
    riotApi.SummonerV4().GetBySummonerName(PlatformRoute.NA1, "lug nuts k")
};

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

    var masteries =
        riotApi.ChampionMasteryV4().GetAllChampionMasteriesByPUUID(PlatformRoute.NA1, summoner.Puuid);

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

Output (2022-01-17):

Janna Kendrick's Top 10 Champs:
  1) EKKO              1,803,701 (7)
  2) PYKE                266,410 (7)
  3) SYLAS               193,439 (7)
  4) MASTERYI            134,140 (7)
  5) MORDEKAISER         127,937 (7)
  6) YASUO                93,904 (7)
  7) VIEGO                88,267 (7)
  8) AHRI                 82,106 (7)
  9) JINX                 76,788 (6)
 10) POPPY                74,982 (7)
    
LugnutsK's Top 10 Champs:
  1) ZYRA                841,132 (7)
  2) SORAKA               81,793 (6)
  3) MORGANA              62,917 (5)
  4) SONA                 55,073 (6)
  5) NAMI                 49,917 (6)
  6) JANNA                46,563 (5)
  7) BRAND                46,401 (5)
  8) TARIC                41,302 (6)
  9) EKKO                 40,245 (5)
 10) POPPY                33,859 (5)

API Reference

Automatically generated API Reference

Source Code

Projects are located in src/.

Generated Classes

The majority of the code in Camille is automatically generated. The generated sources are not commited to the master branch, but can be viewed in the gh-pages branch or when building locally.

The actual code for generating these classes is in the srcgen folder. The C#-generating code is in *.cs.dt files and is written in NodeJS, using doT.js templates.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  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 is compatible.  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 netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 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 (5)

Showing the top 5 NuGet packages that depend on Camille.Enums:

Package Downloads
Camille.Lcu

League of Legends Client Update API Library.

MikaelDui.RiotGames.Client

An unofficial .NET client for Riot Games and their games League of Legends, Legends of Runeterra, Teamfight Tactics and Valorant.

Camille.RiotGames

Riot Games API library. Fully rate limited, automatic retrying, thread-safe. Up-to-date nightlies.

Camille.RiotApi

Riot Games API library. Fully rate limited, automatic retrying, thread-safe. V4 Supported.

Camille.LolGame

League of Legends Live (In-Game) Client Data API library

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.0-nightly-2024-04-10-31... 78 4/10/2024
3.0.0-nightly-2024-04-04-7d... 51 4/4/2024
3.0.0-nightly-2024-04-03-7d... 57 4/3/2024
3.0.0-nightly-2024-03-25-7d... 69 3/25/2024
3.0.0-nightly-2024-03-24-7d... 52 3/24/2024
3.0.0-nightly-2024-03-13-9d... 107 3/13/2024
3.0.0-nightly-2024-03-08-85... 81 3/8/2024
3.0.0-nightly-2024-03-05-85... 119 3/5/2024
3.0.0-nightly-2024-02-17-85... 130 2/17/2024
3.0.0-nightly-2024-02-07-85... 103 2/7/2024
3.0.0-nightly-2024-01-20-de... 76 1/20/2024
3.0.0-nightly-2024-01-15-de... 65 1/15/2024
3.0.0-nightly-2024-01-04-95... 106 1/4/2024
3.0.0-nightly-2024-01-04-67... 72 1/4/2024
3.0.0-nightly-2023-12-06-6d... 118 12/6/2023
3.0.0-nightly-2023-11-28-6d... 66 11/28/2023
3.0.0-nightly-2023-11-24-6d... 76 11/24/2023
3.0.0-nightly-2023-11-21-6d... 68 11/21/2023
3.0.0-nightly-2023-11-16-6d... 582 11/16/2023
3.0.0-nightly-2023-11-15-6d... 56 11/15/2023
3.0.0-nightly-2023-11-11-6d... 175 11/11/2023
3.0.0-nightly-2023-10-18-6d... 133 10/18/2023
3.0.0-nightly-2023-10-17-0d... 71 10/17/2023
3.0.0-nightly-2023-10-11-9f... 360 10/11/2023
3.0.0-nightly-2023-09-23-9f... 217 9/23/2023
3.0.0-nightly-2023-09-12-9f... 371 9/12/2023
3.0.0-nightly-2023-09-05-9f... 117 9/5/2023
3.0.0-nightly-2023-08-27-1f... 372 8/27/2023
3.0.0-nightly-2022-10-18-9e... 2,521 10/18/2022
3.0.0-nightly-2022-09-22-9e... 233 9/22/2022
3.0.0-nightly-2022-09-06-9e... 313 9/6/2022
3.0.0-nightly-2022-09-01-9e... 128 9/1/2022
3.0.0-nightly-2022-08-16-9e... 206 8/16/2022
3.0.0-nightly-2022-08-04-9e... 198 8/4/2022
3.0.0-nightly-2022-07-20-9e... 200 7/20/2022
3.0.0-nightly-2022-06-30-9e... 281 6/30/2022
3.0.0-nightly-2022-06-25-9e... 148 6/25/2022
3.0.0-nightly-2022-06-22-a6... 128 6/22/2022
3.0.0-nightly-2022-06-20-a6... 121 6/20/2022
3.0.0-nightly-2022-05-26-9f... 336 5/26/2022
3.0.0-nightly-2022-05-20-9f... 187 5/20/2022
3.0.0-nightly-2022-04-12-9f... 446 4/12/2022
3.0.0-nightly-2022-03-03-9f... 356 3/3/2022
3.0.0-nightly-2022-02-11-9c... 309 2/11/2022
3.0.0-nightly-2022-01-19-e2... 416 1/19/2022
3.0.0-nightly-2021-12-30-6d... 402 12/30/2021
3.0.0-nightly-2021-11-20-c5... 500 11/20/2021
3.0.0-nightly-2021-11-20-93... 512 11/20/2021
3.0.0-nightly-2021-11-11-93... 161 11/11/2021
3.0.0-nightly-2021-10-24-93... 198 10/24/2021
3.0.0-nightly-2021-10-24-5b... 253 10/24/2021
3.0.0-nightly-2021-10-13-2d... 156 10/13/2021
3.0.0-nightly-2021-10-10-47... 239 10/10/2021
3.0.0-nightly-2021-10-02-52... 186 10/2/2021
3.0.0-nightly-2021-09-10-6f... 191 9/10/2021
3.0.0-nightly-2021-09-04-6f... 140 9/4/2021
3.0.0-nightly-2021-08-25-6f... 158 8/25/2021
3.0.0-nightly-2021-07-24-14... 281 7/24/2021
3.0.0-nightly-2021-07-23-14... 176 7/23/2021
3.0.0-nightly-2021-07-15-6c... 168 7/15/2021
3.0.0-nightly-2021-07-03-6c... 294 7/3/2021
3.0.0-nightly-2021-06-26-6c... 179 6/26/2021
3.0.0-nightly-2021-06-05-6c... 225 6/5/2021
3.0.0-nightly-2021-05-21-7b... 170 5/21/2021
3.0.0-nightly-2021-05-20-7b... 190 5/20/2021
3.0.0-nightly-2021-05-14-09... 165 5/14/2021
3.0.0-nightly-2021-05-10-09... 176 5/10/2021
3.0.0-nightly-2021-05-02-ec... 222 5/2/2021
3.0.0-nightly-2021-04-30-ec... 149 4/30/2021
3.0.0-nightly-2021-04-22-ec... 168 4/22/2021
3.0.0-nightly-2021-04-17-ec... 215 4/17/2021
3.0.0-nightly-2021-04-14-ec... 162 4/14/2021
3.0.0-nightly-2021-04-03-ec... 223 4/3/2021
3.0.0-nightly-2021-01-17-ec... 204 1/17/2021
3.0.0-nightly-2021-01-14-94... 224 1/14/2021
3.0.0-nightly-2021-01-09-fb... 221 1/9/2021
3.0.0-nightly-2020-12-12-fb... 208 12/12/2020
3.0.0-nightly-2020-11-12-83... 289 11/12/2020
3.0.0-nightly-2020-11-06-70... 390 11/6/2020
3.0.0-nightly-2020-11-01-70... 375 11/1/2020
3.0.0-nightly-2020-10-08-de... 414 10/8/2020
3.0.0-nightly-2020-10-03-de... 295 10/3/2020
3.0.0-nightly-2020-10-02-de... 347 10/2/2020
3.0.0-nightly-2020-09-19-de... 322 9/19/2020
3.0.0-nightly-2020-09-16-de... 373 9/16/2020
3.0.0-nightly-2020-09-15-de... 368 9/15/2020
3.0.0-nightly-2020-09-02-2a... 382 9/2/2020
3.0.0-nightly-2020-09-01-ce... 351 9/1/2020
3.0.0-nightly-2020-08-27-15... 444 8/27/2020
3.0.0-nightly-2020-08-25-66... 345 8/25/2020
3.0.0-nightly-2020-08-04-da... 334 8/4/2020
3.0.0-nightly-2020-07-30-da... 362 7/30/2020
3.0.0-nightly-2020-07-27-da... 306 7/27/2020
3.0.0-nightly-2020-07-23-da... 335 7/23/2020
3.0.0-nightly-2020-07-17-86... 354 7/17/2020
3.0.0-nightly-2020-07-14-86... 307 7/14/2020
3.0.0-nightly-2020-07-12-45... 312 7/12/2020
3.0.0-nightly-2020-05-12-c9... 430 5/12/2020
3.0.0-nightly-2020-05-11-b4... 349 5/11/2020
3.0.0-nightly-2020-04-21-48... 349 4/22/2020
3.0.0-nightly-2020-04-16-a9... 347 4/16/2020
3.0.0-nightly-2020-04-14-e8... 353 4/15/2020