Popularity
1.3
Declining
Activity
0.0
Stable
2
2
0

Monthly Downloads: 15
Programming language: Haskell
License: MIT License
Tags: Web     Game    

haskmon alternatives and similar packages

Based on the "Game" category.
Alternatively, view haskmon alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of haskmon or a related project?

Add another 'Game' Package

README

Haskmon

A Haskell wrapper for Pokeapi.co WIP This library does not contain all the fields for all the pokémon in the database. PRs are welcome.

Example usage:

>>> import Haskmon
>>> getPokemonByName "eevee" :: IO Pokemon
Pokemon {pokemonName = "Eevee", pokemonNationalId = 133, ... }
>>> getMoveById 1 :: IO Move
Move {moveName = "Pound", movePower = 40, movePp = 35, moveAccuracy = 100, moveMetadata = MetaData {resourceUri = "/api/v1/move/1/", created = 2013-11-03 15:06:09.478009 UTC, modified = 2013-12-24 15:24:29.625596 UTC}}