All Projects → pyrustic → Pyrustic

pyrustic / Pyrustic

Licence: mit
Lightweight framework and software suite to help develop, package, and publish Python desktop applications

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Pyrustic

Chronophore
Desktop app for tracking student sign-ins in a tutoring center.
Stars: ✭ 6 (-92%)
Mutual labels:  database, sqlite, desktop-app, tkinter
Dbeaver
Free universal database tool and SQL client
Stars: ✭ 23,752 (+31569.33%)
Mutual labels:  database, sqlite, gui
Biota
A simple database framework for Fauna
Stars: ✭ 54 (-28%)
Mutual labels:  database, framework
Nodbi
Document DBI connector for R
Stars: ✭ 56 (-25.33%)
Mutual labels:  database, sqlite
Electron Angular4 Sqlite3
Sample project to show how to build a desktop app using Electron, Angular 4 and Sqlite3
Stars: ✭ 60 (-20%)
Mutual labels:  sqlite, desktop-app
Hunt Entity
An object-relational mapping (ORM) framework for D language (Similar to JPA / Doctrine), support PostgreSQL and MySQL.
Stars: ✭ 51 (-32%)
Mutual labels:  database, sqlite
Dbbench
🏋️ dbbench is a simple database benchmarking tool which supports several databases and own scripts
Stars: ✭ 52 (-30.67%)
Mutual labels:  database, sqlite
Sql.js
A javascript library to run SQLite on the web.
Stars: ✭ 9,594 (+12692%)
Mutual labels:  database, sqlite
Perfect Sqlite
A stand-alone Swift wrapper around the SQLite 3 client library.
Stars: ✭ 42 (-44%)
Mutual labels:  database, sqlite
Dbmigrations
A library for the creation, management, and installation of schema updates for relational databases.
Stars: ✭ 67 (-10.67%)
Mutual labels:  database, sqlite
App
Reusable framework for micro services & command line tools
Stars: ✭ 66 (-12%)
Mutual labels:  database, framework
D2sqlite3
A small wrapper around SQLite for the D programming language
Stars: ✭ 67 (-10.67%)
Mutual labels:  database, sqlite
Fluent Sqlite Driver
Fluent driver for SQLite
Stars: ✭ 51 (-32%)
Mutual labels:  database, sqlite
Rqlite
The lightweight, distributed relational database built on SQLite
Stars: ✭ 9,147 (+12096%)
Mutual labels:  database, sqlite
East
node.js database migration tool
Stars: ✭ 53 (-29.33%)
Mutual labels:  database, sqlite
Laravel
Muito conteúdo sobre o framework Laravel. Controllers, Models, Views, Blade, Migrations, Seeders, Middlewares, Autenticação, Autorização, Providers, pacotes, laravel 8, etc.
Stars: ✭ 43 (-42.67%)
Mutual labels:  sqlite, framework
Ttkwidgets
A collection of widgets for Tkinter's ttk extensions by various authors
Stars: ✭ 57 (-24%)
Mutual labels:  gui, tkinter
Sqlite Web
Web-based SQLite database browser written in Python
Stars: ✭ 1,169 (+1458.67%)
Mutual labels:  database, sqlite
Goqu
SQL builder and query library for golang
Stars: ✭ 984 (+1212%)
Mutual labels:  database, sqlite
Android Debug Database
A library for debugging android databases and shared preferences - Make Debugging Great Again
Stars: ✭ 7,946 (+10494.67%)
Mutual labels:  database, sqlite
Cover

The Pyrustic software suite with the cyberpunk theme

Pyrustic

Pyrustic is a lightweight framework and software suite to help develop, package, and publish Python desktop applications.

This is an emailware. You are encouraged to send a feedback.

Demo | Installation | Documentation | Hubstore

Table Of Contents

Overview

Python is one of the world's most popular programming languages. There are some great frameworks for building web application with Python. Pyrustic targets Python desktop application development.

A framework alone is not enough to build a great app. Pyrustic comes with batteries included, just like the Python language itself which comes with an amazing standard library. Pyrustic is a lightweight framework and software suite to help develop, package, and publish Python desktop applications.

Pyrustic is flexible enough that you can use both the framework and the software suite or just one of the components. For example, you can decide to only use the Table widget from thepyrustic.widget package in your existing Tkinter codebase. Another example is to only use Pyrustic to build a Wheel and then publish it.

The framework and the software suite are useful for a new project as well as for an existing project.

The Framework

