Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/talpor/python-cordova

A Python library for interacting with the Cordova CLI
https://github.com/talpor/python-cordova

Last synced: about 1 month ago
JSON representation

A Python library for interacting with the Cordova CLI

Awesome Lists containing this project

README

        

===============================================
python-cordova
===============================================

This is a very simple Python library to interface with the Cordova (Phonegap) command line tool.

Key concepts
===============================================
- Interact with the Cordova CLI directly from Python
- Enables building and archiving PhoneGap applications from your Python code

Usage
===============================================

.. code-block:: python
import cordova

application = cordova.App(
'PhoneGap Application',
APPLICATION_ROOT
)

application.build('android') # or any installed platform
application.archive('ios') # or any installed platform