Skip to content

BobbyRohweder/NintendoSwitchEshop

Repository files navigation

Build Status codecov Swift 4.2 Donate

NintendoSwitchEshop

About

NintendoSwitchEshop is a Swift Framework written to extract Nintendo Switch's eShop game information.

Usage

Get America Games

import NintendoSwitchEshop

let nintendoSwitchEshop = NintendoSwitchEshop()
nintendoSwitchEshop.getGamesInAmerica { games, error in
    // Use games (provided as an array of GameUS objects)
}

Get Europe Games

import NintendoSwitchEshop

let nintendoSwitchEshop = NintendoSwitchEshop()
nintendoSwitchEshop.getGamesInEurope { games, error in
    // Use games (provided as an array of GameEU objects)
}

Contribute

Anyone is free to contribute. Just open a Pull Request or Issue. Tests are preferred for new features.

License

NintendoSwitchEshop is available under the MIT license. See the LICENSE file for more info.