• Skip to primary navigation
  • Skip to main content
Fellow Consulting AG

Fellow Consulting AG

where people work together

  • Products & Services
    • Digital Transformation
    • Infor OS
    • Ephesoft Transact – IDM Capture
      • FellowKV²-Plugin
      • TableExtraction² Plugin
    • Marketing & CRM
      • SugarCRM
        • Sales & Service
          • Sugar Sell
          • Sugar Serve
          • Business Intelligence – Sugar Discover
        • Marketing
          • Sugar Market
        • Customer Data Management
        • Appointment Calendar
        • Follow-ups
        • Free SugarCRM 30 days trial
      • Oktopost – Social Marketing
      • Sugar Market
  • Customer Success Stories
    • MVTec – SugarCRM for a global manufacturer
    • Bet3000 – SugarCRM for Gambling
    • Coloplast – Mobile CRM for Life Science
    • Diversey – Mobile CRM and Maintenance for Cleaning and Hygiene
    • Diversey – Online Shop implementation
    • Jochen Schweizer – SugarCRM for Leisure
    • Acnos Pharma GmbH streamlines workflow
  • Fellow
    • About Us
    • Career: We are hiring!
    • Contact Us
    • Change Optin
    • Partners
  • English
  • Show Search
Hide Search

Bootstrap

Further Processing

Daniel Lopez · 21. February 2020 ·

python processing

Print POST Data In any web app, you’ll have to process incoming request data from users. Flask, like any other web framework, allows you to access the request data easily. Next step is going to be to make use of the value: from flask import Flask from flask import render_template app = Flask(__name__) @app.route(“/”), methods=[‘GET’, […]

Data POST and adding Logic

Daniel Lopez · 21. February 2020 ·

python flask data process

Adding custom data calculation Now let’s do more data calculation. We open “process_data.py” and edit the file with this script: def calculate_coin(price_usd): return (float(price_usd) > 40 def process(): data = get_data(“/v1/ticker/?limit=10”) all_coins = [] for coin in data: coin [“isover40”] = calculate_coin(coin[“price_usd”]) all_coins.append(coin) return all_coins Creating Bootstrap form and submit button In this part we […]

Use of Bootstrap and styling

Daniel Lopez · 20. February 2020 ·

python flask style with bootstrap

Starting with Bootstrap Bootstrap is a framework to help you design websites faster and easier. It includes HTML and CSS based design templates for typography, forms, buttons, tables, navigation, modals, etc. In the HTML Code from the last exercises named “index.html” create a new header section and we are going to input the bootstrap CSS <html> […]

  • Contact Us
  • Privacy policy
  • Imprint
  • AGB