Difference between revisions of "Projects:Badge/woezel"
From SHA2017 Wiki
(→woezel) |
(→Issues) |
||
| (2 intermediate revisions by 2 users not shown) | |||
| Line 8: | Line 8: | ||
==Note== | ==Note== | ||
| − | woezel checks for versions and in contrary to <code>upip</code> won't always overwrite installed app, each app is installed in | + | woezel checks for versions and in contrary to <code>upip</code> won't always overwrite installed app, each app is installed in its own folder in <code>/lib/</code> |
Don't store application data in the application folder, before updating woezel deletes all files from the application folder! | Don't store application data in the application folder, before updating woezel deletes all files from the application folder! | ||
| Line 16: | Line 16: | ||
woezel.install('test') | woezel.install('test') | ||
woezel.search() | woezel.search() | ||
| − | + | woezel.search('test')</nowiki> | |
==Advanced== | ==Advanced== | ||
| Line 23: | Line 23: | ||
Example: | Example: | ||
<nowiki>woezel.install('game_of_life', None, True)</nowiki> | <nowiki>woezel.install('game_of_life', None, True)</nowiki> | ||
| − | |||
| − | |||
| − | |||
Latest revision as of 14:06, 12 August 2017
Contents
woezel
woezel is a variant on pip used to install badge software.
You'll probably never need to use this, since software can be installed from the Hatchery using a graphical tool.
Note
woezel checks for versions and in contrary to upip won't always overwrite installed app, each app is installed in its own folder in /lib/
Don't store application data in the application folder, before updating woezel deletes all files from the application folder!
Basic use
import woezel
woezel.install('test')
woezel.search()
woezel.search('test')
Advanced
woezel.install(name, path, force_reinstall)
Example:
woezel.install('game_of_life', None, True)