No description
Find a file
2024-04-30 12:16:21 +08:00
.github Merge pull request #2537 from beeware/dependabot/github_actions/dsaltares/fetch-gh-release-asset-1.1.2 2024-04-29 10:14:13 +08:00
android Merge branch 'main' into default-icon 2024-04-24 17:00:44 +08:00
changes Merge branch 'main' into default-icon 2024-04-30 08:44:12 +08:00
cocoa Correct testbed tests of app icons. 2024-04-30 11:59:30 +08:00
core Define and use toga.Icon.APP_ICON as the app icon. 2024-04-30 11:19:37 +08:00
demo Update PyPI project links 2024-04-17 12:00:47 -04:00
docs Clarified docs around icon defintions. 2024-04-30 08:51:58 +08:00
dummy Modified fallback behavior for app icons. 2024-04-26 11:00:30 +08:00
examples Fixed OptionCoontainer example app 2024-04-26 01:07:56 -07:00
gtk Allow GTK app icon tests to pass in dev mode. 2024-04-30 12:16:21 +08:00
iOS Merge branch 'main' into default-icon 2024-04-24 17:00:44 +08:00
testbed Correct testbed tests of app icons. 2024-04-30 11:59:30 +08:00
textual Add Android, iOS, Web and Textual fallback behavior for app icons. 2024-04-24 16:18:23 +08:00
toga Update PyPI project links 2024-04-17 12:00:47 -04:00
web Add Android, iOS, Web and Textual fallback behavior for app icons. 2024-04-24 16:18:23 +08:00
winforms Add winforms implementation of app icon fixes. 2024-04-24 15:18:24 +08:00
.git-blame-ignore-revs Added git blame ignore for pyupgrade commit 2022-11-02 13:14:15 +00:00
.gitignore Add Winforms screenshots. 2023-11-02 07:27:31 +08:00
.pre-commit-config.yaml Merge pull request #2542 from beeware/autoupdates/pre-commit/black-pre-commit-mirror 2024-04-29 10:15:54 +08:00
.readthedocs.yaml Update support table; run readthedocs build on Python 3.11 2023-10-17 19:03:48 +01:00
CONTRIBUTING.md Add pre-commit hooks: check-toml, check-yaml, check-case-conflict, check-docstring-first, end-of-file-fixer, trailing-whitespace 2022-10-20 21:59:36 +01:00
LICENSE Add pre-commit hooks: check-toml, check-yaml, check-case-conflict, check-docstring-first, end-of-file-fixer, trailing-whitespace 2022-10-20 21:59:36 +01:00
pyproject.toml Clarify why there's a root setuptools_scm configuration. 2023-11-24 05:50:10 +08:00
README.rst Merge pull request #2229 from freakboy3742/core-setup-py 2023-11-25 19:20:37 +00:00
tox.ini Bump dependencies in pyproject.toml and tox.ini 2024-03-31 20:11:31 +00:00

.. image:: https://beeware.org/project/projects/libraries/toga/toga.png
    :width: 72px
    :target: https://beeware.org/toga

Toga
====

.. image:: https://img.shields.io/pypi/pyversions/toga.svg
    :target: https://pypi.python.org/pypi/toga
    :alt: Python Versions

.. image:: https://img.shields.io/pypi/v/toga.svg
    :target: https://pypi.python.org/pypi/toga
    :alt: Project version

.. image:: https://img.shields.io/pypi/status/toga.svg
    :target: https://pypi.python.org/pypi/toga
    :alt: Project status

.. image:: https://img.shields.io/pypi/l/toga.svg
    :target: https://github.com/beeware/toga/blob/main/LICENSE
    :alt: BSD License

.. image:: https://github.com/beeware/toga/workflows/CI/badge.svg?branch=main
   :target: https://github.com/beeware/toga/actions
   :alt: Build Status

.. image:: https://img.shields.io/discord/836455665257021440?label=Discord%20Chat&logo=discord&style=plastic
   :target: https://beeware.org/bee/chat/
   :alt: Discord server

A Python native, OS native GUI toolkit.

Minimum requirements
--------------------

* Toga requires **Python 3.8 or higher**. Python 2 is not supported.

* If you're on macOS, you need to be on 11 (Big Sur) or newer.

* If you're on Windows, you'll need Windows 10 or newer. If you are using
  Windows 10 and want to use a WebView to display web content, you will also
  need to install the `Edge WebView2 Evergreen
  Runtime. <https://developer.microsoft.com/en-us/microsoft-edge/webview2/#download-section>`__
  Windows 11 has this runtime installed by default.

* If you're on Linux (or another Unix-based operating system), you need to have
  GTK+ 3.10 or newer. This is the version that ships starting with Ubuntu 14.04
  and Fedora 20. You also need to install the system packages listed
  in `Tutorial 0 <docs/tutorial/tutorial-0.rst>`__.

Quickstart
----------

To get a demonstration of the capabilities of Toga, run the following::

    $ pip install toga-demo
    $ toga-demo

This will pop up a GUI window with some sample widgets.

Documentation
-------------

Documentation for Toga can be found on `Read The Docs`_.

.. _Read The Docs: https://toga.readthedocs.io

Community
---------

Toga is part of the `BeeWare suite`_. You can talk to the community through:

* `@beeware@fosstodon.org on Mastodon`_
* `Discord`_
* The Toga `Github Discussions forum`_

We foster a welcoming and respectful community as described in our
`BeeWare Community Code of Conduct`_.

.. _BeeWare suite: https://beeware.org
.. _@beeware@fosstodon.org on Mastodon: https://fosstodon.org/@beeware
.. _Discord: https://beeware.org/bee/chat/
.. _Github Discussions forum: https://github.com/beeware/toga/discussions
.. _BeeWare Community Code of Conduct: https://beeware.org/community/behavior/

Contributing
------------

If you'd like to contribute to Toga development, our `guide for first time
contributors`_ will help you get started.

If you experience problems with Toga, `log them on GitHub`_. If you want to
contribute code, please `fork the code`_ and `submit a pull request`_.

.. _guide for first time contributors: https://toga.readthedocs.io/en/latest/how-to/contribute-code.html
.. _log them on Github: https://github.com/beeware/toga/issues
.. _fork the code: https://github.com/beeware/toga
.. _submit a pull request: https://github.com/beeware/toga/pulls