picoweb icon indicating copy to clipboard operation
picoweb copied to clipboard

Really minimal web application framework for the Pycopy project (minimalist Python dialect) and its "uasyncio" async framework

Results 22 picoweb issues
Sort by recently updated
recently updated
newest added

There's growing need to make a choice for subj. My idea: Writing another one only fragments the space. While a complete reimplementation may be needed eventually, doing incremental changes is...

Small update to separate functions for different methods. Use like: @app.route('/', methods=['GET']) def get_func(): pass @app.route('/', methods=['POST']) def post_func(): pass Or (need check): ROUTES = [ # URI string matches......