{% block body %}

Python Sample App

{% if session['is_authorized'] == True %} {% if company_info %}

{{ company_info }}

{% endif %} {% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% endif %} {% endwith %}

Potential Customers from Leads.xlsx

{% for customer in customer_dict %} {% endfor %}
No. ID Full Name Phone Email
{{ loop.index }} {{ customer['Id'] }} {% set req_id = customer['Id'] %} {{ customer['Full Name'] }} {{ customer['Phone'] }} {{ customer['Email'] }}
{% else %}

Hi, welcome to Intuit Developer's Python Flask app. This app adds customer from Excel file to QBO and also shows how to get CompanyInfo of the connected QBO account. This app can be used with both OAuth1 and OAuth2. Don't forget to add your app's token in config file.

{% endif %} {% endblock %}