pip install --upgrade pico
# example.py
import pico
from pico import PicoApp
@pico.expose()
def hello(who):
s = "hello %s!" % who
return s
@pico.expose()
def goodbye(who):
s = "goodbye %s!" % who
return s
app = PicoApp()
app.register_module(__name__)
python -m pico.server example
curl https://localhost:4242/example/hello/?who="fergal"
curl https://localhost:4242/example/goodbye/?who="fergal"
<!DOCTYPE HTML>
<html>
<head>
<title>Pico Example</title>
<!-- Load the pico Javascript client, always automatically available at /pico.js -->
<script src="/pico.js"></script>
<!-- Load our example module -->
<script src="/example.js"></script>
</head>
<body>
<p id="message"></p>
<script>
var example = pico.importModule('example')
example.hello("Fergal").then(function(response){
document.getElementById('message').innerHTML = response;
});
</script>
</body>
</html>
import pico.client
example = pico.client.load('https://localhost:4242/example')
example.hello('World')