The Framework covers various topics, from GUI to database connection, and more.

Standard Project Structure

The Framework is easy to use and flexible with only three constraints:

  • you have to follow the conventional Python project structure as described in the Python Packaging User Guide;
  • you need to have a __main__.py file in the source package;
  • the project name should be the same as the source package.

In fact, these aren't constraints but simply elegance and proactivity. It will save you a lot of trouble in the future (believe me). By the way, the command-line tool Manager will take care of these details for you, you will just need to link a project directory, then issue the command init.

GUI

Pyrustic proudly uses Tkinter as GUI Toolkit. Remember that the entire software suite was built with Pyrustic.

Some features related to the GUI:

  • The Framework comes with many awesome widgets (mega-widgets to be precise): Table, Scrollbox, Toast, Tree and more.
  • pyrustic.default_style and pyrustic.theme: a style/theme system to make it easy for you to build beautiful GUIs.
  • pyrustic.theme.cyberpunk: a dark theme ready to use, the one used as base theme by the entire software suite.
  • pyrustic.view.View: Pyrustic comes with the concept of views. Views are optional to use and are compatible with Tkinter. In fact, Views provides an intuitive lifecycle mechanism that will make it easier to build and maintain your GUI.
  • and more...

Example of typical __main__.py content

Click to expand (or collapse)
from pyrustic.app import App
from pyrustic.theme.cyberpunk import Cyberpunk
from demo.view.main_view import MainView


def main():
    # The App
    app = App(__package__)
    # Set theme
    app.theme = Cyberpunk()
    # Set view
    app.view = MainView(app)  # it could be a Tkinter object
    # Center the window
    app.center()
    # Lift off !
    app.start()


if __name__ == "__main__":
    main()

Multithreading

It is well known how difficult it is to implement multithreading in a Tkinter application. Pyrustic comes with pyrustic.threadom: a library to make it easy to develop multithreading applications. You can retrieve from the main thread the values returned by the functions executed in other threads and also the exceptions raised by these functions.

Jupitest the Pyrustic Test Runner makes extensive use of the pyrustic.threadom library to perform smooth real-time test reporting.

Fetching Resources

Pyrustic comes with pyrustic.gurl: a library to fetch resources with an implementation of conditional request and a smart responses caching system.

Hubway, the Pyrustic app to publish application, uses this library to fetch resources as a good API citizen.

Communicating Between Components And Event Notification

As a software grows, so is its complexity. Pyrustic comes with pyrustic.com a library to allow loosely coupled components to exchange data, subscribe to and publish events.

Please read the tutorial to get a deep understanding of this section.

Database Access Object

Pyrustic comes with pyrustic.dao: a library to simplify the connection to your SQLite database. This library has some cool features like the ability to specify what I call a creational script that will be used to create a new database when it is missing.

And More

  • pyrustic.jasonix: a library included in the Framework which makes it so cool to work with JSON files. Pyrustic uses extensively this library to store user preferences, configuration data and more. With this library, you can initialize preferences/configuration/whatever files easily, thanks to the internal mechanism of Jasonix that creates a fresh copy of the given default JSON file at the target path. Jasonix also comes with a lock to open JSON files in readonly mode.
  • for obvious reasons (clue: beta), Pyrustic does not take the risk of deleting the files it needs to get rid of, instead it moves them to a trash folder.
  • and more...

The Manager

Manager

Manager

The Manager is the entry point to the software suite. It's an optional command-line application with an API that you can use programmatically to automate your workflow.

Via the Manager you can:

  • create a project with battery included (project structure, pyproject.toml, etc);
  • easily add packages, modules or files to your project;
  • run a specific module of your project;
  • view recent projects list and quickly switch between projects;
  • launch the SQL Editor, Test Runner and Hubway (respectively with commands sql, test and hub);
  • build a distribution package according to setup.cfg and MANIFEST.in;
  • find out if the project is installed ('pip install -e') in the current virtual env;
  • and more...

The build command builds a package that could be published with the application Hubway.

The Software Suite

The lightweight software suite is made of:

  • Rustiql: a graphical SQL Editor;
  • Jupitest: a graphical Test Runner;
  • and Hubway: an application to publish your project.

Rustiql - The Graphical SQL Editor

SQL Editor

SQL Editor

The graphical SQL Editor allows you to:

  • visualize your databases content;
  • edit your database (CRUD);
  • import SQL scripts;
  • open in-memory database;
  • and more...

The SQL Editor makes extensive use of the pyrustic.dao library.

