Exemplo n.º 1
0
Arquivo: runner.py Projeto: tmshv/sisu
def init():
    email = sys.argv[1]
    password = sys.argv[2]
    auth_status = api.authorize(email, password)
    if not auth_status:
        print('> failed to authorize')
        exit()
Exemplo n.º 2
0
def main():
    auth_code = request.args.get("code", None)
    if auth_code is None:
        return render_template('index.html')
    else:
        print "Have token: {}".format(auth_code)
        auth = authorize()
        token = auth.get_access_token(auth_code)
        spot = spotipy.Spotify(auth=token['access_token'])
        return getArtists(spot)
Exemplo n.º 3
0
def auth():
    return redirect(authorize().get_authorize_url(), code=302)
__author__ = 'ragnar'

import api

api.url = "https://tweb34.handpoint.com"
api.cardAcceptor = "7f6451e8314defbb50d0"
api.sharedSecret = "8F10C8AD35B7AEC11675B50DBF6ACEAA0B4EC280B92500E51A02F7BBBE7B07C6"

paymentData = api.PaymentData(currency="USD", amount=1.00, card_number="4242424242424242", expiry_date_year="1215",
                              card_verification_code="123")

responseDict = api.authorize(paymentData)

cancellationResponse = api.authorizationCancel('authorization', responseDict['terminalDateTime'], responseDict['currency'], responseDict['amount'])

print('Response from Bixby: %s' % cancellationResponse)
Exemplo n.º 5
0
def login_url():
    if session.get('user_id') is None:
        return jsonify(login_data={'login_url': api.authorize()})
    else:
        return jsonify(error={'error_msg': 'Already logged'})
__author__ = 'ragnar'

import api

api.url = "https://tweb34.handpoint.com"
api.cardAcceptor = "7f6451e8314defbb50d0"
api.sharedSecret = "8F10C8AD35B7AEC11675B50DBF6ACEAA0B4EC280B92500E51A02F7BBBE7B07C6"

paymentData = api.PaymentData(currency="USD",
                              amount=1.00,
                              card_number="4242424242424242",
                              expiry_date_year="1215",
                              card_verification_code="123")

responseDict = api.authorize(paymentData)

cancellationResponse = api.authorizationCancel(
    'authorization', responseDict['terminalDateTime'],
    responseDict['currency'], responseDict['amount'])

print('Response from Bixby: %s' % cancellationResponse)
__author__ = 'ragnar'

import api

api.url = "https://tweb34.handpoint.com"
api.cardAcceptor = "7f6451e8314defbb50d0"
api.sharedSecret = "8F10C8AD35B7AEC11675B50DBF6ACEAA0B4EC280B92500E51A02F7BBBE7B07C6"

paymentData = api.PaymentData(currency="USD",
                              amount=1.00,
                              card_number="4242424242424242",
                              expiry_date_year="1215",
                              card_verification_code="123")
response = api.authorize(paymentData)

print('Response from Bixby: %s' % response)
__author__ = 'ragnar'

import api

api.url = "https://tweb34.handpoint.com"
api.cardAcceptor = "7f6451e8314defbb50d0"
api.sharedSecret = "8F10C8AD35B7AEC11675B50DBF6ACEAA0B4EC280B92500E51A02F7BBBE7B07C6"

paymentData = api.PaymentData(currency="USD", amount=1.00, card_number="4242424242424242", expiry_date_year="1215",
                              card_verification_code="123")
response = api.authorize(paymentData)

print('Response from Bixby: %s' % response)