Skip to main content

Create modern cross-platform apps in Python using HTML and CSS

Project description

Neutron is ment to be an intuative way of creating GUI applications using HTML, CSS and Python. It is built on top of PyQt6 and uses the QtWebEngine.

You can get started contributing via CONTRIBUTING.md.

Installation

pip install neutron-web

Example

For a template project see TEMPLATE or see the to-do app.

Usage

The Neutron api is designed to be very similar to the JavaScript DOM api. You can imagine the Window class as the document object in JavaScript (altough it is still missing a lot of features). Ideally you should be able to use Neutron as you would use the JavaScript DOM api, altough there are some differences.

Neutron features

Neutron.event(function : Callable)) -> str

Use this function when passing a python function to an event listener or javascript method that requires a callable as parameter. Return the new javascript "bridge" function as str.

Window(title: str, css: str, position: Tuple[int, int], size: Tuple[int, int]) -> Window

Create a window.

Window.run_javascript(javascript: str) -> str

Evaluate JavaScript code.

Window.display(file: str, html: str, pyfunctions: List[Callable], encoding: str) -> None

Used to parse your html code. You run it before showing the window. It takes a path to your htlm file or html code (if file is not provided), a list of python functions and an encoding. The encoding is the encoding of your html file. The python functions are the functions you want to able to directly call from your html file. See the to-do app example.

Window.show() -> None / Window.close() -> None

Show and close the window.

Building your project

To build a Neutron project you first need pyinstaller, install pyinstaller through pip: pip install pyinstaller. Then run the script below in your command prompt/terminal. You can also use other programs to build your project such as py2exe if you prefer.

Note: If you are on linux use ":" instead of ";"

pyinstaller YOUR_PYTHON_FILE.py --noconsole --onefile --add-data="YOUR_HTML_FILE.html;." --add-data="YOUR_CSS_FILE.css;."

You don't need to use --add-data if your project doesn't have a CSS or HTML file

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

neutron_web-0.5.1-py3-none-any.whl (9.1 kB view details)

Uploaded Python 3

File details

Details for the file neutron_web-0.5.1-py3-none-any.whl.

File metadata

  • Download URL: neutron_web-0.5.1-py3-none-any.whl
  • Upload date:
  • Size: 9.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.2

File hashes

Hashes for neutron_web-0.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 c8ca0d6abda9028da47bd41e6b77e0551847c4ded40c575989d14435bd8ce996
MD5 57375ff0e7729f10b01fbffc94bc4c04
BLAKE2b-256 33844765905cf3e2ad407119a2e6477de60028e9cfe7f89fa92b57e4c978c4af

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page