Jupitest - The Graphical Test Runner

Test Runner

Test Runner

The Test Runner reproduces the tree structure of the tests folder in your project. The Test Runner allows you to:

  • run test packages;
  • run test modules;
  • run test classes;
  • and even run test methods;
  • and more...

The Test Runner makes extensive use of the pyrustic.threadom library to perform smooth real-time test reporting.

Hubway - Release Your App To The World

Hubway

Hubway

Hubway is an application that allows you to publish a new release of your application on Github. Once published, you can track your project, see metrics like the number of stargazers, subscribers or releases downloads.

Hubway makes extensive use of pyrustic.gurl to fetch resources.

You need a personal access token to publish a release via Hubway or to increase the API rate limit. It is easy to generate a personal access token. Read this article.

Hubstore - To Connect Apps With Users

Pyrustic Hubstore

Pyrustic - Hubstore

Once you are ready to release a new version of your app, Pyrustic allows you to build a distribution package with the build command and then publish it to Github with Hubway.

Then the question that arises is "How to make the find-download-install-run process easier for users?". This is where the Hubstore comes in.

With Hubstore, it's easy to showcase, distribute, install, and manage your Python desktop apps.

Hubstore is available on PyPI and yes it's also built with Pyrustic !

Do you want to learn more about Hubstore ? Discover Hubstore !

Demo Video

This is the now obsolete demo video but still worth watching.

Watch the video !

I will upload an up-to-date video later.

To open the page in a new tab, you can just do a CTRL+click (on Windows and Linux) or CMD+click (on MacOS) on the link.

Requirements

Pyrustic is a cross platform software suite. It should work on your computer (or nope, haha, versions under 1.0.0 will be considered Beta at best). It is built on Ubuntu with Python 3.5. Pyrustic comes with absolutely no warranty. So... à la guerre comme à la guerre.

As Pyrustic is built with Python for Python developers and also makes extensive use of Tkinter, you may need to learn Python and Tkinter.

Installation

Pyrustic is available on PyPI (the Python Package Index) to simplify the life of Python developers.

If you have never installed a package from PyPI, you must install the pip tool enabling you to download and install a PyPI package. There are several methods which are described on this page.

$ pip install pyrustic

$ pyrustic
Welcome to Pyrustic Manager !
Version: 0.0.9
Type "help" or "?" to list commands. Type "exit" to leave.

(pyrustic) 

To upgrade Pyrustic:

$ pip install pyrustic --upgrade --upgrade-strategy eager

Documentation

Pyrustic is a work in progress. The versions of Pyrustic under 1.0.0 are aimed at an audience of early adopters. Check the FAQ and the Tutorial.

FAQ

Read the FAQ.

Tutorial

Read the Tutorial.

Glossary

Read the Glossary.

Framework Reference

Read the Framework Reference.

External Learning Resources

Interesting links below to get started with Python, Tkinter and SQLite.

Introduction to Python

Introduction to Tkinter

Introduction to SQLite

Note: I am not affiliated with any of these entities. A simple web search brings them up.

Philosophy

Click to expand (or collapse)

Wisdom from Antiquity


He owned a cup which served also as a bowl for food but threw it away when he saw a boy drinking water from his hands and realized one did not even need a cup to sustain oneself.

--Mark, J. J. (2014, August 02). Diogenes of Sinope. Ancient History Encyclopedia. Retrieved from https://www.ancient.eu/Diogenes_of_Sinope/


Advertisement from the twentieth century

IBM

By Cecile & Presbrey advertising agency for International Business Machines. - Scanned from the December 1951 issue of Fortune by User:Swtpc6800 Michael Holley. The image was touched up with Adobe Photo Elements., Public Domain, Link


150 Extra Engineers

An IBM Electronic Calculator speeds through thousands of intricate computations so quickly that on many complex problems it's like having 150 EXTRA Engineers.

No longer must valuable engineering personnel ... now in critical shortage ... spend priceless creative time at routine repetive figuring.

Thousands of IBM Electronic Business Machines ... vital to our nation's defense ... are at work for science, industry, and the armed forces, in laboratories, factories, and offices, helping to meet urgent demands for greater production.

-- IBM International Business Machines

License

Pyrustic is licensed under the terms of the permissive free software license MIT License.

Contact

Click to expand (or collapse)

Hi ! I'm Alex, operating by "Crocker's Rules"

email



Congratz ! You just found the Easter Meggs !

Meme


Meme


Meme


Meme


Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].