Skip to main content

Implementation of singly API for Python

Project description

Implementation of singly API for Python

Installation

pip install open-singly

or

pip install git+https://github.com/MagicSolutions/open-singly.git

How to use

from open_singly import Singly

client_id = 'My_Client_ID'
client_secret = 'My_Client_Secret'
redirect_uri = 'http://www.mywebsite.com/singly/callback/'

singly = Singly(client_id, client_secret, redirect_uri)

# Get authentication URL for facebook for example
auth_url = singly.get_authentication_url('facebook')

# The user must be redirected to this URL. After authentication
# Singly will redirect user to your redirect_uri
# in the GET parameters there will be a code which You must
# provide to Singly.authenticate metod

api = singly.authenticate(code)

# After successfull authentication you can execute all methods
# provided from Singly API like that

all_profiles = api.profile.get(verify='true')

facebook_data = api.profiles.facebook.get()

facebook_friends = api.services.facebook.friends.get()

Enjoy!

Project details


Release history Release notifications | RSS feed

This version

0.2

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

open-singly-0.2.tar.gz (3.4 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page