October 2016
Beginner
378 pages
8h 21m
English
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "By using the to_bokehmethod, any chart and plot from other packages can be easily ported into Bokeh."
A block of code is set as follows:
File: bottle1.py from bottle import route, run, template port = 9099 @route('/personal/<name>') def homepage(name): return template('Hi <b>{{name}}</b>!', name=name) print("Try going to http://localhost:{}/personal/Tom".format(port)) print("Try going to http://localhost:{}/personal/Carl".format(port)) ...Read now
Unlock full access