lastopt is a Python utility for quickly creating command line utilities using
Project description
lastopt
=======
lastopt is a Python utility for quickly creating command line utilities using
function and class introspection.
Example
-------
```python
#!/usr/bin/env python
import lastopt
def install(package, dependencies=False):
print "install %s, with dependencies: %s" % (
package, dependencies and 'yes' or 'no')
class Env(object):
def __init__(self, name):
self.name = name
def start(self, package):
print "starting %s.%s" % (self.name, package)
lastopt.main([install, Env])
```
$ ./command
Usage: ./command COMMAND [ARGS]
The available commands are:
env
install
$ ./command install --help
Usage: ./command install <package> [options]
Options:
-h, --help show this help message and exit
--nodependencies unset --dependencies
-d, --dependencies (default: False)
$ ./command install redis -d
install redis, with dependencies: yes
$ ./command env production
Usage: ./command env production COMMAND [ARGS]
The available commands are:
start
$ ./command env production start frontend
starting production.frontend
History
-------
lastopt is directly inspired by Simon Willison's clever introspection hack from
a few years back: https://github.com/simonw/optfunc
=======
lastopt is a Python utility for quickly creating command line utilities using
function and class introspection.
Example
-------
```python
#!/usr/bin/env python
import lastopt
def install(package, dependencies=False):
print "install %s, with dependencies: %s" % (
package, dependencies and 'yes' or 'no')
class Env(object):
def __init__(self, name):
self.name = name
def start(self, package):
print "starting %s.%s" % (self.name, package)
lastopt.main([install, Env])
```
$ ./command
Usage: ./command COMMAND [ARGS]
The available commands are:
env
install
$ ./command install --help
Usage: ./command install <package> [options]
Options:
-h, --help show this help message and exit
--nodependencies unset --dependencies
-d, --dependencies (default: False)
$ ./command install redis -d
install redis, with dependencies: yes
$ ./command env production
Usage: ./command env production COMMAND [ARGS]
The available commands are:
start
$ ./command env production start frontend
starting production.frontend
History
-------
lastopt is directly inspired by Simon Willison's clever introspection hack from
a few years back: https://github.com/simonw/optfunc
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
lastopt-0.0.2.tar.gz
(4.6 kB
view details)
File details
Details for the file lastopt-0.0.2.tar.gz
.
File metadata
- Download URL: lastopt-0.0.2.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1421e940c67aeb8bf25153fa591e9e37bc0f40d0aba4cbb3d5725df63c67635b |
|
MD5 | f78393c73c86b7e6b1bab6b69434ae10 |
|
BLAKE2b-256 | a77b9c5b602e8c607afac5a061eab99684e89c5d163e7081c208c2f2a7139ea8 |