Skip to content

This is a very simple Python library to interface with the Electron-Packager command line tool.

Notifications You must be signed in to change notification settings

b4oshany/python-electron

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

python-electron

This is a very simple Python library to interface with the Electron-Packager command line tool.

Key concepts

  • Interact with the Electron-Packager directly from Python
  • Enables building and archiving Electron applications from your Python code

Usage

Example:

import electron

application = electron.App(
    APPLICATION_NAME,
    APPLICATION_FOLDER
)
application.build('android') # or any installed platform
application.archive('ios') # or any installed platform

About

This is a very simple Python library to interface with the Electron-Packager command line tool.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages