Coder Social home page Coder Social logo

dribbble-dotnet's Introduction

DribbbleDotNet!

A C# wrapper for the Dribbble API based on the Ruby wrapper Swish at github.com/jeremyw/swish

Learn about the Dribbble API at dribbble.com/api

Examples

// Find a player
var player = Player.Find(1);

// Find a players shots
Player player = Player.Find(1);
PaginatedList<Shot> shots = player.Shots();

// Find a player followers
PaginatedList<Player> followers = player.Followers();

// Find followers of a player
PaginatedList<Player> following = player.Following();

// Find a players draftees
PaginatedList<Player> draftees = player.Draftees();

// Find a shot
Shot shot = Shot.Find(21603);

// Shots by everyone
PaginatedList<Shot> everyone = Shot.Everyone(perPage:2);

// Debuts shots
PaginatedList<Shot> debuts = Shot.Debuts(perPage: 2);

// Popular shots
PaginatedList<Shot> popular = Shot.Popular(perPage: 2);

// Find a shots rebounds
Shot shot = Shot.Find(59714);
PaginatedList<Shot> rebounds = shot.Rebounds();

// Comments for a shot
Shot shot = Shot.Find(59714);
PaginatedList<Comment> comments = shot.Comments();

// Checkout the Tests for more!!

Credits

Hammock is a REST library for .NET that greatly simplifies consuming and wrapping RESTful services. hammock.codeplex.com

Json.NET json.codeplex.com

dribbble-dotnet's People

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.