Building your Console App with Briefcase¶
Overview¶
This guide explains the key differences when creating a console application using Briefcase, as opposed to a GUI-based app. It assumes you are already familiar with the basics of Briefcase and have completed the BeeWare Tutorial.
We’ll cover:
How selecting “Console” changes your project configuration
The
console_app
flag inpyproject.toml
How Briefcase handles command-line arguments
Operational differences in how console apps run and display output
Packaging differences specific to console apps (e.g.,
.pkg
bundles on macOS)
Creating a Console App¶
Start by generating a new Briefcase project with briefcase new
. When prompted to
select a GUI framework, choose the option corresponding to Console.:
$ briefcase new
...
-- GUI Framework -------------------------------------------------------------
What GUI toolkit do you want to use for this project?
Additional GUI bootstraps are available from the community.
Check them out at https://beeware.org/bee/briefcase-bootstraps
1) Toga
2) PySide6 (does not support iOS/Android/Web deployment)
3) Pygame (does not support iOS/Android/Web deployment)
4) Console (does not support iOS/Android/Web deployment)
5) None
GUI Framework [1]: 4
This changes the code that Briefcase generates for the new app, and the configuration for the new project.
The most important change is that your pyproject.toml
will include:
console_app = true
This flag informs Briefcase to treat the app as a terminal-based (non-GUI) application. Console apps print to the terminal directly, unlike GUI apps which log to the system console or display windows.
Inspecting the File Structure¶
Your generated project will have a layout similar to the following, assuming your app’s
formal name is Hello CLI
and its app name is hello-cli
:
hello-cli/
├── pyproject.toml
├── src/
│ └── hello_cli/
│ ├── __main__.py
│ └── app.py
└── ...
Note the app.py
file contains a simple print("Hello, World.")
statement by
default.
Handling Command-line Arguments¶
You can use any standard Python tool to parse CLI arguments. Here’s a simple example
using argparse
:
import argparse
def main():
parser = argparse.ArgumentParser(description="A simple CLI app.")
parser.add_argument("name", help="Your name")
args = parser.parse_args()
print(f"Hello, {args.name}!")
Update your app.py
file with this logic. You can now pass a name when running the
app.
Running the App with Briefcase¶
Briefcase provides two ways to run your app: dev
mode and run
mode. You can pass
command-line arguments to your app in both cases using --
followed by your
arguments.
For example, if your app uses the example argparse
code shown above, running in dev
mode:
$ briefcase dev -- John
===========================================================================
Hello, John!
And when you run the built app:
$ briefcase run -- John
===========================================================================
Hello, John!
This is a key difference from GUI apps, which are usually launched without passing arguments and display a graphical window.
Packaging and Distribution¶
Once you’ve tested your app, you can package it for distribution using:
$ briefcase create
$ briefcase build
$ briefcase package
On Linux, you’ll get a system package (.deb
, .rpm
etc) for your Linux
distribution; on Windows, you’ll get a .msi
installer; and on macOS, you’ll get a
.pkg
installer. Command-line apps can’t be generated for Android, iOS or web, as
those platforms don’t have a console that is accessible by the user.
Note
On macOS, console apps must be packaged as .pkg
files, rather than the
.app
or .dmg
bundles used for GUI apps. A .pkg
installer is required
because a post-processing step must be used to ensure the binary is available on the
user’s path, allowing the app to be executed from the command line.
When the package is installed by the user, it can run from the terminal:
$ hello-cli John
Hello, John!
The executable name of your app will be the app name, not the formal name. For example,
in this guide, the formal name is “Hello CLI”, but the executable name is hello-cli
.
This is the name you will use to run your app from the terminal, as shown in the
examples above. However, the installer will use the formal name.
Console App Behavior Summary¶
Key differences from GUI apps include:
Project structure includes
console_app = true
inpyproject.toml
;Apps are executed in the terminal, and print directly to
stdout
/stderr
;Arguments are passed using
-- ARGS ...
when usingbriefcase dev
andbriefcase run
;No GUI framework or windowing system is used or bundled; and
macOS packaging uses ``.pkg`` format, rather than GUI
.app
/.dmg
bundles.
What’s next?¶
Now that you’ve built a simple console app with Briefcase, you can use these principles to build more complex CLI tools or integrate other libraries like Click, Typer, or any other Python CLI framework. For more advanced text-based interfaces, you might also explore libraries like curses or Textual, which allow you to create “GUI-like” applications in the terminal.