MiiCardConsumers is a Python module that provides wrapper classes for the miiCard API.
Usage
Your very own OAuth exchange should be implemented first with miiCard.com's OAuth endpoint. You will obtain an access token and secret for a user. Now you can instantiate an API wrapper:
api = MiiCardOAuthClaimsService("consumer_key", "consumer_secret",
"access_token", "access_token_secret")
Then make calls against it:
user_profile_response = api.get_claims().data
user_first_name = user_profile_response.data.first_name
Product's homepage
Requirements:
· Python