How to Make a Web App User Interface with Python

Written by anvilworks | Published 2022/06/08
Tech Story Tags: web-apps | python | python-web-development | web-development | beginners | programming | software-development | good-company | hackernoon-es

TLDRAnvil lets you build your app's front-end entirely in Python - no HTML, CSS or JavaScript required. In this blog post, we show you how.via the TL;DR App

How to build a web UI with Python

Anvil lets you build your app’s front-end entirely in Python - no HTML, CSS or Javascript required. You can build your UI by dragging and dropping components in Anvil’s visual designer or by adding components using Python code:

Let’s look at how you can use the Anvil editor to create a user interface by turning this app into a “hello world” app that says hello to your users.

In the middle of the Anvil IDE is the Form Editor which is split into the Design View and the Code View. On the right of the Anvil editor you will find the Toolbox.

You can drag and drop components, like Labels, from the toolbox to build your user interface. This hello world app will also need a TextBox for users to enter their name:

To configure components, you can edit their properties on the right hand side in the Properties Panel. This includes both the information the component displays and its styling:

Every component is a Python object, so you can also set the component’s properties in the Form Editor’s Code View:

All components have events they can raise. For example, when a user of your app clicks a Button component it raises a click event. We can create a Python method in the Code View to be called when this happens. In your Button’s click method, you can call Anvil’s alert function to display an alert that says hello to your users:

Now you can click run to test your app and it’s interface. Your users can now enter their name and clicking the say hi button displays the alert:

Using the drag and drop designer isn’t your only option for building user interfaces in Anvil. You can also create and add components to your user interface directly in code:

Anvil comes with all the usual UI components - buttons, text boxes, drop-downs, tables, and so on. And if that’s not enough, you can create your own custom components and share them with other applications.

To learn more about creating user interfaces with Anvil, why not get started with our 10 minute Feedback Form Tutorial?

>>> Get started


Build your own app with Anvil

If you’re new here, welcome! Anvil is a platform for building full-stack web apps with nothing but Python. No need to wrestle with JS, HTML, CSS, Python, SQL and all their frameworks – just build it all in Python.

>>> Try Anvil


Written by anvilworks | Build seriously powerful web apps with all the flexibility of Python. No web development experience required.
Published by HackerNoon on 2022/06/08