Example Exercise [Lab13] BBIOServer. BBIOServer In the beginning, import the library bbio as usual...

Post on 31-Dec-2015

213 views 0 download

Transcript of Example Exercise [Lab13] BBIOServer. BBIOServer In the beginning, import the library bbio as usual...

Example

Exercise

[Lab13] BBIOServer

BBIOServer

In the beginning, import the library bbio as usual and the BBIOServer.

The BBIOServer provides definition for an uniform website.

BBIOServer() has three option asex:BBIOServer(port=8000, verbose=false, blocking = true

BBIOServer

In the setup(), we use the function defined in BBIOServer to form a webpage.

add_text(“string”) for information on your webpage.

add_entry() for creat an input blank on webpage

BBIOServer

add_heading(“string”) for creating a title. add_button() for a button. add_monitor() for displaying info on the

page. server.start in the end of setup() is to

launch those page online.

BBIOServer

Because the default setting is in the blocking mode, loop() will not be execute before we using ctrl+c to terminate the server.

Exercise

Try to connect your bbio website.

Try to change the port number to 720.

Try to make a page with your id on it and take it as your home page.