# db.py file ######################################################################### ## Global Variables definition ######################################################################### domain='www.sandbox.paypal.com' protocol='https://localhost/paypal' user=None passwd = None realm=None headers = {'Content-Type':'application/x-www-form-urlencoded'} # This token should also be set in a table so that the seller can set it up # dinamically and not through the code. Same goes for the PAGINATE. paypal_token="xxxxxxxxxxxxx" PAGINATE = 20
I know what each part is. This code is used in conjunction with paypal or not. I want to know how to store the values returned by paypal. --

