Popularity
1.3
Declining
Activity
0.0
Stable
1
2
1

Programming language: Crystal
License: MIT License
Tags: Third-party APIs    
Latest version: v0.4.0

crystal-connpass alternatives and similar shards

Based on the "Third-party APIs" category.
Alternatively, view crystal-connpass alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of crystal-connpass or a related project?

Add another 'Third-party APIs' Shard

README

Connpass

Build Status Dependency Status devDependency Status

A Crystal wrapper for the Connpass API inspired by Ruby's implementation.

Installation

Add it to shard.yml

dependencies:
  connpass:
    github: pine/connpass
    branch: master

Usage

See example example/event_search.cr and Official API reference.

require "connpass"

res = Connpass.event_search({ "keyword" => "Crystal" })
res.events.each{|e| puts e.title }

How to run example

First, you should install Crystal compiler, using a tool such as crenv.

$ git clone https://github.com/pine/crystal-connpass.git
$ cd ./crystal-connpass
$ crystal deps
$ crystal run ./example/event_search.cr
Keyword> Ruby
All Ruby 10 events found.

 1: Hacker Tackle
   福岡のあらゆるエンジニアためのコミュニティイベント
   会場: 福岡県Ruby コンテンツ産業振興センター
   日時: 2015-09-26T12:50:00+09:00

 2: Sensu Deep Talks #2
   会場: ニフティ株式会社 セミナールームB
   日時: 2015-10-02T18:30:00+09:00

 3: 第12回 ベイサイドRuby on Rails勉強会@マスマス
   初心者も経験者ももくもくしながら情報交換する会
   会場: mass x mass
   日時: 2015-09-29T19:00:00+09:00

...

Contributing

  1. Fork it ( https://github.com/pine/crystal-connpass/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Acknowledgement

Thank you.

License

MIT License


*Note that all licence references and agreements mentioned in the crystal-connpass README section above are relevant to that project's source code only.