Bottle micro web services framework 8 : Bucket List App IV - route validation, regex, and static_file
List of Bottle Micro Web Services Tutorials
- Introduction
- Static files
- Template
- json
- Bucket List App I - sqlite, route, and template
- Bucket List App II - get & post
- Bucket List App III - Editing
- Bucket List App IV - route validation, regex, and static_file
- Bucket List App V - json
- json to html table
- Forms - Get & Post
- Forms - Get & Post with editable and checkbox table cells
Continued from the previous chapter, Bucket List App III, in this chapter, we'll cover the key features of Bottle framework by upgrading the Buck list app we made.
The list of wishes is shown below:
Our dynamic routes is working fine, however, for many cases, it makes sense to validate the dynamic part of the route. For example, we expect an integer number in our route for editing above. But other than an integer are received such as a float or characters, the Python interpreter throws an exception, which is not what we want.
Bottle offers a way to validate the 'input' prior to passing it to the function. In order to apply the validator, we need to extend our code something like this:
@route('/edit/<wishId:int>', method='GET')
Integer input works fine as before:
However, any string input won't pass the validation:
Here is our Python code (bucket.py) so far:
import sqlite3 from bottle import route, run, template, request HOST = 'localhost' PORT = 8080 @route('/bucket') def bucket_list(): conn = sqlite3.connect('bucket.db') c = conn.cursor() c.execute("SELECT id, wish, status FROM bucket WHERE status LIKE '0' OR '1'") result = c.fetchall() c.close() return template('wish_table', rows=result) @route('/new', method='GET') def new_item(): if request.GET.get('save','').strip(): new = request.GET.get('wish', '').strip() conn = sqlite3.connect('bucket.db') c = conn.cursor() c.execute("INSERT INTO bucket (wish,status) VALUES (?,?)", (new,1)) new_id = c.lastrowid conn.commit() c.close() return '<p>The new wish was inserted into the database, the ID is %s</p>' % new_id else: return template('new_wish.tpl') @route('/edit/<wishId:int>', method='GET') def edit_item(wishId): if request.GET.get('save','').strip(): edit = request.GET.get('wish','').strip() status = request.GET.get('status','').strip() if status == 'open': status = 1 else: status = 0 conn = sqlite3.connect('bucket.db') c = conn.cursor() c.execute("UPDATE bucket SET wish = ?, status = ? WHERE id LIKE ?", (edit, status, wishId)) conn.commit() return '<p>The item number %s was successfully updated</p>' % wishId else: conn = sqlite3.connect('bucket.db') c = conn.cursor() c.execute("SELECT wish FROM bucket WHERE id LIKE ?", str(wishId)) cur_data = c.fetchone() return template('edit_wish', old=cur_data, wishId=wishId) run(host=HOST, port=PORT, debug=True)
Bottle can also handle dynamic routes with regular expression. Let's assume that all single items in our Bucket list should be accessible by their plain number, by a term like e.g. 'item1'. For obvious reasons, you do not want to create a route for every item. Furthermore, the simple dynamic routes do not work either, as part of the route, the term 'item' is static.
<name:re:regexp>
So, in our code, we use:
@route('/item/<item:re:[0-9]+>') def show_item(item):
With this show_item() function, now our code (bucket.py) looks like this:
import sqlite3 from bottle import route, run, template, request HOST = 'localhost' PORT = 8080 @route('/bucket') def bucket_list(): conn = sqlite3.connect('bucket.db') c = conn.cursor() c.execute("SELECT id, wish, status FROM bucket WHERE status LIKE '0' OR '1'") result = c.fetchall() c.close() return template('wish_table', rows=result) @route('/new', method='GET') def new_item(): if request.GET.get('save','').strip(): new = request.GET.get('wish', '').strip() conn = sqlite3.connect('bucket.db') c = conn.cursor() c.execute("INSERT INTO bucket (wish,status) VALUES (?,?)", (new,1)) new_id = c.lastrowid conn.commit() c.close() return '<p>The new wish was inserted into the database, the ID is %s</p>' % new_id else: return template('new_wish.tpl') @route('/edit/<wishId:int>', method='GET') def edit_item(wishId): if request.GET.get('save','').strip(): edit = request.GET.get('wish','').strip() status = request.GET.get('status','').strip() if status == 'open': status = 1 else: status = 0 conn = sqlite3.connect('bucket.db') c = conn.cursor() c.execute("UPDATE bucket SET wish = ?, status = ? WHERE id LIKE ?", (edit, status, wishId)) conn.commit() return '<p>The item number %s was successfully updated</p>' % wishId else: conn = sqlite3.connect('bucket.db') c = conn.cursor() c.execute("SELECT wish FROM bucket WHERE id LIKE ?", str(wishId)) cur_data = c.fetchone() return template('edit_wish', old=cur_data, wishId=wishId) @route('/item/<item:re:[0-9]+>') def show_item(item): conn = sqlite3.connect('bucket.db') c = conn.cursor() c.execute("SELECT wish FROM bucket WHERE id LIKE ?", (item)) result = c.fetchall() c.close() if not result: return 'This item number does not exist!' else: return 'Wish: %s' %result[0] run(host=HOST, port=PORT, debug=True)
Sometimes it may become necessary to associate a route not to a Python function, but just return a static file. So if you have for example a help page for your application, you may want to return this page as plain HTML. This works as follows:
from bottle import route, run, debug, template, request, static_file @route('/help') def help(): return static_file('help.html', root='/home/k/TEST/Py/Bottle/Bucket/')
First, we need to import the static_file function from Bottle. As we can see, the return static_file statement replaces the return statement. It takes at least two arguments: the name of the file to be returned and the path to the file. Even if the file is in the same directory as our application, the path needs to be stated. But in this case, we can use '.' as a path, too. Bottle guesses the MIME-type of the file automatically, but in case we like to state it explicitly, add a third argument to static_file, which would be here mimetype='text/html'
I saved the 'help.html' in '/home/k/TEST/Py/Bottle/Bucket/' directory. It is returned as a static_file as shown below:
Python tutorial
Python Home
Introduction
Running Python Programs (os, sys, import)
Modules and IDLE (Import, Reload, exec)
Object Types - Numbers, Strings, and None
Strings - Escape Sequence, Raw String, and Slicing
Strings - Methods
Formatting Strings - expressions and method calls
Files and os.path
Traversing directories recursively
Subprocess Module
Regular Expressions with Python
Regular Expressions Cheat Sheet
Object Types - Lists
Object Types - Dictionaries and Tuples
Functions def, *args, **kargs
Functions lambda
Built-in Functions
map, filter, and reduce
Decorators
List Comprehension
Sets (union/intersection) and itertools - Jaccard coefficient and shingling to check plagiarism
Hashing (Hash tables and hashlib)
Dictionary Comprehension with zip
The yield keyword
Generator Functions and Expressions
generator.send() method
Iterators
Classes and Instances (__init__, __call__, etc.)
if__name__ == '__main__'
argparse
Exceptions
@static method vs class method
Private attributes and private methods
bits, bytes, bitstring, and constBitStream
json.dump(s) and json.load(s)
Python Object Serialization - pickle and json
Python Object Serialization - yaml and json
Priority queue and heap queue data structure
Graph data structure
Dijkstra's shortest path algorithm
Prim's spanning tree algorithm
Closure
Functional programming in Python
Remote running a local file using ssh
SQLite 3 - A. Connecting to DB, create/drop table, and insert data into a table
SQLite 3 - B. Selecting, updating and deleting data
MongoDB with PyMongo I - Installing MongoDB ...
Python HTTP Web Services - urllib, httplib2
Web scraping with Selenium for checking domain availability
REST API : Http Requests for Humans with Flask
Blog app with Tornado
Multithreading ...
Python Network Programming I - Basic Server / Client : A Basics
Python Network Programming I - Basic Server / Client : B File Transfer
Python Network Programming II - Chat Server / Client
Python Network Programming III - Echo Server using socketserver network framework
Python Network Programming IV - Asynchronous Request Handling : ThreadingMixIn and ForkingMixIn
Python Coding Questions I
Python Coding Questions II
Python Coding Questions III
Python Coding Questions IV
Python Coding Questions V
Python Coding Questions VI
Python Coding Questions VII
Python Coding Questions VIII
Python Coding Questions IX
Python Coding Questions X
Image processing with Python image library Pillow
Python and C++ with SIP
PyDev with Eclipse
Matplotlib
Redis with Python
NumPy array basics A
NumPy Matrix and Linear Algebra
Pandas with NumPy and Matplotlib
Celluar Automata
Batch gradient descent algorithm
Longest Common Substring Algorithm
Python Unit Test - TDD using unittest.TestCase class
Simple tool - Google page ranking by keywords
Google App Hello World
Google App webapp2 and WSGI
Uploading Google App Hello World
Python 2 vs Python 3
virtualenv and virtualenvwrapper
Uploading a big file to AWS S3 using boto module
Scheduled stopping and starting an AWS instance
Cloudera CDH5 - Scheduled stopping and starting services
Removing Cloud Files - Rackspace API with curl and subprocess
Checking if a process is running/hanging and stop/run a scheduled task on Windows
Apache Spark 1.3 with PySpark (Spark Python API) Shell
Apache Spark 1.2 Streaming
bottle 0.12.7 - Fast and simple WSGI-micro framework for small web-applications ...
Flask app with Apache WSGI on Ubuntu14/CentOS7 ...
Fabric - streamlining the use of SSH for application deployment
Ansible Quick Preview - Setting up web servers with Nginx, configure enviroments, and deploy an App
Neural Networks with backpropagation for XOR using one hidden layer
NLP - NLTK (Natural Language Toolkit) ...
RabbitMQ(Message broker server) and Celery(Task queue) ...
OpenCV3 and Matplotlib ...
Simple tool - Concatenating slides using FFmpeg ...
iPython - Signal Processing with NumPy
iPython and Jupyter - Install Jupyter, iPython Notebook, drawing with Matplotlib, and publishing it to Github
iPython and Jupyter Notebook with Embedded D3.js
Downloading YouTube videos using youtube-dl embedded with Python
Machine Learning : scikit-learn ...
Django 1.6/1.8 Web Framework ...
Ph.D. / Golden Gate Ave, San Francisco / Seoul National Univ / Carnegie Mellon / UC Berkeley / DevOps / Deep Learning / Visualization