本文整理汇总了Python中pagseguro.PagSeguro.notification_url方法的典型用法代码示例。如果您正苦于以下问题:Python PagSeguro.notification_url方法的具体用法?Python PagSeguro.notification_url怎么用?Python PagSeguro.notification_url使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pagseguro.PagSeguro
的用法示例。
在下文中一共展示了PagSeguro.notification_url方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: checkout_pg
# 需要导入模块: from pagseguro import PagSeguro [as 别名]
# 或者: from pagseguro.PagSeguro import notification_url [as 别名]
def checkout_pg(sender, shipping, cart):
pg = PagSeguro(email=app.config['EMAIL'], token=app.config['TOKEN'])
pg.sender = sender
shipping['type'] = pg.SEDEX
pg.shipping = shipping
pg.extra_amount = "%.2f" % float(app.config['EXTRA_AMOUNT'])
pg.redirect_url = app.config['REDIRECT_URL']
pg.notification_url = app.config['NOTIFICATION_URL']
pg.items = cart.items
for item in cart.items:
item['amount'] = "%.2f" % float(app.config['EXTRA_AMOUNT'])
return pg
示例2: make_pg
# 需要导入模块: from pagseguro import PagSeguro [as 别名]
# 或者: from pagseguro.PagSeguro import notification_url [as 别名]
def make_pg():
pg = PagSeguro(email="[email protected]", token="ABCDEFGHIJKLMNO")
pg.sender = {
"name": "Bruno Rocha",
"area_code": 11,
"phone": 981001213,
"email": "[email protected]",
}
pg.shipping = {
"type": pg.SEDEX,
"street": "Av Brig Faria Lima",
"number": 1234,
"complement": "5 andar",
"district": "Jardim Paulistano",
"postal_code": "06650030",
"city": "Sao Paulo",
"state": "SP",
"country": "BRA"
}
pg.extra_amount = 12.70
pg.redirect_url = "http://meusite.com/obrigado"
pg.notification_url = "http://meusite.com/notification"
return pg