Skip to main content

No project description provided

Project description

Pylonic 👋

Pylonic is the Python backend version of Electron and Tauri, designed to simplify desktop application development. This open-source project, built on QtWebEngine and PySide6, provides seamless integration with various Python features, making it easy to build powerful applications effortlessly.

example image

🚀 Why Pylonic?

With Pylonic, you can leverage the full power of Python in your desktop applications. Its simplicity and flexibility make it the perfect choice for both beginners and experienced developers looking for a Python-focused alternative to Electron or Tauri. It is especially optimized for building AI-powered desktop applications.

Key Features 🚀

  • Web-based GUI Generation: Easily build the UI for desktop applications using HTML, CSS, and JavaScript.
  • System Tray Icon Support 🖥️: Implement system tray icons with ease to add various utilities to your app.
  • Multi-Window Management: Create and manage multiple windows effortlessly.
  • Bridge API between Python and JavaScript 🌉: Facilitates smooth communication between Python and JavaScript to integrate various functionalities.
  • Single Instance Application Support: Prevents duplicate app instances and manages applications with a single instance.
  • Comprehensive Desktop App Features: Provides a wide range of functions for desktop apps, including monitor management, desktop capture, notifications, shortcuts, and clipboard access.
  • Clean and Intuitive Code Structure: Offers a simple and readable code structure that enhances developer productivity.
  • Live UI Development Experience: Experience real-time UI updates as you modify your code, providing an efficient development workflow.
  • Cross-Platform Support: Runs on various operating systems, including Windows, macOS, and Linux.
  • Integration with Various Frontend Libraries: Supports integration with frontend frameworks like HTML/CSS/JS and React.

Documentation 📚

Pylonic Documentation

Create Project 📦

Creating a HTML/CSS/JS + Pylon Project 🌐

https://github.com/pylonic/pylonic_html_boilerplate

Creating a React + Vite + Pylon Project ⚛️

https://github.com/pylonic/pylonic_react_boilerplate

Custom Your Boilerplate 🔨

pip install pylonic

Package URL: https://pypi.org/project/pylon-app/

Usage 🛠️

Creating a Basic Application

from pylon import PylonApp

app = PylonApp(single_instance=True)

# set icon
if (is_production()):
    app.set_icon(os.path.join(get_production_path(), "icons/icon.png"))
else:
    app.set_icon("src-pylon/icons/icon.png")

# create window
window = app.create_window(
    title="Pylon Browser1",
    js_apis=[CustomAPI()],
    dev_tools=True
)

window.set_size(800, 600)

# load html
if (is_production()):
    window.set_dev_tools(False)
    window.load_file(os.path.join(get_production_path(), "src/index.html"))
else:
    window.load_file("src/index.html")

# show window
window.show_and_focus()

app.run()

Setting Up System Tray

from pylon import TrayEvent

def on_double_click():
    print("Tray icon was double-clicked.")

app.set_tray_actions({
    TrayEvent.DoubleClick: on_double_click,
})
app.set_tray_menu_items([
    {"label": "Show Window", "callback": app.show_main_window},
    {"label": "Quit", "callback": app.quit},
])
app.setup_tray()
// CustomAPI method usage example
document.addEventListener('pylonReady', function () {
  // Using the echo method
  pylon.CustomAPI.echo('Hello', 42).then((result) => {
    console.log(result); // "Message received in Python: Hello, 42" output
  });

  // Using the getAppVersion method
  pylon.CustomAPI.getAppVersion().then((version) => {
    console.log('App version:', version); // "App version: 1.0.0" output
  });

  // Example using async/await syntax
  async function useCustomAPI() {
    const echoResult = await pylon.CustomAPI.echo('Test', 100);
    console.log(echoResult);

    const appVersion = await pylon.CustomAPI.getAppVersion();
    console.log('Current app version:', appVersion);
  }

  useCustomAPI();

  // Button click event binding
  document.getElementById('myButton').addEventListener('click', function () {
    // Using the create_window method
    pylon.CustomAPI.create_window().then((windowId) => {
      console.log('New window ID:', windowId); // "New window ID: [generated window ID]" output
    });
  });
});

Using React

import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import App from './App.jsx';
import './index.css';

document.addEventListener('pylonReady', function () {
  createRoot(document.getElementById('root')).render(
    <StrictMode>
      <App />
    </StrictMode>
  );
});

function App() {
  console.log('Pylon is ready');

  window.pylon.CustomAPI.getAppVersion().then((version) => {
    console.log('App version:', version); // "App version: 1.0.0"
  });
  return <h1>Hello World</h1>;
}

License 📄

This project is licensed under the terms of the Apache License 2.0. See the LICENSE file for details.

This project uses PySide6, which is licensed under the LGPL (Lesser General Public License).

Contributing 🤝

(Add information about how to contribute here)

Project details


Download files

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

Source Distribution

pylon_app-0.9.5.tar.gz (19.0 kB view details)

Uploaded Source

Built Distribution

pylon_app-0.9.5-py3-none-any.whl (18.8 kB view details)

Uploaded Python 3

File details

Details for the file pylon_app-0.9.5.tar.gz.

File metadata

  • Download URL: pylon_app-0.9.5.tar.gz
  • Upload date:
  • Size: 19.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.12.2 Windows/10

File hashes

Hashes for pylon_app-0.9.5.tar.gz
Algorithm Hash digest
SHA256 c5340bb35b9b3bcf8eca990a6db2b23c4eca4a25709a15723046196f2f75b1d2
MD5 cc823f0b1f1917641b65896035553907
BLAKE2b-256 c1cded94f898250b8eb48084954860fe258177832538dc63150a741316ddbd1d

See more details on using hashes here.

File details

Details for the file pylon_app-0.9.5-py3-none-any.whl.

File metadata

  • Download URL: pylon_app-0.9.5-py3-none-any.whl
  • Upload date:
  • Size: 18.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.12.2 Windows/10

File hashes

Hashes for pylon_app-0.9.5-py3-none-any.whl
Algorithm Hash digest
SHA256 b9239351beef52c17b78d00410a143f3a9c96da60e8d39448a746e0348a0c1d9
MD5 06619e66c0c556aea553d86bb9de6825
BLAKE2b-256 d74602f7c47ae9d6b64ba4e37cd5e720874b1f8ba9b4e2a2948d504b5f7c05e4

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 Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page