Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

overtools/OWLeagueLib

Open more actions menu

Repository files navigation

OWLeagueLib - a library for interacting with the Overwatch League web API

License: MIT

Build status

Providers:

There are currently two data providers that you can switch out based on your needs. One for async, and one for synchronous code.

OWLApiDataProvider
OWLAsyncApiDataProvider

Usage:

Basic

// Create the provider
OWLApiDataProvider provider = new OWLApiDataProvider();

// Get the data that you need, in a nice deserialised object.
ScheduleResponse scheduleResponse = provider.FetchSchedule();

Getting next match (using async)

// create provider
OWLAsyncApiDataProvider asyncProvider = new OWLAsyncApiDataProvider();
            
// get schedule object
ScheduleResponse schedule = await asyncProvider.FetchSchedule();

// get the stage using the name, index/id can also be used
Stage stage = schedule.GetStage("Stage 1");
            
// get the next match in this stage
StageMatch nextMatch = stage.GetNextMatch();
            
Console.Out.WriteLine($"Next match is: {nextMatch.Team1.Name} vs {nextMatch.Team2.Name} at {nextMatch.StartDateTimeOffset()}");

Getting next stage (using async, you can combine this with "Getting next match" if you want)

// create provider
OWLAsyncApiDataProvider asyncProvider = new OWLAsyncApiDataProvider();
            
// get schedule object
ScheduleResponse schedule = await asyncProvider.FetchSchedule();

// get next stage
Stage stage = schedule.GetNextStage();
            
Console.Out.WriteLine($"The next stage of the current OWL season is: {stage.Name}");

Requirements

  • RestSharp

Changelog

  • 09-Jan-2018: First release.

Future

  • Locale support.
  • Pagination support.

About

An easy-to-use library for interacting with the Overwatch League web API

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.