Popularity
2.6
Declining
Activity
4.3
Stable
5
2
3
Programming language: Crystal
License: MIT License
Tags:
Third-party APIs
Latest version: v0.4.0
pinboard.cr alternatives and similar shards
Based on the "Third-party APIs" category.
Alternatively, view pinboard.cr alternatives based on common mentions on social networks and blogs.
-
GDAX
๐ GDAX REST and WebSocket API wrapper to trade blockchain cryptocurrencies like bitcoin, Litecoin and Ethereum.
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai
Do you think we are missing an alternative of pinboard.cr or a related project?
README
pinboard
A crystal client for the Pinboard API.
Installation
Add this to your application's shard.yml
:
dependencies:
pinboard:
git: https://git.cypr.io/oz/pinboard.cr.git
Usage
require "pinboard"
pinboard = Pinboard::Client.new(token: "my secret token")
posts = pinboard.recent
if posts.is_a?(Pinboard::Error)
puts posts.to_s
else
posts.each do |post|
puts "#{post.title}\n url:#{post.url}\n tags: #{post.tags.join(",")}\n"
end
end
Pinboard returns either a Pinboard::Error
, or something else. Check the tests
to be sure.
Contributing
- Clone
https://git.cypr.io/oz/pinboard.cr.git
, - Create your feature branch (
git checkout -b my-new-feature
), - Commit your changes (
git commit -am 'Add some feature'
), - Create a patch (
git format-patch origin
), - Send patch to
[email protected]
.
Contributors
- oz Arnaud Berthomier - creator, maintainer