Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/talpor/python-cordova
- Owner: talpor
- Created: 2014-08-04T03:26:12.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-11-07T16:35:44.000Z (about 9 years ago)
- Last Synced: 2024-11-03T06:20:49.458Z (about 2 months ago)
- Language: Python
- Size: 156 KB
- Stars: 7
- Watchers: 4
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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 codeUsage
===============================================.. code-block:: python
import cordovaapplication = cordova.App(
'PhoneGap Application',
APPLICATION_ROOT
)application.build('android') # or any installed platform
application.archive('ios') # or any installed platform