All Projects → meraki-analytics → Orianna

meraki-analytics / Orianna

Licence: mit
A Java framework for the Riot Games League of Legends API (http://developer.riotgames.com/).

Programming Languages

java
68154 projects - #9 most used programming language

Labels

Projects that are alternatives of or similar to Orianna

Ewelink Api
eWeLink API for JavaScript
Stars: ✭ 128 (-2.29%)
Mutual labels:  api
Sabisu Rails
Simple and powerful engine for exploring your Rails api application
Stars: ✭ 129 (-1.53%)
Mutual labels:  api
Graphbrainz
A fully-featured GraphQL interface for the MusicBrainz API.
Stars: ✭ 130 (-0.76%)
Mutual labels:  api
Api Common Protos
A standard library for use in specifying protocol buffer APIs.
Stars: ✭ 127 (-3.05%)
Mutual labels:  api
N26
💳 Un-official node.js module for interact with your N26 (previously Number26) account
Stars: ✭ 128 (-2.29%)
Mutual labels:  api
Tiktokbot
A TikTokBot that downloads trending tiktok videos and compiles them using FFmpeg
Stars: ✭ 126 (-3.82%)
Mutual labels:  api
Pfsense Api
The missing REST API package for pfSense
Stars: ✭ 126 (-3.82%)
Mutual labels:  api
Flaxapi
Old repository with C# Editor and C# API for creating games in Flax Engine
Stars: ✭ 131 (+0%)
Mutual labels:  api
Augur.js
Augur JavaScript API
Stars: ✭ 129 (-1.53%)
Mutual labels:  api
Airbnbapi
Unofficial airbnb.com REST API wrapper for node.js
Stars: ✭ 130 (-0.76%)
Mutual labels:  api
Zabbixapi
Ruby wrapper to Zabbix API
Stars: ✭ 128 (-2.29%)
Mutual labels:  api
Slacker
Full-featured Python interface for the Slack API
Stars: ✭ 1,615 (+1132.82%)
Mutual labels:  api
Ergo Pe Av
🧠 🦠 An artificial neural network and API to detect Windows malware, based on Ergo and LIEF.
Stars: ✭ 130 (-0.76%)
Mutual labels:  api
Geeksay
🤓 geeks will ctrl+s the world!
Stars: ✭ 127 (-3.05%)
Mutual labels:  api
Zerodha live automate trading using ai ml on indian stock market Using Basic Python
Online trading using Artificial Intelligence Machine leaning with basic python on Indian Stock Market, trading using live bots indicator screener and back tester using rest API and websocket 😊
Stars: ✭ 131 (+0%)
Mutual labels:  api
Taobaokeapi
淘宝客API演示
Stars: ✭ 128 (-2.29%)
Mutual labels:  api
Reddit Detective
Play detective on Reddit: Discover political disinformation campaigns, secret influencers and more
Stars: ✭ 129 (-1.53%)
Mutual labels:  api
Angular Swagger Ui
An angularJS implementation of Swagger UI
Stars: ✭ 131 (+0%)
Mutual labels:  api
Bittrex.net
A C# .Net wrapper for the Bittrex web API including all features easily accessible and usable
Stars: ✭ 131 (+0%)
Mutual labels:  api
Apidemo
快应用API Demo 集合 QuickAPP
Stars: ✭ 129 (-1.53%)
Mutual labels:  api

MIT Licensed Maven Central Documentation Status JavaDocs DOI

Orianna

A Java adaptation of the Riot Games League of Legends API (https://developer.riotgames.com/).

Orianna is the sister library to Cassiopeia (Python). It's been designed with usability in mind - making sure all the bookkeeping is done right so you can focus on getting the data you need and building your application.

Orianna is licensed under the MIT License.

Documentation & Examples

Detailed documentation about Orianna is located here. The full JavaDoc for Orianna is available here. Examples of using Orianna can be found here.

Features

Orianna is designed to make the lives of Riot API developers as easy as possible. Here are some of the ways we do it:

  • An enhanced user interface that makes using the Riot API easy and fun
    • Restructured and renamed API data for maximum clarity
    • Fluent APIs for requesting data
    • Automatic conversion of foreign keys into the objects they specify (e.g player.getChampion() instead of player.getChampionId())
  • Rate limits handled automatically with optimal usage of your API key
  • Configurable handling of API errors (e.g. automatic retry on 500 errors)
  • Built-in automatic caching, ready out of the box
  • DataDragon support
  • A highly configurable pipeline for requesting and caching Riot API data
    • Allows flexibility in what database(s) you want to use to cache your data
    • Off-the-shelf support for many popular databases under construction here
    • Extensible to seamlessly integrate other data types and APIs, such as the ChampionGG API (ChampionGG support coming soon!)

How to get it

Orianna is distributed through the releases page and through Maven Central. The easiest way to get it is by using Maven or Gradle.

Maven

To add the latest Orianna release version to your maven project, add the dependency to your pom.xml dependencies section:

<dependencies>
  <dependency>
    <groupId>com.merakianalytics.orianna</groupId>
    <artifactId>orianna</artifactId>
    <version>4.0.0-rc7</version>
    <!-- or, for Android: -->
    <artifactId>orianna-android</artifactId>
    <version>4.0.0-rc7</version>
  </dependency>
</dependencies>

Or, if you want to get the latest development version, add the Sonaype Snapshot Repository to your pom.xml as well:

<dependencies>
  <dependency>
    <groupId>com.merakianalytics.orianna</groupId>
    <artifactId>orianna</artifactId>
    <version>4.0.0-SNAPSHOT</version>
    <!-- or, for Android: -->
    <artifactId>orianna-android</artifactId>
    <version>4.0.0-SNAPSHOT</version>
  </dependency>
</dependencies>

<repositories>
  <repository>
    <id>snapshots-repo</id>
    <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    <releases>
      <enabled>false</enabled>
    </releases>
    <snapshots>
      <enabled>true</enabled>
    </snapshots>
  </repository>
</repositories>

Gradle

To add the latest Orianna release version to your gradle project, add the Maven Central repository to your build.gradle repositories section, and add the dependency to your build.gradle dependencies section:

repositories {
  mavenCentral()
}

dependencies {
  implementation "com.merakianalytics.orianna:orianna:4.0.0-rc7"
  // or, for Android:
  implementation "com.merakianalytics.orianna:orianna-android:4.0.0-rc7"
}

Or, if you want to get the latest development version, add the Sonaype Snapshot Repository to your build.gradle instead:

repositories {
  maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
}

dependencies {
  implementation "com.merakianalytics.orianna:orianna:4.0.0-SNAPSHOT"
  // or, for Android:
  implementation "com.merakianalytics.orianna:orianna-android:4.0.0-SNAPSHOT"
}

Using the release JAR directly

Grab the latest JAR from the releases page and add it to your project dependencies. JARs are provide both with and without Orianna's dependencies included. The jar-with-dependencies version will get you up & running faster, but can cause version conflicts if your project has other dependencies.

If you're using the JAR without dependencies inlcuded, Orianna depends on the following libraries which will also need to be added as dependencies:

Example

Check out a basic example of Orianna in action. More examples are available here.

import com.merakianalytics.orianna.Orianna;
import com.merakianalytics.orianna.types.common.Queue;
import com.merakianalytics.orianna.types.common.Region;
import com.merakianalytics.orianna.types.core.league.League;
import com.merakianalytics.orianna.types.core.staticdata.Champion;
import com.merakianalytics.orianna.types.core.staticdata.Champions;
import com.merakianalytics.orianna.types.core.summoner.Summoner;

public class Example {
    public static void main(String[] args) {
        Orianna.setRiotAPIKey("YOUR-API-KEY");
        Orianna.setDefaultRegion(Region.NORTH_AMERICA);

        Summoner summoner = Orianna.summonerNamed("FatalElement").get();
        System.out.println(summoner.getName() + " is level " + summoner.getLevel() + " on the " + summoner.getRegion() + " server.");

        Champions champions = Orianna.getChampions();
        Champion randomChampion = champions.get((int)(Math.random() * champions.size()));
        System.out.println("He enjoys playing champions such as " + randomChampion.getName());

        League challengerLeague = Orianna.challengerLeagueInQueue(Queue.RANKED_SOLO).get();
        Summoner bestNA = challengerLeague.get(0).getSummoner();
        System.out.println("He's not as good as " + bestNA.getName() + " at League, but probably a better Java programmer!");
    }
}

Configuring Orianna

Orianna ships with a default configuration designed to get new users going as quickly as possible. However, you may find you want to take advantage of some of the configuration options Orianna supports by replacing that configuration with your own.

Orianna is able to automatically load your Riot API Key from your environment variables on startup. To take advantage of this, set your RIOT_API_KEY environment variable to your Riot API Key.

For more complex configuration, just download the default configuration, make the changes you'd like, and load the new configuration file when your program starts. Documentation describing the full range of configuration options available with Orianna can be found here.

Orianna.loadConfiguration(new File("/path/to/your/configuration-file.json"));

Alternatively, Orianna can automatically load your configuration file on startup if you set your ORIANNA_CONFIGURATION_PATH environment variable to the path of your configuration file.

Android Usage Note

If you're using Orianna with Android, be aware that using the default configuration which uses the RiotAPI Data Source will result in leaking your API key to the users of your application as they can access the program memory and network requests Orianna is making. For personal applications you won't be sharing, that's okay. If you're going to distribute your application, however, you'll need to have Orianna make its calls indirectly through a proxy server. You can use Kernel to easily set up a proxy server along with the Kernel Data Source in Orianna to send your requests to it instead of the Riot API.

Simple Kernel Configuration

Here's an example of an Orianna configuration file that uses Kernel instead of the Riot API. Specifically, note this section which replaces this section from the default configuration.

Recommended Kernel Configuration

It's recommended to configure Kernel to send "data" layer Orianna objects, rather than the "dto" layer objects it sends by default which mirror the Riot API exactly. This will reduce the amount of repeated computation that needs to be done between the Kernel server and the client Orianna instance. To use the "data" layer, configure your Kernel instance to "produceCoreData", as shown here. On the Orianna end, you can then replace the Riot API configuration from the default configuration (shown here) with the "data" layer Kernel data source as shown here. You can also remove most of the transformers from the default configuration (shown here) as they won't be needed.

Questions & Contributions

Feel free to send pull requests or to contact us via GitHub or Discord. We also hang around the Riot API Discord, so come by and say hello. We love to hear what people are building with Orianna! If you would like to help us maintain Orianna, let us know on our Discord.

Bugs

If you find bugs please let us know via a pull request or issue.

Citing Orianna

If you used Orianna for your research, please cite the project.

Support Us

If you've loved using Orianna, consider supporting us through PayPal or Patreon.

Disclaimer

Orianna isn't endorsed by Riot Games and doesn't reflect the views or opinions of Riot Games or anyone officially involved in producing or managing League of Legends. League of Legends and Riot Games are trademarks or registered trademarks of Riot Games, Inc. League of Legends © Riot Games, Inc.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].