Пример #1
0
def rage(name):
    business = data.business(name)
    phone = find_phone(business['contacts'])
    print phone
    twilio_service.makecall(phone, "Boris, we should win")
    return 'Raged!'
Пример #2
0
def business_profile(name):
    business = data.business(name)
    return render_template('business.html', business=business, permalink=name)