crystal-mondo alternatives and similar shards
Based on the "Third-party APIs" category.
Alternatively, view crystal-mondo alternatives based on common mentions on social networks and blogs.
-
discordcr
Minimalist Discord library for Crystal. (Still WIP, but usable) -
TelegramBot
(deprecated) see https://github.com/protoncr/tourmaline instead -
twitter-crystal
A library to access the Twitter API using Crystal -
crystal_slack
Parse Slack slash commands or send incoming web hooks from Crystal -
crystal-consul
Crystal client for Consul (http://www.consul.io/) -
mollie.cr
Mollie Payments API client for Crystal http://www.mollie.com -
open_exchange_rates
A library for Open Exchange Rates API -
aws-signer.cr
This library signs your HTTP requests using AWS v4 -
GDAX
๐ GDAX REST and WebSocket API wrapper to trade blockchain cryptocurrencies like bitcoin, Litecoin and Ethereum. -
web_finger
A WebFinger (https://tools.ietf.org/html/rfc7033) client for Crystal. -
soundcloud-crystal
A library to access the SoundCloud API using Crystal -
bugsnag.cr
bugsnag exception notifier written in crystal. Supports sidekiq.cr, kemal, HTTP::Server. -
host_meta
A Web Host Metadata (https://tools.ietf.org/html/rfc6415) client for Crystal. -
fantasy_football_nerd_api
Crystal library for Fantasy Football Nerd API -
crystal-connpass
:anchor: A Crystal wrapper for the Connpass API
Collect and Analyze Billions of Data Points in Real Time
Do you think we are missing an alternative of crystal-mondo or a related project?
README
crystal-monzo
A Crystal client for the Monzo API.
Installation
Add this to your application's shard.yml
:
dependencies:
crystal-monzo:
github: barisbalic/crystal-monzo
Usage
require "monzo"
client = Monzo.new("SATSUI-NO-HADOU")
client.accounts.each do |account|
balance = client.balance(account)
puts balance.spend_today
end
The client API follows the documented API reasonably closely, the only significant divergence being that the "who_am_i"
calls are made with client.identity
. Only because "who_am_i" really annoyed me.
Development
In order to run the tests you will need to set the MONZO_TOKEN
environment variable to a valid API token. You can
then run the tests with:
MONZO_TOKEN=magicbeans crystal spec
Contributing
- Fork it ( https://github.com/barisbalic/crystal-monzo/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request
Contributors
- barisbalic Baris Balic - creator, maintainer