Skip to content
/ PeachPy Public

A minimalist CLI framework for Python, uses the same interface as CherryPy

Notifications You must be signed in to change notification settings

0kso/PeachPy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

PeachPy

A minimalist CLI framework for Python, uses the same interface as CherryPy

PeachPy should be as easy as :


import peachpy
class HelloWorld(object):
    def index(self):
        return "Hello World!"
    index.exposed = True

# Interactive mode
peachpy.quickstart(HelloWorld())
# Or on-time mode
peachpy.run(HelloWorld())

License

This work is licensed under Gnu Lesser General Public License

LGPL Logo

About

A minimalist CLI framework for Python, uses the same interface as CherryPy

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages