Flask Docs
Flask Docs
Release 0.10.1
June 14, 2013
CONTENTS
I
1
Users Guide
Foreword 1.1 What does micro mean? . . . . . . . . . . . . . . . . . . . . . . . . . . . 1.2 Conguration and Conventions . . . . . . . . . . . . . . . . . . . . . . . 1.3 Growing with Flask . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Foreword for Experienced Programmers 2.1 Thread-Locals in Flask . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2.2 Develop for the Web with Caution . . . . . . . . . . . . . . . . . . . . . . 2.3 The Status of Python 3 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Installation 3.1 virtualenv . . . . . . . . . . . . 3.2 System-Wide Installation . . . 3.3 Living on the Edge . . . . . . . 3.4 pip and distribute on Windows . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
1
3 3 3 4 5 5 5 6 7 7 8 9 9 11 11 12 13 17 17 19 22 23 23 25 25 25 26
Quickstart 4.1 A Minimal Application . . . . . 4.2 Debug Mode . . . . . . . . . . . 4.3 Routing . . . . . . . . . . . . . . 4.4 Static Files . . . . . . . . . . . . . 4.5 Rendering Templates . . . . . . . 4.6 Accessing Request Data . . . . . 4.7 Redirects and Errors . . . . . . . 4.8 About Responses . . . . . . . . . 4.9 Sessions . . . . . . . . . . . . . . 4.10 Message Flashing . . . . . . . . . 4.11 Logging . . . . . . . . . . . . . . 4.12 Hooking in WSGI Middlewares 4.13 Deploying to a Web Server . . .
Tutorial 27 5.1 Introducing Flaskr . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27 5.2 Step 0: Creating The Folders . . . . . . . . . . . . . . . . . . . . . . . . . 28 5.3 Step 1: Database Schema . . . . . . . . . . . . . . . . . . . . . . . . . . . 29 i
Step 2: Application Setup Code . . . . Step 3: Creating The Database . . . . Step 4: Request Database Connections Step 5: The View Functions . . . . . . Step 6: The Templates . . . . . . . . . Step 7: Adding Style . . . . . . . . . . Bonus: Testing the Application . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . .
29 31 32 33 35 37 37 39 39 39 40 40 41 42 43 43 43 44 45 46 46 47 48 48 51 51 52 53 54
Templates 6.1 Jinja Setup . . . . . . . . . 6.2 Standard Context . . . . . 6.3 Standard Filters . . . . . . 6.4 Controlling Autoescaping 6.5 Registering Filters . . . . 6.6 Context Processors . . . .
Testing Flask Applications 7.1 The Application . . . . . . . . . . 7.2 The Testing Skeleton . . . . . . . . 7.3 The First Test . . . . . . . . . . . . 7.4 Logging In and Out . . . . . . . . 7.5 Test Adding Messages . . . . . . . 7.6 Other Testing Tricks . . . . . . . . 7.7 Faking Resources and Context . . 7.8 Keeping the Context Around . . . 7.9 Accessing and Modifying Sessions Logging Application Errors 8.1 Error Mails . . . . . . . . . 8.2 Logging to a File . . . . . . 8.3 Controlling the Log Format 8.4 Other Libraries . . . . . . . . . . . . . . . . . . . . . . .
Debugging Application Errors 57 9.1 When in Doubt, Run Manually . . . . . . . . . . . . . . . . . . . . . . . . 57 9.2 Working with Debuggers . . . . . . . . . . . . . . . . . . . . . . . . . . . 57 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 59 59 60 62 63 63 64
10 Conguration Handling 10.1 Conguration Basics . . . . . 10.2 Builtin Conguration Values 10.3 Conguring from Files . . . . 10.4 Conguration Best Practices 10.5 Development / Production . 10.6 Instance Folders . . . . . . .
11 Signals 67 11.1 Subscribing to Signals . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 67 11.2 Creating Signals . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 69 11.3 Sending Signals . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 69 ii
11.4 Signals and Flasks Request Context . . . . . . . . . . . . . . . . . . . . . 70 11.5 Decorator Based Signal Subscriptions . . . . . . . . . . . . . . . . . . . . 70 11.6 Core Signals . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 70 12 Pluggable Views 12.1 Basic Principle . . . . . . . 12.2 Method Hints . . . . . . . . 12.3 Method Based Dispatching 12.4 Decorating Views . . . . . . 12.5 Method Views for APIs . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 75 75 76 77 77 78 81 81 82 82 82 85 85 86 86 87 88 88 91 91 92 92 92 93 94
13 The Application Context 13.1 Purpose of the Application Context 13.2 Creating an Application Context . . 13.3 Locality of the Context . . . . . . . . 13.4 Context Usage . . . . . . . . . . . . 14 The Request Context 14.1 Diving into Context Locals . . 14.2 How the Context Works . . . . 14.3 Callbacks and Errors . . . . . . 14.4 Teardown Callbacks . . . . . . 14.5 Notes On Proxies . . . . . . . . 14.6 Context Preservation on Error . . . . . . . . . . . . . . . . . . . . . . . .
15 Modular Applications with Blueprints 15.1 Why Blueprints? . . . . . . . . . . 15.2 The Concept of Blueprints . . . . . 15.3 My First Blueprint . . . . . . . . . 15.4 Registering Blueprints . . . . . . . 15.5 Blueprint Resources . . . . . . . . 15.6 Building URLs . . . . . . . . . . .
16 Flask Extensions 97 16.1 Finding Extensions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 97 16.2 Using Extensions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 97 16.3 Flask Before 0.8 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 97 17 Working with the Shell 99 17.1 Creating a Request Context . . . . . . . . . . . . . . . . . . . . . . . . . . 99 17.2 Firing Before/After Request . . . . . . . . . . . . . . . . . . . . . . . . . 100 17.3 Further Improving the Shell Experience . . . . . . . . . . . . . . . . . . . 100 18 Patterns for Flask 18.1 Larger Applications . . . . . . 18.2 Application Factories . . . . . 18.3 Application Dispatching . . . . 18.4 Implementing API Exceptions 18.5 Using URL Processors . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 101 101 103 105 108 110 iii
18.6 18.7 18.8 18.9 18.10 18.11 18.12 18.13 18.14 18.15 18.16 18.17 18.18 18.19 18.20 18.21 18.22 18.23 18.24 18.25
Deploying with Distribute . . . . Deploying with Fabric . . . . . . . Using SQLite 3 with Flask . . . . . SQLAlchemy in Flask . . . . . . . Uploading Files . . . . . . . . . . . Caching . . . . . . . . . . . . . . . View Decorators . . . . . . . . . . Form Validation with WTForms . Template Inheritance . . . . . . . . Message Flashing . . . . . . . . . . AJAX with jQuery . . . . . . . . . Custom Error Pages . . . . . . . . Lazily Loading Views . . . . . . . MongoKit in Flask . . . . . . . . . Adding a favicon . . . . . . . . . . Streaming Contents . . . . . . . . Deferred Request Callbacks . . . . Adding HTTP Method Overrides Request Content Checksums . . . Celery Based Background Tasks . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
112 115 119 121 125 128 129 132 135 136 138 141 143 145 147 148 150 151 152 153 155 155 158 161 162 166 169 169 169 169 170 170 170 171
19 Deployment Options 19.1 mod_wsgi (Apache) . . . . . 19.2 Standalone WSGI Containers 19.3 uWSGI . . . . . . . . . . . . . 19.4 FastCGI . . . . . . . . . . . . 19.5 CGI . . . . . . . . . . . . . . . 20 Becoming Big 20.1 Read the Source. . . . . . . . 20.2 Hook. Extend. . . . . . . . . 20.3 Subclass. . . . . . . . . . . . . 20.4 Wrap with middleware. . . . 20.5 Fork. . . . . . . . . . . . . . . 20.6 Scale like a pro. . . . . . . . . 20.7 Discuss with the community.
II
API Reference
Application Object . . . Blueprint Objects . . . . Incoming Request Data Response Objects . . . . Sessions . . . . . . . . . Session Interface . . . . Test Client . . . . . . . . Application Globals . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
173
175 175 194 198 201 202 202 206 206
21.9 21.10 21.11 21.12 21.13 21.14 21.15 21.16 21.17 21.18 21.19 21.20
Useful Functions and Classes Message Flashing . . . . . . . JSON Support . . . . . . . . . Template Rendering . . . . . Conguration . . . . . . . . . Extensions . . . . . . . . . . . Stream Helpers . . . . . . . . Useful Internals . . . . . . . . Signals . . . . . . . . . . . . . Class-Based Views . . . . . . URL Route Registrations . . View Function Options . . .
. . . . . . . . . . . .
. . . . . . . . . . . .
. . . . . . . . . . . .
. . . . . . . . . . . .
. . . . . . . . . . . .
. . . . . . . . . . . .
. . . . . . . . . . . .
. . . . . . . . . . . .
. . . . . . . . . . . .
. . . . . . . . . . . .
. . . . . . . . . . . .
. . . . . . . . . . . .
. . . . . . . . . . . .
. . . . . . . . . . . .
. . . . . . . . . . . .
. . . . . . . . . . . .
. . . . . . . . . . . .
. . . . . . . . . . . .
. . . . . . . . . . . .
. . . . . . . . . . . .
. . . . . . . . . . . .
. . . . . . . . . . . .
. . . . . . . . . . . .
. . . . . . . . . . . .
. . . . . . . . . . . .
207 214 214 217 217 219 220 220 223 224 225 227
III
Additional Notes
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
229
231 231 232 232 233 234 234 235 235 236 236 237 238 238
22 Design Decisions in Flask 22.1 The Explicit Application Object . 22.2 The Routing System . . . . . . . 22.3 One Template Engine . . . . . . 22.4 Micro with Dependencies . . . . 22.5 Thread Locals . . . . . . . . . . . 22.6 What Flask is, What Flask is Not 23 HTML/XHTML FAQ 23.1 History of XHTML . . . . . . 23.2 History of HTML5 . . . . . . 23.3 HTML versus XHTML . . . . 23.4 What does strict mean? . . 23.5 New technologies in HTML5 23.6 What should be used? . . . . . . . . . . . . . . . .
24 Security Considerations 239 24.1 Cross-Site Scripting (XSS) . . . . . . . . . . . . . . . . . . . . . . . . . . . 239 24.2 Cross-Site Request Forgery (CSRF) . . . . . . . . . . . . . . . . . . . . . . 240 24.3 JSON Security . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 240 25 Unicode in Flask 25.1 Automatic Conversion . . . . . . 25.2 The Golden Rule . . . . . . . . . 25.3 Encoding and Decoding Yourself 25.4 Conguring Editors . . . . . . . 26 Flask Extension Development 26.1 Anatomy of an Extension 26.2 Hello Flaskext! . . . . . 26.3 Initializing Extensions . . 26.4 The Extension Code . . . 26.5 Using _app_ctx_stack . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 243 243 244 244 244 247 247 248 249 250 252 v
Teardown Behavior . . . . . Learn from Others . . . . . . Approved Extensions . . . . Extension Import Transition . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
252 253 253 254 255 255 256 257 258 258 259 259 259 259 260 260 261 261 262 262 262 266 266 267 267 269 269 269 271 273 273 274 274 274 274 276 276 277 277 277 278 278 278 279 279
27 Pocoo Styleguide 27.1 General Layout . . . . . . . 27.2 Expressions and Statements 27.3 Naming Conventions . . . 27.4 Docstrings . . . . . . . . . . 27.5 Comments . . . . . . . . . . 28 Python 3 Support 28.1 Requirements . . . 28.2 API Stability . . . . 28.3 Few Users . . . . . 28.4 Small Ecosystem . 28.5 Recommendations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
29 Upgrading to Newer Releases 29.1 Version 0.10 . . . . . . . . 29.2 Version 0.9 . . . . . . . . . 29.3 Version 0.8 . . . . . . . . . 29.4 Version 0.7 . . . . . . . . . 29.5 Version 0.6 . . . . . . . . . 29.6 Version 0.5 . . . . . . . . . 29.7 Version 0.4 . . . . . . . . . 29.8 Version 0.3 . . . . . . . . . 30 Flask Changelog 30.1 Version 0.10.1 30.2 Version 0.10 . 30.3 Version 0.9 . . 30.4 Version 0.8.1 . 30.5 Version 0.8 . . 30.6 Version 0.7.3 . 30.7 Version 0.7.2 . 30.8 Version 0.7.1 . 30.9 Version 0.7 . . 30.10 Version 0.6.1 . 30.11 Version 0.6 . . 30.12 Version 0.5.2 . 30.13 Version 0.5.1 . 30.14 Version 0.5 . . 30.15 Version 0.4 . . 30.16 Version 0.3.1 . 30.17 Version 0.3 . . 30.18 Version 0.2 . . 30.19 Version 0.1 . . vi . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
31 License 31.1 Authors . . . . . . . . . . . 31.2 General License Denitions 31.3 Flask License . . . . . . . . 31.4 Flask Artwork License . . . Index
. . . .
. . . .
. . . .
. . . .
. . . .
. . . .
. . . .
. . . .
. . . .
. . . .
. . . .
. . . .
. . . .
. . . .
. . . .
. . . .
. . . .
. . . .
. . . .
. . . .
. . . .
. . . .
. . . .
. . . .
. . . .
. . . .
vii
viii
Part I
USERS GUIDE
This part of the documentation, which is mostly prose, begins with some background information about Flask, then focuses on step-by-step instructions for web development with Flask.
CHAPTER
ONE
FOREWORD
Read this before you get started with Flask. This hopefully answers some questions about the purpose and goals of the project, and when you should or should not be using it.
CHAPTER
TWO
Depending on the kind of attack, chances are that automated bots are probing for ways to ll your database with spam, links to malicious software, and the like. Flask is no different from any other framework in that you the developer must build with caution, watching for exploits when building to your requirements.
CHAPTER
THREE
INSTALLATION
Flask depends on two external libraries, Werkzeug and Jinja2. Werkzeug is a toolkit for WSGI, the standard Python interface between web applications and a variety of servers for both development and deployment. Jinja2 renders templates. So how do you get all that on your computer quickly? There are many ways you could do that, but the most kick-ass method is virtualenv, so lets have a look at that rst. You will need Python 2.6 or higher to get started, so be sure to have an up-to-date Python 2.x installation. For using Flask with Python 3 have a look at Python 3 Support.
3.1 virtualenv
Virtualenv is probably what you want to use during development, and if you have shell access to your production machines, youll probably want to use it there, too. What problem does virtualenv solve? If you like Python as much as I do, chances are you want to use it for other projects besides Flask-based web applications. But the more projects you have, the more likely it is that you will be working with different versions of Python itself, or at least different versions of Python libraries. Lets face it: quite often libraries break backwards compatibility, and its unlikely that any serious application will have zero dependencies. So what do you do if two or more of your projects have conicting dependencies? Virtualenv to the rescue! Virtualenv enables multiple side-by-side installations of Python, one for each project. It doesnt actually install separate copies of Python, but it does provide a clever way to keep different project environments isolated. Lets see how virtualenv works. If you are on Mac OS X or Linux, chances are that one of the following two commands will work for you:
$ sudo easy_install virtualenv
or even better:
$ sudo pip install virtualenv
One of these will probably install virtualenv on your system. Maybe its even in your package manager. If you use Ubuntu, try:
$ sudo apt-get install python-virtualenv
If you are on Windows and dont have the easy_install command, you must install it rst. Check the pip and distribute on Windows section for more information about how to do that. Once you have it installed, run the same commands as above, but without the sudo prex. Once you have virtualenv installed, just re up a shell and create your own environment. I usually create a project folder and a venv folder within:
$ mkdir myproject $ cd myproject $ virtualenv venv New python executable in venv/bin/python Installing distribute............done.
Now, whenever you want to work on a project, you only have to activate the corresponding environment. On OS X and Linux, do the following:
$ . venv/bin/activate
Either way, you should now be using your virtualenv (notice how the prompt of your shell has changed to show the active environment). Now you can just enter the following command to get Flask activated in your virtualenv:
$ pip install Flask
(On Windows systems, run it in a command-prompt window with administrator privileges, and leave out sudo.)
This will pull in the dependencies and activate the git head as the current version inside the virtualenv. Then all you have to do is run git pull origin to update to the latest version. To just get the development version without git, do this instead:
$ mkdir flask $ cd flask $ virtualenv venv --distribute $ . venv/bin/activate New python executable in venv/bin/python Installing distribute............done. $ pip install Flask==dev ... Finished processing dependencies for Flask==dev
delimit it from existing values with a semicolon. Assuming you are using Python 2.7 on the default path, add the following value:
;C:\Python27\Scripts
And you are done! To check that it worked, open the Command Prompt and execute easy_install. If you have User Account Control enabled on Windows Vista or Windows 7, it should prompt you for administrator privileges. Now that you have easy_install, you can use it to install pip:
> easy_install pip
10
CHAPTER
FOUR
QUICKSTART
Eager to get started? This page gives a good introduction to Flask. It assumes you already have Flask installed. If you do not, head over to the Installation section.
Just save it as hello.py (or something similar) and run it with your Python interpreter. Make sure to not call your application ask.py because this would conict with Flask itself.
$ python hello.py * Running on http://127. . .1:5 /
Now head over to http://127.0.0.1:5000/, and you should see your hello world greeting. So what did that code do? 1. First we imported the Flask class. An instance of this class will be our WSGI application. 2. Next we create an instance of this class. The rst argument is the name of the applications module or package. If you are using a single module (as in this example), you should use __name__ because depending on if its started as application or imported as module the name will be different (__main__ versus the actual import name). This is needed so that Flask knows where to look for 11
templates, static les, and so on. For more information have a look at the Flask documentation. 3. We then use the route() decorator to tell Flask what URL should trigger our function. 4. The function is given a name which is also used to generate URLs for that particular function, and returns the message we want to display in the users browser. 5. Finally we use the run() function to run the local server with our application. The if __name__ == __main__: makes sure the server only runs if the script is executed directly from the Python interpreter and not used as an imported module. To stop the server, hit control-C. Externally Visible Server If you run the server you will notice that the server is only accessible from your own computer, not from any other in the network. This is the default because in debugging mode a user of the application can execute arbitrary Python code on your computer. If you have debug disabled or trust the users on your network, you can make the server publicly available simply by changing the call of the run() method to look like this:
app.run(host= . . . )
Both methods have the exact same effect. Attention Even though the interactive debugger does not work in forking environments (which makes it nearly impossible to use on production servers), it still allows the execution 12
of arbitrary code. This makes it a major security risk and therefore it must never be used on production machines. Screenshot of the debugger in action:
4.3 Routing
Modern web applications have beautiful URLs. This helps people remember the URLs, which is especially handy for applications that are used from mobile devices with slower network connections. If the user can directly go to the desired page without having to hit the index page it is more likely they will like the page and come back next time. As you have seen above, the route() decorator is used to bind a function to a URL. Here are some basic examples:
@app.route(/) def index():
13
But there is more to it! You can make certain parts of the URL dynamic and attach multiple rules to a function.
The following converters exist: int oat path accepts integers like int but for oating point values like the default but also accepts slashes
Unique URLs / Redirection Behavior Flasks URL rules are based on Werkzeugs routing module. The idea behind that module is to ensure beautiful and unique URLs based on precedents laid down by Apache and earlier HTTP servers. Take these two rules:
@app.route(/projects/) def projects(): return The project page @app.route(/about) def about(): return The about page
Though they look rather similar, they differ in their use of the trailing slash in the URL denition. In the rst case, the canonical URL for the projects endpoint has a trailing
14
slash. In that sense, it is similar to a folder on a le system. Accessing it without a trailing slash will cause Flask to redirect to the canonical URL with the trailing slash. In the second case, however, the URL is dened without a trailing slash, rather like the pathname of a le on UNIX-like systems. Accessing the URL with a trailing slash will produce a 404 Not Found error. This behavior allows relative URLs to continue working even if the trailing slash is ommited, consistent with how Apache and other servers work. Also, the URLs will stay unique, which helps search engines avoid indexing the same page twice.
(This also uses the test_request_context() method, explained below. It tells Flask to behave as though it is handling a request, even though we are interacting with it through a Python shell. Have a look at the explanation below. Context Locals). Why would you want to build URLs instead of hard-coding them into your templates? There are three good reasons for this: 1. Reversing is often more descriptive than hard-coding the URLs. More importantly, it allows you to change URLs in one go, without having to remember to 15
change URLs all over the place. 2. URL building will handle escaping of special characters and Unicode data transparently for you, so you dont have to deal with them. 3. If your application is placed outside the URL root (say, in /myapplication instead of /), url_for() will handle that properly for you.
If GET is present, HEAD will be added automatically for you. You dont have to deal with that. It will also make sure that HEAD requests are handled as the HTTP RFC (the document describing the HTTP protocol) demands, so you can completely ignore that part of the HTTP specication. Likewise, as of Flask 0.6, OPTIONS is implemented for you automatically as well. You have no idea what an HTTP method is? Worry not, here is a quick introduction to HTTP methods and why they matter: The HTTP method (also often called the verb) tells the server what the clients wants to do with the requested page. The following methods are very common: GET The browser tells the server to just get the information stored on that page and send it. This is probably the most common method. HEAD The browser tells the server to get the information, but it is only interested in the headers, not the content of the page. An application is supposed to handle that as if a GET request was received but to not deliver the actual content. In Flask you dont have to deal with that at all, the underlying Werkzeug library handles that for you. POST The browser tells the server that it wants to post some new information to that URL and that the server must ensure the data is stored and only stored once. This is how HTML forms usually transmit data to the server. PUT Similar to POST but the server might trigger the store procedure multiple times by overwriting the old values more than once. Now you might be asking why this is useful, but there are some good reasons to do it this way. Consider that the connection is lost during transmission: in this situation a system between the browser and the server might receive the request safely a second time without 16
breaking things. With POST that would not be possible because it must only be triggered once. DELETE Remove the information at the given location. OPTIONS Provides a quick way for a client to gure out which methods are supported by this URL. Starting with Flask 0.6, this is implemented for you automatically. Now the interesting part is that in HTML4 and XHTML1, the only methods a form can submit to the server are GET and POST. But with JavaScript and future HTML standards you can use the other methods as well. Furthermore HTTP has become quite popular lately and browsers are no longer the only clients that are using HTTP. For instance, many revision control system use it.
Flask will look for templates in the templates folder. So if your application is a module, this folder is next to that module, if its a package its actually inside your package:
17
Case 1: a module:
/application.py /templates /hello.html
Case 2: a package:
/application /__init__.py /templates /hello.html
For templates you can use the full power of Jinja2 templates. Head over to the ofcial Jinja2 Template Documentation for more information. Here is an example template:
<!doctype html> <title>Hello from Flask</title> {% if name %} <h1>Hello {{ name }}!</h1> {% else %} <h1>Hello World!</h1> {% endif %}
Inside templates you also have access to the request, session and g 1 objects as well as the get_flashed_messages() function. Templates are especially useful if inheritance is used. If you want to know how that works, head over to the Template Inheritance pattern documentation. Basically template inheritance makes it possible to keep certain elements on each page (like header, navigation and footer). Automatic escaping is enabled, so if name contains HTML it will be escaped automatically. If you can trust a variable and you know that it will be safe HTML (for example because it came from a module that converts wiki markup to HTML) you can mark it as safe by using the Markup class or by using the |safe lter in the template. Head over to the Jinja 2 documentation for more examples. Here is a basic introduction to how the Markup class works:
>>> from flask import Markup >>> Markup(<strong>Hello %s!</strong>) % <blink>hacker</blink> Markup(u<strong>Hello <blink>hacker</blink>!</strong>) >>> Markup.escape(<blink>hacker</blink>) Markup(u<blink>hacker</blink>) >>> Markup(<em>Marked up</em> » HTML).striptags() uMarked up \xbb HTML
18
The other possibility is passing a whole WSGI environment to the request_context() method:
from flask import request
19
The current request method is available by using the method attribute. To access form data (data transmitted in a POST or PUT request) you can use the form attribute. Here is a full example of the two attributes mentioned above:
@app.route(/login, methods=[POST, GET]) def login(): error = None if request.method == POST: if valid_login(request.form[username], request.form[password]): return log_the_user_in(request.form[username]) else: error = Invalid username/password # the code below is executed if the request method # was GET or the credentials were invalid return render_template(login.html, error=error)
What happens if the key does not exist in the form attribute? In that case a special KeyError is raised. You can catch it like a standard KeyError but if you dont do that, a HTTP 400 Bad Request error page is shown instead. So for many situations you dont have to deal with that problem. To access parameters submitted in the URL (?key=value) you can use the args attribute:
searchword = request.args.get(key, )
We recommend accessing URL parameters with get or by catching the KeyError because users might change the URL and presenting them a 400 bad request page in that case is not user friendly. For a full list of methods and attributes of the request object, head over to the request documentation.
browser will not transmit your les at all. Uploaded les are stored in memory or at a temporary location on the lesystem. You can access those les by looking at the files attribute on the request object. Each uploaded le is stored in that dictionary. It behaves just like a standard Python file object, but it also has a save() method that allows you to store that le on the lesystem of the server. Here is a simple example showing how that works:
from flask import request @app.route(/upload, methods=[GET, POST]) def upload_file(): if request.method == POST: f = request.files[the_file] f.save(/var/www/uploads/uploaded_file.txt) ...
If you want to know how the le was named on the client before it was uploaded to your application, you can access the filename attribute. However please keep in mind that this value can be forged so never ever trust that value. If you want to use the lename of the client to store the le on the server, pass it through the secure_filename() function that Werkzeug provides for you:
from flask import request from werkzeug import secure_filename @app.route(/upload, methods=[GET, POST]) def upload_file(): if request.method == POST: f = request.files[the_file] f.save(/var/www/uploads/ + secure_filename(f.filename)) ...
4.6.4 Cookies
To access cookies you can use the cookies attribute. To set cookies you can use the set_cookie method of response objects. The cookies attribute of request objects is a dictionary with all the cookies the client transmits. If you want to use sessions, do not use the cookies directly but instead use the Sessions in Flask that add some security on top of cookies for you. Reading cookies:
from flask import request @app.route(/) def index(): username = request.cookies.get(username)
21
# use cookies.get(key) instead of cookies[key] to not get a # KeyError if the cookie is missing.
Storing cookies:
from flask import make_response @app.route(/) def index(): resp = make_response(render_template(...)) resp.set_cookie(username, the username) return resp
Note that cookies are set on response objects. Since you normally just return strings from the view functions Flask will convert them into response objects for you. If you explicitly want to do that you can use the make_response() function and then modify it. Sometimes you might want to set a cookie at a point where the response object does not exist yet. This is possible by utilizing the Deferred Request Callbacks pattern. For this also see About Responses.
This is a rather pointless example because a user will be redirected from the index to a page they cannot access (401 means access denied) but it shows how that works. By default a black and white error page is shown for each error code. If you want to customize the error page, you can use the errorhandler() decorator:
from flask import render_template @app.errorhandler(4 4) def page_not_found(error): return render_template(page_not_found.html), 4 4
22
Note the 4 4 after the render_template() call. This tells Flask that the status code of that page should be 404 which means not found. By default 200 is assumed which translates to: all went well.
You just need to wrap the return expression with make_response() and get the response object to modify it, then return it:
@app.errorhandler(4 4) def not_found(error): resp = make_response(render_template(error.html), 4 4) resp.headers[X-Something] = A value return resp
4.9 Sessions
In addition to the request object there is also a second object called session which allows you to store information specic to a user from one request to the next. This is implemented on top of cookies for you and signs the cookies cryptographically. What
23
this means is that the user could look at the contents of your cookie but not modify it, unless they know the secret key used for signing. In order to use sessions you have to set a secret key. Here is how sessions work:
from flask import Flask, session, redirect, url_for, escape, request app = Flask(__name__) @app.route(/) def index(): if username in session: return Logged in as %s % escape(session[username]) return You are not logged in @app.route(/login, methods=[GET, POST]) def login(): if request.method == POST: session[username] = request.form[username] return redirect(url_for(index)) return <form action="" method="post"> <p><input type=text name=username> <p><input type=submit value=Login> </form> @app.route(/logout) def logout(): # remove the username from the session if its there session.pop(username, None) return redirect(url_for(index)) # set the secret key. keep this really secret: app.secret_key = A Zr98j/3yX R~XHH!jmN]LWX/,?RT
The escape() mentioned here does escaping for you if you are not using the template engine (as in this example). How to generate good secret keys The problem with random is that its hard to judge what is truly random. And a secret key should be as random as possible. Your operating system has ways to generate pretty random stuff based on a cryptographic random generator which can be used to get such a key:
>>> import os >>> os.urandom(24) \xfd{H\xe5<\x95\xf9\xe3\x96.5\xd1\x 1O<!\xd5\xa2\xa \x9fR"\xa1\xa8
Just take that thing and copy/paste it into your code and youre done.
24
A note on cookie-based sessions: Flask will take the values you put into the session object and serialize them into a cookie. If you are nding some values do not persist across requests, cookies are indeed enabled, and you are not getting a clear error message, check the size of the cookie in your page responses compared to the size supported by web browsers.
4.11 Logging
New in version 0.3. Sometimes you might be in a situation where you deal with data that should be correct, but actually is not. For example you may have some clientside code that sends an HTTP request to the server but its obviously malformed. This might be caused by a user tampering with the data, or the client code failing. Most of the time its okay to reply with 4 Bad Request in that situation, but sometimes that wont do and the code has to continue working. You may still want to log that something shy happened. This is where loggers come in handy. As of Flask 0.3 a logger is precongured for you to use. Here are some example log calls:
app.logger.debug(A value for debugging) app.logger.warning(A warning occurred (%d apples), 42) app.logger.error(An error occurred)
The attached logger is a standard logging Logger, so head over to the ofcial logging documentation for more information.
26
CHAPTER
FIVE
TUTORIAL
You want to develop an application with Python and Flask? Here you have the chance to learn that by example. In this tutorial we will create a simple microblog application. It only supports one user that can create text-only entries and there are no feeds or comments, but it still features everything you need to get started. We will use Flask and SQLite as database which comes out of the box with Python, so there is nothing else you need. If you want the full sourcecode in advance or for comparison, check out the example source.
27
The askr folder is not a python package, but just something where we drop our les. Directly into this folder we will then put our database schema as well as main module in the following steps. The les inside the static folder are available to users of the application via HTTP. This is the place where css and javascript les go. Inside the templates folder Flask will look for Jinja2 templates. The templates you create later in the tutorial will go in this directory. Continue with Step 1: Database Schema.
28
This schema consists of a single table called entries and each row in this table has an id, a title and a text. The id is an automatically incrementing integer and a primary key, the other two are strings that must not be null. Continue with Step 2: Application Setup Code.
Next we can create our actual application and initialize it with the cong from the same le, in askr.py:
# create our little application :) app = Flask(__name__) app.config.from_object(__name__)
29
from_object() will look at the given object (if its a string it will import it) and then look for all uppercase variables dened there. In our case, the conguration we just wrote a few lines of code above. You can also move that into a separate le. Usually, it is a good idea to load a conguration from a congurable le. This is what from_envvar() can do, replacing the from_object() line above:
app.config.from_envvar(FLASKR_SETTINGS, silent=True)
That way someone can set an environment variable called FLASKR_SETTINGS to specify a cong le to be loaded which will then override the default values. The silent switch just tells Flask to not complain if no such environment key is set. The secret_key is needed to keep the client-side sessions secure. Choose that key wisely and as hard to guess and complex as possible. The debug ag enables or disables the interactive debugger. Never leave debug mode activated in a production system, because it will allow users to execute code on the server! We also add a method to easily connect to the database specied. That can be used to open a connection on request and also from the interactive Python shell or a script. This will come in handy later.
def connect_db(): return sqlite3.connect(app.config[DATABASE])
Finally we just add a line to the bottom of the le that res up the server if we want to run that le as a standalone application:
if __name__ == __main__: app.run()
With that out of the way you should be able to start up the application without problems. Do this with the following command:
python flaskr.py
You will see a message telling you that server has started along with the address at which you can access it. When you head over to the server in your browser you will get an 404 page not found error because we dont have any views yet. But we will focus on that a little later. First we should get the database working. Externally Visible Server Want your server to be publicly available? Check out the externally visible server section for more information. Continue with Step 3: Creating The Database.
30
The downside of this is that it requires the sqlite3 command to be installed which is not necessarily the case on every system. Also one has to provide the path to the database there which leaves some place for errors. Its a good idea to add a function that initializes the database for you to the application. If you want to do that, you rst have to import the contextlib.closing() function from the contextlib package. Accordingly, add the following lines to your existing imports in askr.py:
from contextlib import closing
Next we can create a function called init_db that initializes the database. For this we can use the connect_db function we dened earlier. Just add that function below the connect_db function in askr.py:
def init_db(): with closing(connect_db()) as db: with app.open_resource(schema.sql, mode=r) as f: db.cursor().executescript(f.read()) db.commit()
The closing() helper function allows us to keep a connection open for the duration of the with block. The open_resource() method of the application object supports that functionality out of the box, so it can be used in the with block directly. This function opens a le from the resource location (your askr folder) and allows you to read from it. We are using this here to execute a script on the database connection. When we connect to a database we get a connection object (here called db) that can give us a cursor. On that cursor there is a method to execute a complete script. Finally we only have to commit the changes. SQLite 3 and other transactional databases will not commit unless you explicitly tell it to. Now it is possible to create a database by starting up a Python shell and importing and calling that function:
>>> from flaskr import init_db >>> init_db()
Troubleshooting 31
If you get an exception later that a table cannot be found check that you did call the init_db function and that your table names are correct (singular vs. plural for example). Continue with Step 4: Request Database Connections
Functions marked with before_request() are called before a request and passed no arguments. Functions marked with after_request() are called after a request and passed the response that will be sent to the client. They have to return that response object or a different one. They are however not guaranteed to be executed if an exception is raised, this is where functions marked with teardown_request() come in. They get called after the response has been constructed. They are not allowed to modify the request, and their return values are ignored. If an exception occurred while the request was being processed, it is passed to each function; otherwise, None is passed in. We store our current database connection on the special g object that Flask provides for us. This object stores information for one request only and is available from within each function. Never store such things on other objects because this would not work with threaded environments. That special g object does some magic behind the scenes to ensure it does the right thing. For an even better way to handle such resources see the Using SQLite 3 with Flask documentation. Continue to Step 5: The View Functions. Hint: Where do I put this code? If youve been following along in this tutorial, you might be wondering where to put 32
the code from this step and the next. A logical place is to group these module-level functions together, and put your new before_request and teardown_request functions below your existing init_db function (following the tutorial line-by-line). If you need a moment to nd your bearings, take a look at how the example source is organized. In Flask, you can put all of your application code into a single Python module. You dont have to, and if your app grows larger, its a good idea not to.
33
Note that we check that the user is logged in here (the logged_in key is present in the session and True). Security Note Be sure to use question marks when building SQL statements, as done in the example above. Otherwise, your app will be vulnerable to SQL injection when you use string formatting to build SQL statements. See Using SQLite 3 with Flask for more.
The logout function, on the other hand, removes that key from the session again. We use a neat trick here: if you use the pop() method of the dict and pass a second parameter to it (the default), the method will delete the key from the dictionary if present or do nothing when that key is not in there. This is helpful because now we dont have to check if the user was logged in.
@app.route(/logout) def logout(): session.pop(logged_in, None) flash(You were logged out) return redirect(url_for(show_entries))
34
5.8.1 layout.html
This template contains the HTML skeleton, the header and a link to log in (or log out if the user was already logged in). It also displays the ashed messages if there are any. The {% block body %} block can be replaced by a block of the same name (body) in a child template. The session dict is available in the template as well and you can use that to check if the user is logged in or not. Note that in Jinja you can access missing attributes and items of objects / dicts which makes the following code work, even if there is no logged_in key in the session:
<!doctype html> <title>Flaskr</title> <link rel=stylesheet type=text/css href="{{ url_for(static, filename=style.css) }}"> <div class=page> <h1>Flaskr</h1> <div class=metanav> {% if not session.logged_in %} <a href="{{ url_for(login) }}">log in</a> {% else %} <a href="{{ url_for(logout) }}">log out</a> {% endif %} </div> {% for message in get_flashed_messages() %} <div class=flash>{{ message }}</div> {% endfor %} {% block body %}{% endblock %} </div>
5.8.2 show_entries.html
This template extends the layout.html template from above to display the messages. Note that the for loop iterates over the messages we passed in with the
35
render_template() function. We also tell the form to submit to your add_entry function and use POST as HTTP method:
{% extends "layout.html" %} {% block body %} {% if session.logged_in %} <form action="{{ url_for(add_entry) }}" method=post class=add-entry> <dl> <dt>Title: <dd><input type=text size=3 name=title> <dt>Text: <dd><textarea name=text rows=5 cols=4 ></textarea> <dd><input type=submit value=Share> </dl> </form> {% endif %} <ul class=entries> {% for entry in entries %} <li><h2>{{ entry.title }}</h2>{{ entry.text|safe }} {% else %} <li><em>Unbelievable. No entries here so far</em> {% endfor %} </ul> {% endblock %}
5.8.3 login.html
Finally the login template which basically just displays a form to allow the user to login:
{% extends "layout.html" %} {% block body %} <h2>Login</h2> {% if error %}<p class=error><strong>Error:</strong> {{ error }}{% endif %} <form action="{{ url_for(login) }}" method=post> <dl> <dt>Username: <dd><input type=text name=username> <dt>Password: <dd><input type=password name=password> <dd><input type=submit value=Login> </dl> </form> {% endblock %}
36
{ margin: 2em auto; width: 35em; border: 5px solid #ccc; padding: .8em; background: white; } .entries { list-style: none; margin: ; padding: ; } .entries li { margin: .8em 1.2em; } .entries li h2 { margin-left: -1em; } .add-entry { font-size: .9em; border-bottom: 1px solid #ccc; } .add-entry dl { font-weight: bold; } .metanav { text-align: right; font-size: .8em; padding: .3em; margin-bottom: 1em; background: #fafafa; } .flash { background: #cee5F5; padding: .5em; border: 1px solid #aacbe2; } .error { background: #f d6d6; padding: .5em; }
37
38
CHAPTER
SIX
TEMPLATES
Flask leverages Jinja2 as template engine. You are obviously free to use a different template engine, but you still have to install Jinja2 to run Flask itself. This requirement is necessary to enable rich extensions. An extension can depend on Jinja2 being present. This section only gives a very quick introduction into how Jinja2 is integrated into Flask. If you want information on the template engines syntax itself, head over to the ofcial Jinja2 Template Documentation for more information.
The request-bound object for global variables (flask.g). This variable is unavailable if the template was rendered without an active request context.
url_for() The flask.url_for() function. get_flashed_messages() The flask.get_flashed_messages() function. The Jinja Context Behavior These variables are added to the context of variables, they are not global variables. The difference is that by default these will not show up in the context of imported templates. This is partially caused by performance considerations, partially to keep things explicit. What does this mean for you? If you have a macro you want to import, that needs to access the request object you have two possibilities: 1. you explicitly pass the request to the macro as parameter, or the attribute of the request object you are interested in. 2. you import the macro with context. Importing with context looks like this:
{% from _helpers.html import my_macro with context %}
as . Because these characters carry specic meanings in documents on their own you have to replace them by so called entities if you want to use them for text. Not doing so would not only cause user frustration by the inability to use these characters in text, but can also lead to security problems. (see Cross-Site Scripting (XSS)) Sometimes however you will need to disable autoescaping in templates. This can be the case if you want to explicitly inject HTML into pages, for example if they come from a system that generate secure HTML like a markdown to HTML converter. There are three ways to accomplish that: In the Python code, wrap the HTML string in a Markup object before passing it to the template. This is in general the recommended way. Inside the template, use the |safe lter to explicitly mark a string as safe HTML ({{ myvariable|safe }}) Temporarily disable the autoescape system altogether. To disable the autoescape system in templates, you can use the {% autoescape %} block:
{% autoescape false %} <p>autoescaping is disabled here <p>{{ will_not_be_escaped }} {% endautoescape %}
Whenever you do this, please be very cautious about the variables you are using in this block.
In case of the decorator the argument is optional if you want to use the function name as name of the lter. Once registered, you can use the lter in your templates in the same way as Jinja2s builtin lters, for example if you have a Python list in context called mylist:
41
The context processor above makes a variable called user available in the template with the value of g.user. This example is not very interesting because g is available in templates anyways, but it gives an idea how this works. Variables are not limited to values; a context processor can also make functions available to templates (since Python allows passing around functions):
@app.context_processor def utility_processor(): def format_price(amount, currency=u): return u{ :.2f}{1}.format(amount, currency) return dict(format_price=format_price)
The context processor above makes the format_price function available to all templates:
{{ format_price( .33) }}
You could also build format_price as a template lter (see Registering Filters), but this demonstrates how to pass functions in a context processor.
42
CHAPTER
SEVEN
class FlaskrTestCase(unittest.TestCase): def setUp(self): self.db_fd, flaskr.app.config[DATABASE] = tempfile.mkstemp() flaskr.app.config[TESTING] = True self.app = flaskr.app.test_client()
43
The code in the setUp() method creates a new test client and initializes a new database. This function is called before each individual test function is run. To delete the database after the test, we close the le and remove it from the lesystem in the tearDown() method. Additionally during setup the TESTING cong ag is activated. What it does is disabling the error catching during request handling so that you get better error reports when performing test requests against the application. This test client will give us a simple interface to the application. We can trigger test requests to the application, and the client will also keep track of cookies for us. Because SQLite3 is lesystem-based we can easily use the temple module to create a temporary database and initialize it. The mkstemp() function does two things for us: it returns a low-level le handle and a random le name, the latter we use as database name. We just have to keep the db_fd around so that we can use the os.close() function to close the le. If we now run the test suite, we should see the following output:
$ python flaskr_tests.py ---------------------------------------------------------------------Ran tests in . s OK
Even though it did not run any actual tests, we already know that our askr application is syntactically valid, otherwise the import would have died with an exception.
44
def tearDown(self): os.close(self.db_fd) os.unlink(flaskr.app.config[DATABASE]) def test_empty_db(self): rv = self.app.get(/) assert No entries here so far in rv.data
Notice that our test functions begin with the word test; this allows unittest to automatically identify the method as a test to run. By using self.app.get we can send an HTTP GET request to the application with the given path. The return value will be a response_class object. We can now use the data attribute to inspect the return value (as string) from the application. In this case, we ensure that No entries here so far is part of the output. Run it again and you should see one passing test:
$ python flaskr_tests.py . ---------------------------------------------------------------------Ran 1 test in . 34s OK
Now we can easily test that logging in and out works and that it fails with invalid credentials. Add this new test to the class:
def test_login_logout(self): rv = self.login(admin, default) assert You were logged in in rv.data
45
rv = self.logout() assert You were logged out in rv.data rv = self.login(adminx, default) assert Invalid username in rv.data rv = self.login(admin, defaultx) assert Invalid password in rv.data
Here we check that HTML is allowed in the text but not in the title, which is the intended behavior. Running that should now give us three passing tests:
$ python flaskr_tests.py ... ---------------------------------------------------------------------Ran 3 tests in .332s OK
For more complex tests with headers and status codes, check out the MiniTwit Example from the sources which contains a larger test suite.
46
All the other objects that are context bound can be used in the same way. If you want to test your application with different congurations and there does not seem to be a good way to do that, consider switching to application factories (see Application Factories). Note however that if you are using a test request context, the before_request() functions are not automatically called same for after_request() functions. However teardown_request() functions are indeed executed when the test request context leaves the with block. If you do want the before_request() functions to be called as well, you need to call preprocess_request() yourself:
app = flask.Flask(__name__) with app.test_request_context(/?name=Peter): app.preprocess_request() ...
This can be necessary to open database connections or something similar depending on how your application was designed. If you want to call the after_request() functions you need to call into process_response() which however requires that you pass it a response object:
app = flask.Flask(__name__) with app.test_request_context(/?name=Peter): resp = Response(...) resp = app.process_response(resp) ...
This in general is less useful because at that point you can directly start using the test client.
47
For a test it would be nice to override this user from the outside without having to change some code. This can trivially be accomplished with hooking the flask.appcontext_pushed signal:
from contextlib import contextmanager from flask import appcontext_pushed @contextmanager def user_set(app, user): def handler(sender, **kwargs): g.user = user with appcontext_pushed.connected_to(handler, app): yield
If you were to use just the test_client() without the with block, the assert would fail with an error because request is no longer available (because you are trying to use it outside of the actual request).
that a session has certain keys set to certain values you can just keep the context around and access flask.session:
with app.test_client() as c: rv = c.get(/) assert flask.session[foo] == 42
This however does not make it possible to also modify the session or to access the session before a request was red. Starting with Flask 0.8 we provide a so called session transaction which simulates the appropriate calls to open a session in the context of the test client and to modify it. At the end of the transaction the session is stored. This works independently of the session backend used:
with app.test_client() as c: with c.session_transaction() as sess: sess[a_key] = a value # once this is reached the session was stored
Note that in this case you have to use the sess object instead of the flask.session proxy. The object however itself will provide the same interface.
49
50
CHAPTER
EIGHT
Flask uses the Python builtin logging system, and it can actually send you mails for errors which is probably what you want. Here is how you can congure the Flask logger to send you mails for exceptions:
ADMINS = [yourname@example.com] if not app.debug: import logging from logging.handlers import SMTPHandler mail_handler = SMTPHandler(127. . .1, server-error@example.com, ADMINS, YourApplication Failed) mail_handler.setLevel(logging.ERROR) app.logger.addHandler(mail_handler)
So what just happened? We created a new SMTPHandler that will send mails with the mail server listening on 127. . .1 to all the ADMINS from the address servererror@example.com with the subject YourApplication Failed. If your mail server requires credentials, these can also be provided. For that check out the documentation for the SMTPHandler. We also tell the handler to only send errors and more critical messages. Because we certainly dont want to get a mail for warnings or other useless logs that might happen during request handling. Before you run that in production, please also look at Controlling the Log Format to put more information into that error mail. That will save you from a lot of frustration.
52
if not app.debug: import logging from themodule import TheHandlerYouWant file_handler = TheHandlerYouWant(...) file_handler.setLevel(logging.WARNING) app.logger.addHandler(file_handler)
8.3.1 Email
from logging import Formatter mail_handler.setFormatter(Formatter( Message type: %(levelname)s Location: %(pathname)s:%(lineno)d Module: %(module)s Function: %(funcName)s Time: %(asctime)s Message: %(message)s ))
53
%(message)s
If you want to further customize the formatting, you can subclass the formatter. The formatter has three interesting methods: format(): handles the actual formatting. It is passed a LogRecord object and has to return the formatted string. formatTime(): called for asctime formatting. If you want a different time format you can override this method. formatException() called for exception formatting. It is passed an exc_info tuple and has to return a string. The default is usually ne, you dont have to override it. For more information, head over to the ofcial documentation.
54
55
56
CHAPTER
NINE
57
A possible useful pattern for conguration is to set the following in your cong.yaml (change the block as appropriate for your application, of course):
FLASK: DEBUG: True DEBUG_WITH_APTANA: True
Then in your applications entry-point (main.py), you could have something like:
if __name__ == "__main__": # To allow aptana to receive errors, set use_debugger=False app = create_app(config="config.yaml") if app.debug: use_debugger = True try: # Disable Flasks debugger if external debugger is requested use_debugger = not(app.config.get(DEBUG_WITH_APTANA)) except: pass app.run(use_debugger=use_debugger, debug=app.debug, use_reloader=use_debugger, host= . . . )
58
CHAPTER
TEN
CONFIGURATION HANDLING
New in version 0.3. Applications need some kind of conguration. There are different settings you might want to change depending on the application environment like toggling the debug mode, setting the secret key, and other such environment-specic things. The way Flask is designed usually requires the conguration to be available when the application starts up. You can hardcode the conguration in the code, which for many small applications is not actually that bad, but there are better ways. Independent of how you load your cong, there is a cong object available which holds the loaded conguration values: The config attribute of the Flask object. This is the place where Flask itself puts certain conguration values and also where extensions can put their conguration values. But this is also where you can have your own conguration.
Certain conguration values are also forwarded to the Flask object so you can read and write them from there:
app.debug = True
To update multiple keys at once you can use the dict.update() method:
app.config.update( DEBUG=True, SECRET_KEY=... )
59
60
PRESERVE_CONTEXT_ON_EXCEPTION
APPLICATION_ROOT
MAX_CONTENT_LENGTH SEND_FILE_MAX_AGE_DEFAULT:
enable/disable debug mode enable/disable testing mode explicitly enable or disable the propagation of exceptions. If not set or explicitly set to None this is implicitly true if either TESTING or DEBUG is true. By default if the application is in debug mode the request context is not popped on exceptions to enable debuggers to introspect the data. This can be disabled by this key. You can also use this setting to force-enable it for non debug execution which might be useful to debug production applications (but also very risky). the secret key the name of the session cookie the domain for the session cookie. If this is not set, the cookie will be valid for all subdomains of SERVER_NAME. the path for the session cookie. If this is not set the cookie will be valid for all of APPLICATION_ROOT or if that is not set for /. controls if the cookie should be set with the httponly ag. Defaults to True. controls if the cookie should be set with the secure ag. Defaults to False. the lifetime of a permanent session as datetime.timedelta object. Starting with Flask 0.8 this can also be an integer representing seconds. enable/disable x-sendle the name of the logger the name and port number of the server. Required for subdomain support (e.g.: myapp.dev:5 ) Note that localhost does not support subdomains so setting this to localhost does not help. Setting a SERVER_NAME also by default enables URL generation without a request context but with an application context. If the application does not occupy a whole domain or subdomain this can be set to the path where the application is congured to live. This is for session cookie as path value. If domains are used, this should be None. If set to a value in bytes, Flask will reject incoming requests with a content length greater than this by returning a 413 status code. Default cache control max age to use with send_static_file() (the default static le 61 handler) and send_file(), in seconds. Override this value on a per-le basis using the get_send_file_max_age() hook on Flask or
More on SERVER_NAME The SERVER_NAME key is used for the subdomain support. Because Flask cannot guess the subdomain part without the knowledge of the actual server name, this is required if you want to work with subdomains. This is also used for the session cookie. Please keep in mind that not only Flask has the problem of not knowing what subdomains are, your web browser does as well. Most modern web browsers will not allow cross-subdomain cookies to be set on a server name without dots in it. So if your server name is localhost you will not be able to set a cookie for localhost and every subdomain of it. Please chose a different server name in that case, like myapplication.local and add this name + the subdomains you want to use into your host cong or setup a local bind. New in version 0.4: LOGGER_NAMENew in version 0.5: SERVER_NAMENew in version 0.6: MAX_CONTENT_LENGTHNew in version 0.7: PROPAGATE_EXCEPTIONS, PRESERVE_CONTEXT_ON_EXCEPTIONNew in version 0.8: TRAP_BAD_REQUEST_ERRORS, TRAP_HTTP_EXCEPTIONS, APPLICATION_ROOT, SESSION_COOKIE_DOMAIN, SESSION_COOKIE_PATH, SESSION_COOKIE_HTTPONLY, SESSION_COOKIE_SECURENew in version 0.9: PREFERRED_URL_SCHEMENew in version 0.10: JSON_AS_ASCII, JSON_SORT_KEYS, JSONIFY_PRETTYPRINT_REGULAR
This rst loads the conguration from the yourapplication.default_settings module and then overrides the values with the contents of the le the YOURAPPLICATION_SETTINGS environment variable points to. This environment variable can be set on Linux or OS X with the export command in the shell before starting the server:
$ export YOURAPPLICATION_SETTINGS=/path/to/settings.cfg $ python run-app.py * Running on http://127. . .1:5 / * Restarting with reloader...
62
>set YOURAPPLICATION_SETTINGS=\path\to\settings.cfg
The conguration les themselves are actual Python les. Only values in uppercase are actually stored in the cong object later on. So make sure to use uppercase letters for your cong keys. Here is an example of a conguration le:
# Example configuration DEBUG = False SECRET_KEY = ?\xbf,\xb4\x8d\xa3"<\x9c\xb @\x f5\xab,w\xee\x8d$ \x13\x8b83
Make sure to load the conguration very early on, so that extensions have the ability to access the conguration when starting up. There are other methods on the cong object as well to load from individual les. For a complete reference, read the Config objects documentation.
Then you just have to add a separate cong.py le and export YOURAPPLICATION_SETTINGS=/path/to/config.py and you are done. However there are alternative ways as well. For example you could use imports or subclassing.
63
What is very popular in the Django world is to make the import explicit in the cong le by adding an from yourapplication.default_settings import * to the top of the le and then overriding the changes by hand. You could also inspect an environment variable like YOURAPPLICATION_MODE and set that to production, development etc and import different hardcoded les based on that. An interesting pattern is also to use classes and inheritance for conguration:
class Config(object): DEBUG = False TESTING = False DATABASE_URI = sqlite://:memory: class ProductionConfig(Config): DATABASE_URI = mysql://user@localhost/foo class DevelopmentConfig(Config): DEBUG = True class TestingConfig(Config): TESTING = True
There are many different ways and its up to you how you want to manage your conguration les. However here a list of good recommendations: keep a default conguration in version control. Either populate the cong with this default conguration or import it in your own conguration les before overriding values. use an environment variable to switch between the congurations. This can be done from outside the Python interpreter and makes development and deployment much easier because you can quickly and easily switch between different congs without having to touch the code at all. If you are working often on different projects you can even create your own script for sourcing that activates a virtualenv and exports the development conguration for you. Use a tool like fabric in production to push code and congurations separately to the production server(s). For some details about how to do that, head over to the Deploying with Fabric pattern.
With Flask 0.8 a new attribute was introduced: Flask.instance_path. It refers to a new concept called the instance folder. The instance folder is designed to not be under version control and be deployment specic. Its the perfect place to drop things that either change at runtime or conguration les. You can either explicitly provide the path of the instance folder when creating the Flask application or you can let Flask autodetect the instance folder. For explicit conguration use the instance_path parameter:
app = Flask(__name__, instance_path=/path/to/instance/folder)
Please keep in mind that this path must be absolute when provided. If the instance_path parameter is not provided the following default locations are used: Uninstalled module:
/myapp.py /instance
Uninstalled package:
/myapp /__init__.py /instance
$PREFIX is the prex of your Python installation. This can be /usr or the path to your virtualenv. You can print the value of sys.prefix to see what the prex is set to. Since the cong object provided loading of conguration les from relative lenames we made it possible to change the loading via lenames to be relative to the instance path if wanted. The behavior of relative paths in cong les can be ipped between relative to the application root (the default) to relative to instance folder via the instance_relative_cong switch to the application constructor:
app = Flask(__name__, instance_relative_config=True)
Here is a full example of how to congure Flask to preload the cong from a module and then override the cong from a le in the cong folder if it exists:
app = Flask(__name__, instance_relative_config=True) app.config.from_object(yourapplication.default_settings) app.config.from_pyfile(application.cfg, silent=True)
The path to the instance folder can be found via the Flask.instance_path. Flask also provides a shortcut to open a le from the instance folder with Flask.open_instance_resource(). Example usage for both: 65
filename = os.path.join(app.instance_path, application.cfg) with open(filename) as f: config = f.read() # or via open_instance_resource: with app.open_instance_resource(application.cfg) as f: config = f.read()
66
CHAPTER
ELEVEN
SIGNALS
New in version 0.6. Starting with Flask 0.6, there is integrated support for signalling in Flask. This support is provided by the excellent blinker library and will gracefully fall back if it is not available. What are signals? Signals help you decouple applications by sending notications when actions occur elsewhere in the core framework or another Flask extensions. In short, signals allow certain senders to notify subscribers that something happened. Flask comes with a couple of signals and other extensions might provide more. Also keep in mind that signals are intended to notify subscribers and should not encourage subscribers to modify data. You will notice that there are signals that appear to do the same thing like some of the builtin decorators do (eg: request_started is very similar to before_request()). There are however difference in how they work. The core before_request() handler for example is executed in a specic order and is able to abort the request early by returning a response. In contrast all signal handlers are executed in undened order and do not modify any data. The big advantage of signals over handlers is that you can safely subscribe to them for the split of a second. These temporary subscriptions are helpful for unittesting for example. Say you want to know what templates were rendered as part of a request: signals allow you to do exactly that.
from flask import template_rendered from contextlib import contextmanager @contextmanager def captured_templates(app): recorded = [] def record(sender, template, context, **extra): recorded.append((template, context)) template_rendered.connect(record, app) try: yield recorded finally: template_rendered.disconnect(record, app)
Make sure to subscribe with an extra **extra argument so that your calls dont fail if Flask introduces new arguments to the signals. All the template rendering in the code issued by the application app in the body of the with block will now be recorded in the templates variable. Whenever a template is rendered, the template object as well as context are appended to it. Additionally there is a convenient helper method (connected_to()). that allows you to temporarily subscribe a function to a signal with a context manager on its own. Because the return value of the context manager cannot be specied that way one has to pass the list in as argument:
from flask import template_rendered def captured_templates(app, recorded, **extra): def record(sender, template, context): recorded.append((template, context)) return template_rendered.connected_to(record, app)
68
The name for the signal here makes it unique and also simplies debugging. You can access the name of the signal with the name attribute. For Extension Developers If you are writing a Flask extension and you want to gracefully degrade for missing blinker installations, you can do so by using the flask.signals.Namespace class.
Try to always pick a good sender. If you have a class that is emitting a signal, pass self as sender. If you emitting a signal from a random function, you can pass current_app._get_current_object() as sender. Passing Proxies as Senders Never pass current_app as sender to a signal. Use current_app._get_current_object() instead. The reason for this is that current_app is a proxy and not the real application object.
69
flask.request_started This signal is sent before any request processing started but when the request context was set up. Because the request context is already bound, the subscriber can access the request with the standard global proxies such as request. Example subscriber:
def log_request(sender, **extra): sender.logger.debug(Request context is set up)
70
flask.request_finished This signal is sent right before the response is sent to the client. It is passed the response to be sent named response. Example subscriber:
def log_response(sender, response, **extra): sender.logger.debug(Request context is about to close down. Response: %s, response) from flask import request_finished request_finished.connect(log_response, app)
flask.got_request_exception This signal is sent when an exception happens during request processing. It is sent before the standard exception handling kicks in and even in debug mode, where no exception handling happens. The exception itself is passed to the subscriber as exception. Example subscriber:
def log_exception(sender, exception, **extra): sender.logger.debug(Got exception during processing: %s, exception) from flask import got_request_exception got_request_exception.connect(log_exception, app)
flask.request_tearing_down This signal is sent when the request is tearing down. This is always called, even if an exception is caused. Currently functions listening to this signal are called after the regular teardown handlers, but this is not something you can rely on. Example subscriber:
def close_db_connection(sender, **extra): session.close() from flask import request_tearing_down request_tearing_down.connect(close_db_connection, app)
As of Flask 0.9, this will also be passed an exc keyword argument that has a reference to the exception that caused the teardown if there was one. flask.appcontext_tearing_down This signal is sent when the app context is tearing down. This is always called, even if an exception is caused. Currently functions listening to this signal are called after the regular teardown handlers, but this is not something you can rely on. Example subscriber: 71
def close_db_connection(sender, **extra): session.close() from flask import appcontext_tearing_down appcontext_tearing_down.connect(close_db_connection, app)
This will also be passed an exc keyword argument that has a reference to the exception that caused the teardown if there was one. flask.appcontext_pushed This signal is sent when an application context is pushed. The sender is the application. This is usually useful for unittests in order to temporarily hook in information. For instance it can be used to set a resource early onto the g object. Example usage:
from contextlib import contextmanager from flask import appcontext_pushed @contextmanager def user_set(app, user): def handler(sender, **kwargs): g.user = user with appcontext_pushed.connected_to(handler, app): yield
New in version 0.10. appcontext_popped This signal is sent when an application context is popped. The sender is the application. This usually falls in line with the appcontext_tearing_down signal. New in version 0.10. flask.message_flashed This signal is sent when the application is ashing a message. The messages is sent as message keyword argument and the category as category. Example subscriber:
recorded = [] def record(sender, message, category, **extra): recorded.append((message, category)) from flask import message_flashed message_flashed.connect(record, app)
72
73
74
CHAPTER
TWELVE
PLUGGABLE VIEWS
New in version 0.7. Flask 0.7 introduces pluggable views inspired by the generic views from Django which are based on classes instead of functions. The main intention is that you can replace parts of the implementations and this way have customizable pluggable views.
This is simple and exible, but if you want to provide this view in a generic fashion that can be adapted to other models and templates as well you might want more exibility. This is where pluggable class-based views come into place. As the rst step to convert this into a class based view you would do this:
from flask.views import View class ShowUsers(View): def dispatch_request(self): users = User.query.all() return render_template(users.html, objects=users) app.add_url_rule(/users/, view_func=ShowUsers.as_view(show_users))
As you can see what you have to do is to create a subclass of flask.views.View and implement dispatch_request(). Then we have to convert that class into an actual view function by using the as_view() class method. The string you pass to that function is the name of the endpoint that view will then have. But this by itself is not helpful, so lets refactor the code a bit:
75
from flask.views import View class ListView(View): def get_template_name(self): raise NotImplementedError() def render_template(self, context): return render_template(self.get_template_name(), **context) def dispatch_request(self): context = {objects: self.get_objects()} return self.render_template(context) class UserView(ListView): def get_template_name(self): return users.html def get_objects(self): return User.query.all()
This of course is not that helpful for such a small example, but its good enough to explain the basic principle. When you have a class-based view the question comes up what self points to. The way this works is that whenever the request is dispatched a new instance of the class is created and the dispatch_request() method is called with the parameters from the URL rule. The class itself is instantiated with the parameters passed to the as_view() function. For instance you can write a class like this:
class RenderTemplateView(View): def __init__(self, template_name): self.template_name = template_name def dispatch_request(self): return render_template(self.template_name)
76
class MyView(View): methods = [GET, POST] def dispatch_request(self): if request.method == POST: ... ... app.add_url_rule(/myview, view_func=MyView.as_view(myview))
That way you also dont have to provide the methods attribute. Its automatically set based on the methods dened in the class.
77
Starting with Flask 0.8 there is also an alternative way where you can specify a list of decorators to apply in the class declaration:
class UserAPI(MethodView): decorators = [user_required]
Due to the implicit self from the callers perspective you cannot use regular view decorators on the individual methods of the view however, keep this in mind.
So how would you go about doing that with the MethodView? The trick is to take advantage of the fact that you can provide multiple rules to the same view. Lets assume for the moment the view would look like this:
class UserAPI(MethodView): def get(self, user_id): if user_id is None: # return a list of users pass else: # expose a single user pass def post(self): # create a new user pass def delete(self, user_id): # delete a single user pass def put(self, user_id):
78
So how do we hook this up with the routing system? By adding two rules and explicitly mentioning the methods for each:
user_view = UserAPI.as_view(user_api) app.add_url_rule(/users/, defaults={user_id: None}, view_func=user_view, methods=[GET,]) app.add_url_rule(/users/, view_func=user_view, methods=[POST,]) app.add_url_rule(/users/<int:user_id>, view_func=user_view, methods=[GET, PUT, DELETE])
If you have a lot of APIs that look similar you can refactor that registration code:
def register_api(view, endpoint, url, pk=id, pk_type=int): view_func = view.as_view(endpoint) app.add_url_rule(url, defaults={pk: None}, view_func=view_func, methods=[GET,]) app.add_url_rule(url, view_func=view_func, methods=[POST,]) app.add_url_rule(%s<%s:%s> % (url, pk_type, pk), view_func=view_func, methods=[GET, PUT, DELETE]) register_api(UserAPI, user_api, /users/, pk=user_id)
79
80
CHAPTER
THIRTEEN
designed with that in mind. A common workaround for that problem was to use the current_app proxy later on, which was bound to the current requests application reference. Since however creating such a request context is an unnecessarily expensive operation in case there is no request around, the application context was introduced.
The application context is also used by the url_for() function in case a SERVER_NAME was congured. This allows you to generate URLs even in the absence of a request.
82
1. an implicit resource caching on the context. 2. a context teardown based resource deallocation. Generally there would be a get_X() function that creates resource X if it does not exist yet and otherwise returns the same resource, and a teardown_X() function that is registered as teardown handler. This is an example that connects to a database:
import sqlite3 from flask import g def get_db(): db = getattr(g, _database, None) if db is None: db = g._database = connect_to_database() return db @app.teardown_appcontext def teardown_db(exception): db = getattr(g, _database, None) if db is not None: db.close()
The rst time get_db() is called the connection will be established. To make this implicit a LocalProxy can be used:
from werkzeug.local import LocalProxy db = LocalProxy(get_db)
That way a user can directly access db which internally calls get_db().
83
84
CHAPTER
FOURTEEN
As you can see, it accesses the request object. If you try to run this from a plain Python shell, this is the exception you will see:
>>> redirect_url() Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: NoneType object has no attribute request
That makes a lot of sense because we currently do not have a request we could access. So we have to make a request and bind it to the current context. The test_request_context method can create us a RequestContext:
>>> ctx = app.test_request_context(/?next=http://example.com/)
This context can be used in two ways. Either with the with statement or by calling the push() and pop() methods:
>>> ctx.push()
85
From that point onwards you can work with the request object:
>>> redirect_url() uhttp://example.com/
Because the request context is internally maintained as a stack you can push and pop multiple times. This is very handy to implement things like internal redirects. For more information of how to utilize the request context from the interactive Python shell, head over to the Working with the Shell chapter.
The method request_context() returns a new RequestContext object and uses it in combination with the with statement to bind the context. Everything that is called from the same thread from this point onwards until the end of the with statement will have access to the request globals (flask.request and others). The request context internally works like a stack: The topmost level on the stack is the current active request. push() adds the context to the stack on the very top, pop() removes it from the stack again. On popping the applications teardown_request() functions are also executed. Another thing of note is that the request context will automatically also create an application context when its pushed and there is no application context for that application so far.
86
1. Before each request, before_request() functions are executed. If one of these functions return a response, the other functions are no longer called. In any case however the return value is treated as a replacement for the views return value. 2. If the before_request() functions did not return a response, the regular request handling kicks in and the view function that was matched has the chance to return a response. 3. The return value of the view is then converted into an actual response object and handed over to the after_request() functions which have the chance to replace it or modify it in place. 4. At the end of the request the teardown_request() functions are executed. This always happens, even in case of an unhandled exception down the road or if a before-request handler was not executed yet or at all (for example in test environments sometimes you might want to not execute before-request callbacks). Now what happens on errors? In production mode if an exception is not caught, the 500 internal server handler is called. In development mode however the exception is not further processed and bubbles up to the WSGI server. That way things like the interactive debugger can provide helpful debug information. An important change in 0.7 is that the internal server error is now no longer post processed by the after request callbacks and after request callbacks are no longer guaranteed to be executed. This way the internal dispatching code looks cleaner and is easier to customize and understand. The new teardown functions are supposed to be used as a replacement for things that absolutely need to happen at the end of request.
87
Keep in mind that teardown callbacks are always executed, even if before-request callbacks were not executed yet but an exception happened. Certain parts of the test system might also temporarily create a request context without calling the before-request handlers. Make sure to write your teardown-request handlers in a way that they will never fail.
Starting with Flask 0.7 you have ner control over that behavior by setting the PRESERVE_CONTEXT_ON_EXCEPTION conguration variable. By default its linked to the setting of DEBUG. If the application is in debug mode the context is preserved, in production mode its not. Do not force activate PRESERVE_CONTEXT_ON_EXCEPTION in production mode as it will cause your application to leak memory on exceptions. However it can be useful during development to get the same error preserving behavior as in development mode when attempting to debug an error that only occurs under production settings.
89
90
CHAPTER
FIFTEEN
91
Blueprints instead provide separation at the Flask level, share application cong, and can change an application object as necessary with being registered. The downside is that you cannot unregister a blueprint once an application was created without having to destroy the whole application object.
When you bind a function with the help of the @simple_page.route decorator the blueprint will record the intention of registering the function show on the application when its later registered. Additionally it will prex the endpoint of the function with the name of the blueprint which was given to the Blueprint constructor (in this case also simple_page).
92
If you check the rules registered on the application, you will nd these:
[<Rule /static/<filename> (HEAD, OPTIONS, GET) -> static>, <Rule /<page> (HEAD, OPTIONS, GET) -> simple_page.show>, <Rule / (HEAD, OPTIONS, GET) -> simple_page.show>]
The rst one is obviously from the application ifself for the static les. The other two are for the show function of the simple_page blueprint. As you can see, they are also prexed with the name of the blueprint and separated by a dot (.). Blueprints however can also be mounted at different locations:
app.register_blueprint(simple_page, url_prefix=/pages)
On top of that you can register blueprints multiple times though not every blueprint might respond properly to that. In fact it depends on how the blueprint is implemented if it can be mounted more than once.
To quickly open sources from this folder you can use the open_resource() function:
with simple_page.open_resource(static/style.css) as f: code = f.read()
93
By default the rightmost part of the path is where it is exposed on the web. Because the folder is called static here it will be available at the location of the blueprint + /static. Say the blueprint is registered for /admin the static folder will be at /admin/static. The endpoint is named blueprint_name.static so you can generate URLs to it like you would do to the static folder of the application:
url_for(admin.static, filename=style.css)
15.5.3 Templates
If you want the blueprint to expose templates you can do that by providing the template_folder parameter to the Blueprint constructor:
admin = Blueprint(admin, __name__, template_folder=templates)
As for static les, the path can be absolute or relative to the blueprint resource folder. The template folder is added to the searchpath of templates but with a lower priority than the actual applications template folder. That way you can easily override templates that a blueprint provides in the actual application. So if you have a blueprint in the folder yourapplication/admin and you want to render the template admin/index.html and you have provided templates as a template_folder you will have to create a le like this: yourapplication/admin/templates/admin/index.html.
Additionally if you are in a view function of a blueprint or a rendered template and you want to link to another endpoint of the same blueprint, you can use relative redirects by prexing the endpoint with a dot only:
94
url_for(.index)
This will link to admin.index for instance in case the current request was dispatched to any other admin blueprint endpoint.
95
96
CHAPTER
SIXTEEN
FLASK EXTENSIONS
Flask extensions extend the functionality of Flask in various different ways. For instance they add support for databases and other common tasks.
97
Once the flaskext_compat module is activated the flask.ext will exist and you can start importing from there.
98
CHAPTER
SEVENTEEN
Normally you would use the with statement to make this request object active, but in the shell its easier to use the push() and pop() methods by hand:
>>> ctx.push()
From that point onwards you can work with the request object until you call pop:
>>> ctx.pop()
99
Keep in mind that the preprocess_request() function might return a response object, in that case just ignore it. To shutdown a request, you need to trick a bit before the after request functions (triggered by process_response()) operate on a response object:
>>> app.process_response(app.response_class()) <Response bytes [2 OK]> >>> ctx.pop()
The functions registered as teardown_request() are automatically called when the context is popped. So this is the perfect place to automatically tear down resources that were needed by the request context (such as database connections).
100
CHAPTER
EIGHTEEN
101
But how do you run your application now? The naive python yourapplication/__init__.py will not work. Lets just say that Python does not want modules in packages to be the startup le. But that is not a big problem, just add a new le called runserver.py next to the inner yourapplication folder with the following contents:
from yourapplication import app app.run(debug=True)
What did we gain from this? Now we can restructure the application a bit into multiple modules. The only thing you have to remember is the following quick checklist: 1. the Flask application object creation has to be in the __init__.py le. That way each module can import it safely and the __name__ variable will resolve to the correct package. 2. all the view functions (the ones with a route() decorator on top) have to be imported in the __init__.py le. Not the object itself, but the module it is in. Import the view module after the application object is created. Heres an example __init__.py:
from flask import Flask app = Flask(__name__) import yourapplication.views
102
Circular Imports Every Python programmer hates them, and yet we just added some: circular imports (Thats when two modules depend on each other. In this case views.py depends on __init__.py). Be advised that this is a bad idea in general but here it is actually ne. The reason for this is that we are not actually using the views in __init__.py and just ensuring the module is imported and we are doing that at the bottom of the le. There are still some problems with that approach but if you want to use decorators there is no way around that. Check out the Becoming Big section for some inspiration how to deal with that.
103
The downside is that you cannot use the application object in the blueprints at import time. You can however use it from within a request. How do you get access to the application with the cong? Use current_app:
from flask import current_app, Blueprint, render_template admin = Blueprint(admin, __name__, url_prefix=/admin) @admin.route(/) def index(): return render_template(current_app.config[INDEX_TEMPLATE])
Here we look up the name of a template in the cong. Extension objects are not initially bound to an application. Using db.init_app, the app gets congured for the extension. No application-specic state is stored on the extension object, so one extension object can be used for multiple apps. For more information about the design of extensions refer to Flask Extension Development. Your model.py might look like this when using Flask-SQLAlchemy:
from flask.ext.sqlalchemy import SQLAlchemy # no app object passed! Instead we use use db.init_app in the factory. db = SQLAlchemy() # create some models
104
Note that run_simple is not intended for use in production. Use a full-blown WSGI server. In order to use the interactive debuggger, debugging must be enabled both on the application and the simple server, here is the hello world example with debugging and run_simple:
105
from flask import Flask from werkzeug.serving import run_simple app = Flask(__name__) app.debug = True @app.route(/) def hello_world(): return Hello World! if __name__ == __main__: run_simple(localhost, 5 , app, use_reloader=True, use_debugger=True, use_evalex=True)
WSGI application that looks at the request that comes and delegates it to your Flask application. If that application does not exist yet, it is dynamically created and remembered:
from threading import Lock class SubdomainDispatcher(object): def __init__(self, domain, create_app): self.domain = domain self.create_app = create_app self.lock = Lock() self.instances = {} def get_application(self, host): host = host.split(:)[ ] assert host.endswith(self.domain), Configuration error subdomain = host[:-len(self.domain)].rstrip(.) with self.lock: app = self.instances.get(subdomain) if app is None: app = self.create_app(subdomain) self.instances[subdomain] = app return app def __call__(self, environ, start_response): app = self.get_application(environ[HTTP_HOST]) return app(environ, start_response)
107
The big difference between this and the subdomain one is that this one falls back to another application if the creator function returns None:
from myapplication import create_app, default_app, get_user_for_prefix def make_app(prefix): user = get_user_for_prefix(prefix) if user is not None: return create_app(user) application = PathDispatcher(default_app, make_app)
enough for APIs and that the content type of text/html they are emitting is not very useful for API consumers. The better solution than using abort to signal errors for invalid API usage is to implement your own exception type and install an error handler for it that produces the errors in the format the user is expecting.
A view can now raise that exception with an error message. Additionally some extra payload can be provided as a dictionary through the payload parameter.
109
This is an awful lot of repetition as you have to handle the language code setting on the g object yourself in every single function. Sure, a decorator could be used to simplify this, but if you want to generate URLs from one function to another you would have to still provide the language code explicitly which can be annoying. For the latter, this is where url_defaults() functions come in. They can automatically inject values into a call for url_for() automatically. The code below checks if the language code is not yet in the dictionary of URL values and if the endpoint wants a value named lang_code:
110
@app.url_defaults def add_language_code(endpoint, values): if lang_code in values or not g.lang_code: return if app.url_map.is_endpoint_expecting(endpoint, lang_code): values[lang_code] = g.lang_code
The method is_endpoint_expecting() of the URL map can be used to gure out if it would make sense to provide a language code for the given endpoint. The reverse of that function are url_value_preprocessor()s. They are executed right after the request was matched and can execute code based on the URL values. The idea is that they pull information out of the values dictionary and put it somewhere else:
@app.url_value_preprocessor def pull_lang_code(endpoint, values): g.lang_code = values.pop(lang_code, None)
That way you no longer have to do the lang_code assignment to g in every function. You can further improve that by writing your own decorator that prexes URLs with the language code, but the more beautiful solution is using a blueprint. Once the lang_code is popped from the values dictionary and it will no longer be forwarded to the view function reducing the code to this:
from flask import Flask, g app = Flask(__name__) @app.url_defaults def add_language_code(endpoint, values): if lang_code in values or not g.lang_code: return if app.url_map.is_endpoint_expecting(endpoint, lang_code): values[lang_code] = g.lang_code @app.url_value_preprocessor def pull_lang_code(endpoint, values): g.lang_code = values.pop(lang_code, None) @app.route(/<lang_code>/) def index(): ... @app.route(/<lang_code>/about) def about(): ...
111
In this case we assume your application is called yourapplication.py and you are not using a module, but a package. Distributing resources with standard modules is not supported by distribute so we will not bother with it. If you have not yet converted your application into a package, head over to the Larger Applications pattern to see how this can be done. A working deployment with distribute is the rst step into more complex and more automated deployment scenarios. If you want to fully automate the process, also read the Deploying with Fabric chapter.
Please keep in mind that you have to list subpackages explicitly. If you want distribute to lookup the packages for you automatically, you can use the nd_packages function:
from setuptools import setup, find_packages setup( ... packages=find_packages() )
Most parameters to the setup function should be self explanatory, include_package_data and zip_safe might not be. include_package_data tells distribute to look for a MANI113
FEST.in le and install all the entries that match as package data. We will use this to distribute the static les and templates along with the Python module (see Distributing Resources). The zip_safe ag can be used to force or prevent zip Archive creation. In general you probably dont want your packages to be installed as zip les because some tools do not support them and they make debugging a lot harder.
Dont forget that even if you enlist them in your MANIFEST.in le, they wont be installed for you unless you set the include_package_data parameter of the setup function to True!
I mentioned earlier that dependencies are pulled from PyPI. What if you want to depend on a package that cannot be found on PyPI and wont be because it is an internal package you dont want to share with anyone? Just still do as if there was a PyPI entry for it and provide a list of alternative locations where distribute should look for tarballs:
dependency_links=[http://example.com/yourfiles]
Make sure that page has a directory listing and the links on the page are pointing to the actual tarballs with their correct lenames as this is how distribute will nd the les. If you have an internal company server that contains the packages, provide the URL to that server there.
114
If you are developing on the package and also want the requirements to be installed, you can use the develop command instead:
$ python setup.py develop
This has the advantage of just installing a link to the site-packages folder instead of copying the data over. You can then continue to work on the code without having to run install again after each change.
115
# the user to use for the remote commands env.user = appuser # the servers where the commands are executed env.hosts = [server1.example.com, server2.example.com] def pack(): # create a new source distribution as tarball local(python setup.py sdist --formats=gztar, capture=False) def deploy(): # figure out the release name and version dist = local(python setup.py --fullname, capture=True).strip() # upload the source tarball to the temporary folder on the server put(dist/%s.tar.gz % dist, /tmp/yourapplication.tar.gz) # create a place where we can unzip the tarball, then enter # that directory and unzip it run(mkdir /tmp/yourapplication) with cd(/tmp/yourapplication): run(tar xzf /tmp/yourapplication.tar.gz) # now setup the package with our virtual environments # python interpreter run(/var/www/yourapplication/env/bin/python setup.py install) # now that all is set up, delete the folder again run(rm -rf /tmp/yourapplication /tmp/yourapplication.tar.gz) # and finally touch the .wsgi file so that mod_wsgi triggers # a reload of the application run(touch /var/www/yourapplication.wsgi)
The example above is well documented and should be straightforward. Here a recap of the most common commands fabric provides: run - executes a command on a remote server local - executes a command on the local machine put - uploads a le to the remote server cd - changes the directory on the serverside. This has to be used in combination with the with statement.
However this requires that our server already has the /var/www/yourapplication folder created and /var/www/yourapplication/env to be a virtual environment. Furthermore are we not creating the conguration or .wsgi le on the server. So how do we bootstrap a new server into our infrastructure? 116
This now depends on the number of servers we want to set up. If we just have one application server (which the majority of applications will have), creating a command in the fable for this is overkill. But obviously you can do that. In that case you would probably call it setup or bootstrap and then pass the servername explicitly on the command line:
$ fab -H newserver.example.com bootstrap
To setup a new server you would roughly do these steps: 1. Create the directory structure in /var/www:
$ mkdir /var/www/yourapplication $ cd /var/www/yourapplication $ virtualenv --distribute env
2. Upload a new application.wsgi le to the server and the conguration le for the application (eg: application.cfg) 3. Create a new Apache cong for yourapplication and activate it. Make sure to activate watching for changes of the .wsgi le so that we can automatically reload the application by touching it. (See mod_wsgi (Apache) for more information) So now the question is, where do the application.wsgi and application.cfg les come from?
The application itself then has to initialize itself like this to look for the cong at that environment variable:
app = Flask(__name__) app.config.from_object(yourapplication.default_config) app.config.from_envvar(YOURAPPLICATION_CONFIG)
This approach is explained in detail in the Conguration Handling section of the documentation.
117
put the conguration in a place where the application will able to nd it. Conguration les have the unfriendly quality of being different on all computers, so you do not version them usually. A popular approach is to store conguration les for different servers in a separate version control repository and check them out on all servers. Then symlink the le that is active for the server into the location where its expected (eg: /var/www/yourapplication). Either way, in our case here we only expect one or two servers and we can upload them ahead of time by hand.
Fabric will now connect to all servers and run the commands as written down in the fable. First it will execute pack so that we have our tarball ready and then it will execute deploy and upload the source code to all servers and install it there. Thanks to the setup.py le we will automatically pull in the required libraries into our virtual environment.
118
All the application needs to do in order to now use the database is having an active application context (which is always true if there is an request in ight) or to create an application context itself. At that point the get_db function can be used to get the current database connection. Whenever the context is destroyed the database connection will be terminated. Note: if you use Flask 0.9 or older you need to use flask._app_ctx_stack.top instead of g as the flask.g object was bound to the request and not application context. Example:
@app.route(/) def index(): cur = get_db().cursor() ...
Note: Please keep in mind that the teardown request and appcontext functions are always executed, even if a before-request handler failed or was never executed. Because of this we have to make sure here that the database is there before we close it.
Or even simpler:
db.row_factory = sqlite3.Row
Additionally it is a good idea to provide a query function that combines getting the cursor, executing and fetching the results:
def query_db(query, args=(), one=False): cur = get_db().execute(query, args) rv = cur.fetchall() cur.close() return (rv[ ] if rv else None) if one else rv
This handy little function in combination with a row factory makes working with the database much more pleasant than it is by just using the raw cursor and connection objects. Here is how you can use it:
for user in query_db(select * from users): print user[username], has the id, user[user_id]
To pass variable parts to the SQL statement, use a question mark in the statement and pass in the arguments as a list. Never directly add them to the SQL statement with string formatting because this makes it possible to attack the application using SQL Injections. 120
You can then create such a database from the python shell:
>>> from yourapplication import init_db >>> init_db()
18.9.2 Declarative
The declarative extension in SQLAlchemy is the most recent method of using SQLAlchemy. It allows you to dene tables and models in one go, similar to how Django works. In addition to the following text I recommend the ofcial documentation on the declarative extension. Here the example database.py module for your application:
from sqlalchemy import create_engine from sqlalchemy.orm import scoped_session, sessionmaker
121
from sqlalchemy.ext.declarative import declarative_base engine = create_engine(sqlite:////tmp/test.db, convert_unicode=True) db_session = scoped_session(sessionmaker(autocommit=False, autoflush=False, bind=engine)) Base = declarative_base() Base.query = db_session.query_property() def init_db(): # import all modules here that might define models so that # they will be registered properly on the metadata. Otherwise # you will have to import them first before calling init_db() import yourapplication.models Base.metadata.create_all(bind=engine)
To dene your models, just subclass the Base class that was created by the code above. If you are wondering why we dont have to care about threads here (like we did in the SQLite3 example above with the g object): thats because SQLAlchemy does that for us already with the scoped_session. To use SQLAlchemy in a declarative way with your application, you just have to put the following code into your application module. Flask will automatically remove database sessions at the end of the request or when the application shuts down:
from yourapplication.database import db_session @app.teardown_appcontext def shutdown_session(exception=None): db_session.remove()
122
As for the declarative approach you need to close the session after each request or application context shutdown. Put this into your application module:
from yourapplication.database import db_session @app.teardown_appcontext def shutdown_session(exception=None): db_session.remove()
123
from sqlalchemy import Table, Column, Integer, String from sqlalchemy.orm import mapper from yourapplication.database import metadata, db_session class User(object): query = db_session.query_property() def __init__(self, name=None, email=None): self.name = name self.email = email def __repr__(self): return <User %r> % (self.name) users = Table(users, metadata, Column(id, Integer, primary_key=True), Column(name, String(5 ), unique=True), Column(email, String(12 ), unique=True) ) mapper(User, users)
Querying and inserting works exactly the same as in the example above.
Then you can either declare the tables in your code like in the examples above, or automatically load them:
users = Table(users, metadata, autoload=True)
To insert data you can use the insert method. We have to get a connection rst so that we can use a transaction:
>>> con = engine.connect() >>> con.execute(users.insert(), name=admin, email=admin@localhost)
SQLAlchemy will automatically commit for us. To query your database, you use the engine directly or use a connection:
>>> users.select(users.c.id == 1).execute().first() (1, uadmin, uadmin@localhost)
124
You can also pass strings of SQL statements to the execute() method:
>>> engine.execute(select * from users where id = :1, [1]).first() (1, uadmin, uadmin@localhost)
So rst we need a couple of imports. Most should be straightforward, the werkzeug.secure_filename() is explained a little bit later. The UPLOAD_FOLDER is where we will store the uploaded les and the ALLOWED_EXTENSIONS is the set of allowed le extensions. Then we add a URL rule by hand to the application. Now usually were not doing that, so why here? The reasons is that we want the webserver (or our development server) to serve these les for us and so we only need a rule to generate the URL to these les.
125
Why do we limit the extensions that are allowed? You probably dont want your users to be able to upload everything there if the server is directly sending out the data to the client. That way you can make sure that users are not able to upload HTML les that would cause XSS problems (see Cross-Site Scripting (XSS)). Also make sure to disallow .php les if the server executes them, but who has PHP installed on his server, right? :) Next the functions that check if an extension is valid and that uploads the le and redirects the user to the URL for the uploaded le:
def allowed_file(filename): return . in filename and \ filename.rsplit(., 1)[1] in ALLOWED_EXTENSIONS @app.route(/, methods=[GET, POST]) def upload_file(): if request.method == POST: file = request.files[file] if file and allowed_file(file.filename): filename = secure_filename(file.filename) file.save(os.path.join(app.config[UPLOAD_FOLDER], filename)) return redirect(url_for(uploaded_file, filename=filename)) return <!doctype html> <title>Upload new File</title> <h1>Upload new File</h1> <form action="" method=post enctype=multipart/form-data> <p><input type=file name=file> <input type=submit value=Upload> </form>
So what does that secure_filename() function actually do? Now the problem is that there is that principle called never trust user input. This is also true for the lename of an uploaded le. All submitted form data can be forged, and lenames can be dangerous. For the moment just remember: always use that function to secure a lename before storing it directly on the lesystem. Information for the Pros So youre interested in what that secure_filename() function does and what the problem is if youre not using it? So just imagine someone would send the following information as lename to your application:
filename = "../../../../home/username/.bashrc"
Assuming the number of ../ is correct and you would join this with the UPLOAD_FOLDER the user might have the ability to modify a le on the servers lesystem he or she should not modify. This does require some knowledge about how the application looks like, but trust me, hackers are patient :) Now lets look how that function works: 126
Now one last thing is missing: the serving of the uploaded les. As of Flask 0.5 we can use a function that does that for us:
from flask import send_from_directory @app.route(/uploads/<filename>) def uploaded_file(filename): return send_from_directory(app.config[UPLOAD_FOLDER], filename)
Alternatively you can register uploaded_le as build_only rule and use the SharedDataMiddleware. This also works with older versions of Flask:
from werkzeug import SharedDataMiddleware app.add_url_rule(/uploads/<filename>, uploaded_file, build_only=True) app.wsgi_app = SharedDataMiddleware(app.wsgi_app, { /uploads: app.config[UPLOAD_FOLDER] })
The code above will limited the maximum allowed payload to 16 megabytes. If a larger le is transmitted, Flask will raise an RequestEntityTooLarge exception. This feature was added in Flask 0.6 but can be achieved in older versions as well by subclassing the request object. For more information on that consult the Werkzeug documentation on le handling.
127
18.11 Caching
When your application runs slow, throw some caches in. Well, at least its the easiest way to speed up things. What does a cache do? Say you have a function that takes some time to complete but the results would still be good enough if they were 5 minutes old. So then the idea is that you actually put the result of that calculation into a cache for some time. Flask itself does not provide caching for you, but Werkzeug, one of the libraries it is based on, has some very basic cache support. It supports multiple cache backends, normally you want to use a memcached server.
128
If you want to use memcached, make sure to have one of the memcache modules supported (you get them from PyPI) and a memcached server running somewhere. This is how you connect to such an memcached server then:
from werkzeug.contrib.cache import MemcachedCache cache = MemcachedCache([127. . .1:11211])
If you are using App Engine, you can connect to the App Engine memcache server easily:
from werkzeug.contrib.cache import GAEMemcachedCache cache = GAEMemcachedCache()
To add items to the cache, use the set() method instead. The rst argument is the key and the second the value that should be set. Also a timeout can be provided after which the cache will automatically remove item. Here a full example how this looks like normally:
def get_my_item(): rv = cache.get(my-item) if rv is None: rv = calculate_value() cache.set(my-item, rv, timeout=5 * 6 ) return rv
129
So how would you use that decorator now? Apply it as innermost decorator to a view function. When applying further decorators, always remember that the route() decorator is the outermost:
@app.route(/secret_page) @login_required def secret_page(): pass
130
3. otherwise the original function is called and the return value is stored in the cache for the timeout provided (by default 5 minutes). Here the code:
from functools import wraps from flask import request def cached(timeout=5 * 6 , key=view/%s): def decorator(f): @wraps(f) def decorated_function(*args, **kwargs): cache_key = key % request.path rv = cache.get(cache_key) if rv is not None: return rv rv = f(*args, **kwargs) cache.set(cache_key, rv, timeout=timeout) return rv return decorated_function return decorator
Notice that this assumes an instantiated cache object is available, see Caching for more information.
As you can see, if no template name is provided it will use the endpoint of the URL map with dots converted to slashes + .html. Otherwise the provided template name is used. When the decorated function returns, the dictionary returned is passed to the template rendering function. If None is returned, an empty dictionary is assumed, if
131
something else than a dictionary is returned we return it from the function unchanged. That way you can still use the redirect function or return simple strings. Here the code for that decorator:
from functools import wraps from flask import request def templated(template=None): def decorator(f): @wraps(f) def decorated_function(*args, **kwargs): template_name = template if template_name is None: template_name = request.endpoint \ .replace(., /) + .html ctx = f(*args, **kwargs) if ctx is None: ctx = {} elif not isinstance(ctx, dict): return ctx return render_template(template_name, **ctx) return decorated_function return decorator
132
When you are working with WTForms you have to dene your forms as classes rst. I recommend breaking up the application into multiple modules (Larger Applications) for that and adding a separate module for the forms. Getting most of WTForms with an Extension The Flask-WTF extension expands on this pattern and adds a few handful little helpers that make working with forms and Flask more fun. You can get it from PyPI.
Notice that we are implying that the view is using SQLAlchemy here (SQLAlchemy in Flask) but this is no requirement of course. Adapt the code as necessary. Things to remember: 1. create the form from the request form value if the data is submitted via the HTTP POST method and args if the data is submitted as GET.
133
2. to validate the data, call the validate() method which will return True if the data validates, False otherwise. 3. to access individual values from the form, access form.<NAME>.data.
This macro accepts a couple of keyword arguments that are forwarded to WTForms eld function that renders the eld for us. The keyword arguments will be inserted as HTML attributes. So for example you can call render_field(form.username, class=username) to add a class to the input element. Note that WTForms returns standard Python unicode strings, so we have to tell Jinja2 that this data is already HTML escaped with the |safe lter. Here the register.html template for the function we used above which takes advantage of the _formhelpers.html template:
{% from "_formhelpers.html" import render_field %} <form method=post action="/register"> <dl> {{ render_field(form.username) }} {{ render_field(form.email) }} {{ render_field(form.password) }} {{ render_field(form.confirm) }} {{ render_field(form.accept_tos) }} </dl> <p><input type=submit value=Register> </form>
For more information about WTForms, head over to the WTForms website.
134
In this example, the {% block %} tags dene four blocks that child templates can ll in. All the block tag does is tell the template engine that a child template may override those portions of the template.
135
{% endblock %} {% block content %} <h1>Index</h1> <p class="important"> Welcome on my awesome homepage. {% endblock %}
The {% extends %} tag is the key here. It tells the template engine that this template extends another template. When the template system evaluates this template, rst it locates the parent. The extends tag must be the rst tag in the template. To render the contents of a block dened in the parent template, use {{ super() }}.
136
used to give the user better feedback. For example error messages could be displayed with a red background. To ash a message with a different category, just use the second argument to the flash() function:
flash(uInvalid password provided, error)
Inside the template you then have to tell the get_flashed_messages() function to also return the categories. The loop looks slightly different in that situation then:
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} <ul class=flashes> {% for category, message in messages %} <li class="{{ category }}">{{ message }}</li> {% endfor %} </ul> {% endif %} {% endwith %}
This is just one example of how to render these ashed messages. One might also use the category to add a prex such as <strong>Error:</strong> to the message.
138
JSON itself is a very lightweight transport format, very similar to how Python primitives (numbers, strings, dicts and lists) look like which is widely supported and very easy to parse. It became popular a few years ago and quickly replaced XML as transport format in web applications.
In this case you have to put jQuery into your static folder as a fallback, but it will rst try to load it directly from Google. This has the advantage that your website will probably load faster for users if they went to at least one other website before using the same jQuery version from Google because it will already be in the browser cache.
The |safe is necessary in Flask before 0.10 so that Jinja does not escape the JSON encoded string with HTML rules. Usually this would be necessary, but we are inside a script block here where different rules apply. Information for Pros
139
In HTML the script tag is declared CDATA which means that entities will not be parsed. Everything until </script> is handled as script. This also means that there must never be any </ between the script tags. |tojson is kind enough to do the right thing here and escape slashes for you ({{ "</script>"|tojson|safe }} is rendered as "<\/script>"). In Flask 0.10 it goes a step further and escapes all HTML tags with unicode escapes. This makes it possible for Flask to automatically mark the result as HTML safe.
As you can see I also added an index method here that renders a template. This template will load jQuery as above and have a little form we can add two numbers and a link to trigger the function on the server side. Note that we are using the get() method here which will never fail. If the key is missing a default value (here ) is returned. Furthermore it can convert values to a specic type (like in our case int). This is especially handy for code that is triggered by a script (APIs, JavaScript etc.) because you dont need special error reporting in that case.
140
<script type=text/javascript> $(function() { $(a#calculate).bind(click, function() { $.getJSON($SCRIPT_ROOT + /_add_numbers, { a: $(input[name="a"]).val(), b: $(input[name="b"]).val() }, function(data) { $("#result").text(data.result); }); return false; }); }); </script> <h1>jQuery Example</h1> <p><input type=text size=5 name=a> + <input type=text size=5 name=b> = <span id=result>?</span> <p><a href=# id=calculate>calculate server side</a>
I wont got into detail here about how jQuery works, just a very quick explanation of the little bit of code above: 1. $(function() { ... }) species code that should run once the browser is done loading the basic parts of the page. 2. $(selector) selects an element and lets you operate on it. 3. element.bind(event, func) species a function that should run when the user clicked on the element. If that function returns false, the default behavior will not kick in (in this case, navigate to the # URL). 4. $.getJSON(url, data, func) sends a GET request to url and will send the contents of the data object as query parameters. Once the data arrived, it will call the given function with the return value as argument. Note that we can use the $SCRIPT_ROOT variable here that we set earlier. If you dont get the whole picture, download the sourcecode for this example from github.
141
142
Then the centralized approach you would have one le with the views (views.py) but without any decorator:
def index(): pass def user(username): pass
And then a le that sets up an application which maps the functions to URLs:
from flask import Flask from yourapplication import views app = Flask(__name__) app.add_url_rule(/, view_func=views.index) app.add_url_rule(/user/<username>, view_func=views.user)
143
Whats important here is is that __module__ and __name__ are properly set. This is used by Flask internally to gure out how to name the URL rules in case you dont provide a name for the rule yourself. Then you can dene your central place to combine the views like this:
from flask import Flask from yourapplication.helpers import LazyView app = Flask(__name__) app.add_url_rule(/, view_func=LazyView(yourapplication.views.index)) app.add_url_rule(/user/<username>, view_func=LazyView(yourapplication.views.user))
You can further optimize this in terms of amount of keystrokes needed to write this by having a function that calls into add_url_rule() by prexing a string with the project name and a dot, and by wrapping view_func in a LazyView as needed:
def url(url_rule, import_name, **options): view = LazyView(yourapplication. + import_name) app.add_url_rule(url_rule, view_func=view, **options) url(/, views.index) url(/user/<username>, views.user)
One thing to keep in mind is that before and after request handlers have to be in a le that is imported upfront to work properly on the rst request. The same goes for any 144
18.19.1 Declarative
The default behavior of MongoKit is the declarative one that is based on common ideas from Django or the SQLAlchemy declarative extension. Here an example app.py module for your application:
from flask import Flask from mongokit import Connection, Document # configuration MONGODB_HOST = localhost MONGODB_PORT = 27 17 # create the little application object app = Flask(__name__) app.config.from_object(__name__) # connect to the database connection = Connection(app.config[MONGODB_HOST], app.config[MONGODB_PORT])
To dene your models, just subclass the Document class that is imported from MongoKit. If youve seen the SQLAlchemy pattern you may wonder why we do not have a session and even do not dene a init_db function here. On the one hand, MongoKit does not have something like a session. This sometimes makes it more to type but also makes it blazingly fast. On the other hand, MongoDB is schemaless. This means you can modify the data structure from one insert query to the next without any problem. MongoKit is just schemaless too, but implements some validation to ensure data integrity. Here is an example document (put this also into app.py, e.g.):
def max_length(length): def validate(value): if len(value) <= length: return True
145
raise Exception(%s must be at most %s characters long % length) return validate class User(Document): structure = { name: unicode, email: unicode, } validators = { name: max_length(5 ), email: max_length(12 ) } use_dot_notation = True def __repr__(self): return <User %r> % (self.name) # register the User document with our current connection connection.register([User])
This example shows you how to dene your schema (named structure), a validator for the maximum character length and uses a special MongoKit feature called use_dot_notation. Per default MongoKit behaves like a python dictionary but with use_dot_notation set to True you can use your documents like you use models in nearly any other ORM by using dots to separate between attributes. You can insert entries into the database like this:
>>> >>> >>> >>> >>> >>> >>> from yourapplication.database import connection from yourapplication.models import User collection = connection[test].users user = collection.User() user[name] = uadmin user[email] = uadmin@localhost user.save()
Note that MongoKit is kinda strict with used column types, you must not use a common str type for either name or email but unicode. Querying is simple as well:
>>> list(collection.User.find()) [<User uadmin>] >>> collection.User.find_one({name: uadmin}) <User uadmin>
To insert data you can use the insert method. We have to get a collection rst, this is somewhat the same as a table in the SQL world.
>>> collection = connection[test].users >>> user = {name: uadmin, email: uadmin@localhost} >>> collection.insert(user)
MongoKit will automatically commit for us. To query your database, you use the collection directly:
>>> list(collection.find()) [{u_id: ObjectId(4c271729e13823182f ), uname: uadmin, uemail: uadmin@localhost} >>> collection.find_one({name: uadmin}) {u_id: ObjectId(4c271729e13823182f ), uname: uadmin, uemail: uadmin@localhost}
Thats all you need for most browsers, however some really old ones do not support this standard. The old de-facto standard is to serve this le, with this name, at the website root. If your application is not mounted at the root path of the domain you either need to congure the webserver to serve the icon at the root or if you cant do that youre out of luck. If however your application is the root you can simply route a redirect:
147
If you want to save the extra redirect request you can also write a view using send_from_directory():
import os from flask import send_from_directory @app.route(/favicon.ico) def favicon(): return send_from_directory(os.path.join(app.root_path, static), favicon.ico, mimetype=image/vnd.microsoft.icon)
We can leave out the explicit mimetype and it will be guessed, but we may as well specify it to avoid the extra guessing, as it will always be the same. The above will serve the icon via your application and if possible its better to congure your dedicated web server to serve it; refer to the webservers documentation.
148
Each yield expression is directly sent to the browser. Note though that some WSGI middlewares might break streaming, so be careful there in debug environments with prolers and other things you might have enabled.
The trick here is to get the template object from the Jinja2 environment on the application and to call stream() instead of render() which returns a stream object instead of a string. Since were bypassing the Flask template render functions and using the template object itself we have to make sure to update the render context ourselves by calling update_template_context(). The template is then evaluated as the stream is iterated over. Since each time you do a yield the server will ush the content to the client you might want to buffer up a few items in the template which you can do with rv.enable_buffering(size). 5 is a sane default.
149
Without the stream_with_context() function you would get a RuntimeError at that point.
150
151
To use this, all you need to do is to hook the calculating stream in before the request 152
starts consuming data. (Eg: be careful accessing request.form or anything of that nature. before_request_handlers for instance should be careful not to access it). Example usage:
@app.route(/special-api, methods=[POST]) def special_api(): hash = generate_checksum(request) # Accessing this parses the input stream files = request.files # At this point the hash is fully constructed. checksum = hash.hexdigest() return Hash was: %s % checksum
153
celery.conf.update(app.config) TaskBase = celery.Task class ContextTask(TaskBase): abstract = True def __call__(self, *args, **kwargs): with app.app_context(): return TaskBase.__call__(self, *args, **kwargs) celery.Task = ContextTask return celery
The function creates a new Celery object, congures it with the broker from the application cong, updates the rest of the Celery cong from the Flask cong and then creates a subclass of the task that wraps the task execution in an application context.
The your_application string has to point to your applications package or module that creates the celery object.
154
CHAPTER
NINETEEN
DEPLOYMENT OPTIONS
Depending on what you have available there are multiple ways to run Flask applications. You can use the builtin server during development, but you should use a full deployment option for production applications. (Do not use the builtin development server in production.) Several options are available and documented here. If you have a different WSGI server look up the server documentation about how to use a WSGI app with it. Just remember that your Flask application object is the actual WSGI application. For hosted options to get up and running quickly, see Deploying to a Web Server in the Quickstart.
155
If you are using pkgsrc you can install mod_wsgi by compiling the www/ap2-wsgi package. If you encounter segfaulting child processes after the rst apache reload you can safely ignore them. Just restart the server.
If you dont have a factory function for application creation but a singleton instance you can directly import that one as application. Store that le somewhere that you will nd it again (e.g.: /var/www/yourapplication) and make sure that yourapplication and all the libraries that are in use are on the python load path. If you dont want to install it system wide consider using a virtual python instance. Keep in mind that you will have to actually install your application into the virtualenv as well. Alternatively there is the option to just patch the path in the .wsgi le before the import:
import sys sys.path.insert( , /path/to/the/application)
156
Note: WSGIDaemonProcess isnt implemented in Windows and Apache will refuse to run with the above conguration. On a Windows system, eliminate those lines:
<VirtualHost *> ServerName example.com WSGIScriptAlias / C:\yourdir\yourapp.wsgi <Directory C:\yourdir> Order deny,allow Allow from all </Directory> </VirtualHost>
19.1.4 Troubleshooting
If your application does not run, follow this guide to troubleshoot: Problem: application does not run, errorlog shows SystemExit ignored You have a app.run() call in your application le that is not guarded by an if __name__ == __main__: condition. Either remove that run() call from the le and move it into a separate run.py le or put it into such an if block. Problem: application gives permission errors Probably caused by your application running as the wrong user. Make sure the folders the application needs access to have the proper privileges set and the application runs as the correct user (user and group parameter to the WSGIDaemonProcess directive) Problem: application dies with an error on print Keep in mind that mod_wsgi disallows doing anything with sys.stdout and sys.stderr. You can disable this protection from the cong by setting the WSGIRestrictStdout to off:
WSGIRestrictStdout Off
Alternatively you can also replace the standard out in the .wsgi le with a different stream:
import sys sys.stdout = sys.stderr
Problem: accessing resources gives IO errors Your application probably is a single .py le you symlinked into the site-packages folder. Please be aware that this does not work, instead you either have to put the folder into the pythonpath the le is stored in, or convert your application into a package. The reason for this is that for non-installed packages, the module lename is used to locate the resources and for symlinks the wrong lename is picked up.
157
This sets up the load paths according to the settings of the virtual environment. Keep in mind that the path has to be absolute.
19.2.1 Gunicorn
Gunicorn Green Unicorn is a WSGI HTTP Server for UNIX. Its a pre-fork worker model ported from Rubys Unicorn project. It supports both eventlet and greenlet. Running a Flask application on this server is quite simple:
gunicorn myproject:app
Gunicorn provides many command-line options see gunicorn -h. For example, to run a Flask application with 4 worker processes (-w 4) binding to localhost port 4000 (-b 127. . .1:4 ):
gunicorn -w 4 -b 127. . .1:4 myproject:app
158
19.2.2 Tornado
Tornado is an open source version of the scalable, non-blocking web server and tools that power FriendFeed. Because it is non-blocking and uses epoll, it can handle thousands of simultaneous standing connections, which means it is ideal for real-time web services. Integrating this service with Flask is straightforward:
from from from from tornado.wsgi import WSGIContainer tornado.httpserver import HTTPServer tornado.ioloop import IOLoop yourapplication import app
19.2.3 Gevent
Gevent is a coroutine-based Python networking library that uses greenlet to provide a high-level synchronous API on top of libevent event loop:
from gevent.wsgi import WSGIServer from yourapplication import app http_server = WSGIServer((, 5 http_server.serve_forever() ), app)
This example will run a Flask application called app from a module named myproject. Twisted Web supports many ags and options, and the twistd utility does as well; see twistd -h and twistd web -h for more information. For example, to run a Twisted Web server in the foreground, on port 8080, with an application from myproject:
twistd -n web --port 8 8 --wsgi myproject.app
two problematic values in the WSGI environment usually are REMOTE_ADDR and HTTP_HOST. You can congure your httpd to pass these headers, or you can x them in middleware. Werkzeug ships a xer that will solve some common setups, but you might want to write your own WSGI middleware for specic setups. Heres a simple nginx conguration which proxies to an application served on localhost at port 8000, setting appropriate headers:
server { listen 8 ; server_name _; access_log /var/log/nginx/access.log; error_log /var/log/nginx/error.log; location / { proxy_pass proxy_redirect proxy_set_header proxy_set_header proxy_set_header http://127. . .1:8 off; Host X-Real-IP X-Forwarded-For /;
If your httpd is not providing these headers, the most common setup invokes the host being set from X-Forwarded-Host and the remote address from X-Forwarded-For:
from werkzeug.contrib.fixers import ProxyFix app.wsgi_app = ProxyFix(app.wsgi_app)
Trusting Headers Please keep in mind that it is a security issue to use such a middleware in a non-proxy setup because it will blindly trust the incoming headers which might be forged by malicious clients. If you want to rewrite the headers from another header, you might want to use a xer like this:
class CustomProxyFix(object): def __init__(self, app): self.app = app def __call__(self, environ, start_response): host = environ.get(HTTP_X_FHOST, ) if host: environ[HTTP_HOST] = host return self.app(environ, start_response)
160
app.wsgi_app = CustomProxyFix(app.wsgi_app)
19.3 uWSGI
uWSGI is a deployment option on servers like nginx, lighttpd, and cherokee; see FastCGI and Standalone WSGI Containers for other options. To use your WSGI application with uWSGI protocol you will need a uWSGI server rst. uWSGI is both a protocol and an application server; the application server can serve uWSGI, FastCGI, and HTTP protocols. The most popular uWSGI server is uwsgi, which we will use for this guide. Make sure to have it installed to follow along. Watch Out Please make sure in advance that any app.run() calls you might have in your application le are inside an if __name__ == __main__: block or moved to a separate le. Just make sure its not called because this will always start a local WSGI server which we do not want if we deploy that application to uWSGI.
161
This conguration binds the application to /yourapplication. If you want to have it in the URL root its a bit simpler because you dont have to tell it the WSGI SCRIPT_NAME or set the uwsgi modier to make use of it:
location / { try_files $uri @yourapplication; } location @yourapplication { include uwsgi_params; uwsgi_pass unix:/tmp/uwsgi.sock; }
19.4 FastCGI
FastCGI is a deployment option on servers like nginx, lighttpd, and cherokee; see uWSGI and Standalone WSGI Containers for other options. To use your WSGI application with any of them you will need a FastCGI server rst. The most popular one is up which we will use for this guide. Make sure to have it installed to follow along. Watch Out Please make sure in advance that any app.run() calls you might have in your application le are inside an if __name__ == __main__: block or moved to a separate le. Just make sure its not called because this will always start a local WSGI server which we do not want if we deploy that application to FastCGI.
This is enough for Apache to work, however nginx and older versions of lighttpd need a socket to be explicitly passed to communicate with the FastCGI server. For that to work you need to pass the path to the socket to the WSGIServer:
WSGIServer(application, bindAddress=/path/to/fcgi.sock).run()
The path has to be the exact same path you dene in the server cong. Save the yourapplication.fcgi le somewhere you will nd it again. It makes sense to have that in /var/www/yourapplication or something similar. Make sure to set the executable bit on that le so that the servers can execute it:
162
# chmod +x /var/www/yourapplication/yourapplication.fcgi
If you cannot set ScriptAlias, for example on an shared web host, you can use WSGI middleware to remove yourapplication.fcgi from the URLs. Set .htaccess:
<IfModule mod_fcgid.c> AddHandler fcgid-script .fcgi <Files ~ (\.fcgi)> SetHandler fcgid-script Options +FollowSymLinks +ExecCGI </Files> </IfModule> <IfModule mod_rewrite.c> Options +FollowSymlinks RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ yourapplication.fcgi/$1 [QSA,L] </IfModule>
Set yourapplication.fcgi:
#!/usr/bin/python #: optional path to your local python site-packages folder import sys sys.path.insert( , <your_local_path>/lib/python2.6/site-packages) from flup.server.fcgi import WSGIServer from yourapplication import app class ScriptNameStripper(object): def __init__(self, app): self.app = app def __call__(self, environ, start_response): environ[SCRIPT_NAME] = return self.app(environ, start_response)
163
Remember to enable the FastCGI, alias and rewrite modules. This conguration binds the application to /yourapplication. If you want the application to work in the URL root you have to work around a lighttpd bug with the LighttpdCGIRootFix middleware. Make sure to apply it only if you are mounting the application the URL root. Also, see the Lighty docs for more information on FastCGI and Python (note that explicitly passing a socket to run() is no longer necessary).
164
fastcgi_pass unix:/tmp/yourapplication-fcgi.sock;
This conguration binds the application to /yourapplication. If you want to have it in the URL root its a bit simpler because you dont have to gure out how to calculate PATH_INFO and SCRIPT_NAME:
location / { try_files $uri @yourapplication; } location @yourapplication { include fastcgi_params; fastcgi_param PATH_INFO $fastcgi_script_name; fastcgi_param SCRIPT_NAME ""; fastcgi_pass unix:/tmp/yourapplication-fcgi.sock; }
19.4.6 Debugging
FastCGI deployments tend to be hard to debug on most webservers. Very often the only thing the server log tells you is something along the lines of premature end of headers. In order to debug the application the only thing that can really give you ideas why it breaks is switching to the correct user and executing the application by hand. This example assumes your application is called application.fcgi and that your webserver user is www-data:
$ su www-data $ cd /var/www/yourapplication $ python application.fcgi Traceback (most recent call last): File "yourapplication.fcgi", line 4, in <module> ImportError: No module named yourapplication
In this case the error seems to be yourapplication not being on the python path. Common problems are: Relative paths being used. Dont rely on the current working directory 165
The code depending on environment variables that are not set by the web server. Different python interpreters being used.
19.5 CGI
If all other deployment methods do not work, CGI will work for sure. CGI is supported by all major servers but usually has a sub-optimal performance. This is also the way you can use a Flask application on Googles App Engine, where execution happens in a CGI-like environment. Watch Out Please make sure in advance that any app.run() calls you might have in your application le are inside an if __name__ == __main__: block or moved to a separate le. Just make sure its not called because this will always start a local WSGI server which we do not want if we deploy that application to CGI / app engine. With CGI, you will also have to make sure that your code does not contain any print statements, or that sys.stdout is overridden by something that doesnt write into the HTTP response.
On shared webhosting, though, you might not have access to your Apache cong. In this case, a le called .htaccess, sitting in the public directory you want your app to be available, works too but the ScriptAlias directive wont work in that case:
166
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f # Dont interfere with static files RewriteRule ^(.*)$ /path/to/the/application.cgi/$1 [L]
167
168
CHAPTER
TWENTY
BECOMING BIG
Here are your options when growing your codebase or scaling your application.
20.3 Subclass.
The Flask class has many methods designed for subclassing. You can quickly add or customize behavior by subclassing Flask (see the linked method docs) and using that subclass wherever you instantiate an application class. This works well with Application Factories.
169
20.5 Fork.
If none of the above options work, fork Flask. The majority of code of Flask is within Werkzeug and Jinja2. These libraries do the majority of the work. Flask is just the paste that glues those together. For every project there is the point where the underlying framework gets in the way (due to assumptions the original developers had). This is natural because if this would not be the case, the framework would be a very complex system to begin with which causes a steep learning curve and a lot of user frustration. This is not unique to Flask. Many people use patched and modied versions of their framework to counter shortcomings. This idea is also reected in the license of Flask. You dont have to contribute any changes back if you decide to modify the framework. The downside of forking is of course that Flask extensions will most likely break because the new framework has a different import name. Furthermore integrating upstream changes can be a complex process, depending on the number of changes. Because of that, forking should be the very last resort.
170
171
172
Part II
API REFERENCE
If you are looking for information on a specic function, class or method, this part of the documentation is for you.
173
174
CHAPTER
TWENTYONE
API
This part of the documentation covers all the interfaces of Flask. For parts where Flask depends on external libraries, we document the most important right here and provide links to the canonical documentation.
About the First Parameter The idea of the rst parameter is to give Flask an idea what belongs to your application. This name is used to nd resources on the le system, can be used by extensions to improve debugging information and a lot more. So its important what you provide there. If you are using a single module, __name__ is always the correct value. If you however are using a package, its usually recommended to hardcode the name of your package there. 175
For example if your application is dened in yourapplication/app.py you should create it with one of the two versions below:
app = Flask(yourapplication) app = Flask(__name__.split(.)[ ])
Why is that? The application will work even with __name__, thanks to how resources are looked up. However it will make debugging more painful. Certain extensions can make assumptions based on the import name of your application. For example the Flask-SQLAlchemy extension will look for the code in your application that triggered an SQL query in debug mode. If the import name is not properly set up, that debugging information is lost. (For example it would only pick up SQL queries in yourapplication.app and not yourapplication.views.frontend) New in version 0.7: The static_url_path, static_folder, and template_folder parameters were added.New in version 0.8: The instance_path and instance_relative_cong parameters were added. Parameters import_name the name of the application package static_url_path can be used to specify a different path for the static les on the web. Defaults to the name of the static_folder folder. static_folder the folder with static les that should be served at static_url_path. Defaults to the static folder in the root path of the application. template_folder the folder that contains the templates that should be used by the application. Defaults to templates folder in the root path of the application. instance_path An alternative instance path for the application. By default the folder instance next to the package or module is assumed to be the instance path. instance_relative_cong if set to True relative lenames for loading the cong are assumed to be relative to the instance path instead of the application root. add_template_filter(*args, **kwargs) Register a custom template lter. Works exactly like the template_filter() decorator. Parameters name the optional name of the lter, otherwise the function name will be used. add_template_global(*args, **kwargs) Register a custom template global function. Works exactly like the template_global() decorator. New in version 0.10.
176
Parameters name the optional name of the global function, otherwise the function name will be used. add_template_test(*args, **kwargs) Register a custom template test. Works exactly like the template_test() decorator. New in version 0.10. Parameters name the optional name of the test, otherwise the function name will be used. add_url_rule(*args, **kwargs) Connects a URL rule. Works exactly like the route() decorator. view_func is provided it will be registered with the endpoint. Basically this example:
@app.route(/) def index(): pass
If a
If the view_func is not provided you will need to connect the endpoint to a view function like so:
app.view_functions[index] = index
Internally route() invokes add_url_rule() so if you want to customize the behavior via subclassing you only need to change this method. For more information refer to URL Route Registrations. Changed in version 0.2: view_func parameter added.Changed in version 0.6: OPTIONS is added automatically as method. Parameters rule the URL rule as string endpoint the endpoint for the registered URL rule. Flask itself assumes the name of the view function as endpoint view_func the function to call when serving a request to the provided endpoint options the options to be forwarded to the underlying Rule object. A change to Werkzeug is handling of method options. methods is a list of methods this rule should be limited to (GET, POST etc.). By default a rule just listens for GET (and implicitly HEAD). Starting with Flask 0.6, OPTIONS is implicitly added and handled by the standard request handling.
177
after_request(*args, **kwargs) Register a function to be run after each request. Your function must take one parameter, a response_class object and return a new response object or the same (see process_response()). As of Flask 0.7 this function might not be executed at the end of the request in case an unhandled exception occurred. after_request_funcs = None A dictionary with lists of functions that should be called after each request. The key of the dictionary is the name of the blueprint this function is active for, None for all requests. This can for example be used to open database connections or getting hold of the currently logged in user. To register a function here, use the after_request() decorator. app_context() Binds the application only. For as long as the application is bound to the current context the flask.current_app points to that application. An application context is automatically created when a request context is pushed if necessary. Example usage:
with app.app_context(): ...
New in version 0.9. app_ctx_globals_class The class that is used for the g instance. Example use cases for a custom class: 1.Store arbitrary attributes on ask.g. 2.Add a property for lazy per-request database connectors. 3.Return None instead of AttributeError on expected attributes. 4.Raise exception if an unexpected attr is set, a controlled ask.g. In Flask 0.9 this property was called request_globals_class but it was changed in 0.10 to app_ctx_globals_class because the ask.g object is not application context scoped. New in version 0.10. alias of _AppCtxGlobals auto_find_instance_path() Tries to locate the instance path if it was not provided to the constructor of the application class. It will basically calculate the path to a folder named instance next to your main le or the package. New in version 0.8. before_first_request(*args, **kwargs) Registers a function to be run before the rst request to this instance of the application. New in version 0.8. before_first_request_funcs = None A lists of functions that should be called at the beginning of the rst request 178
to this instance. To register a function here, use the before_first_request() decorator. New in version 0.8. before_request(*args, **kwargs) Registers a function to run before each request. before_request_funcs = None A dictionary with lists of functions that should be called at the beginning of the request. The key of the dictionary is the name of the blueprint this function is active for, None for all requests. This can for example be used to open database connections or getting hold of the currently logged in user. To register a function here, use the before_request() decorator. blueprints = None all the attached blueprints in a dictionary by name. Blueprints can be attached multiple times so this dictionary does not tell you how often they got attached. New in version 0.7. config = None The conguration dictionary as Config. This behaves exactly like a regular dictionary but supports additional methods to load a cong from les. context_processor(*args, **kwargs) Registers a template context processor function. create_global_jinja_loader() Creates the loader for the Jinja2 environment. Can be used to override just the loader and keeping the rest unchanged. Its discouraged to override this function. Instead one should override the jinja_loader() function instead. The global loader dispatches between the loaders of the application and the individual blueprints. New in version 0.7. create_jinja_environment() Creates the Jinja2 environment based on jinja_options and select_jinja_autoescape(). Since 0.7 this also adds the Jinja2 globals and lters after initialization. Override this function to customize the behavior. New in version 0.5. create_url_adapter(request) Creates a URL adapter for the given request. The URL adapter is created at a point where the request context is not yet set up so the request is passed explicitly. New in version 0.6.Changed in version 0.9: This can now also be called without a request object when the URL adapter is created for the application context. debug The debug ag. Set this to True to enable debugging of the application. In debug mode the debugger will kick in when an unhandled exception occurs and the integrated server will automatically reload the application if changes in the code are detected. This attribute can also be congured from the cong with the DEBUG con-
179
debug_log_format = \n%(levelna The logging format used for the debug logger. This is only used when the application is in debug mode, otherwise the attached logging handler does the formatting. New in version 0.3.
default_config = ImmutableDict({JSON_AS_ASCII: True, USE_X_SENDFILE: False, SE Default conguration parameters. dispatch_request() Does the request dispatching. Matches the URL and returns the return value of the view or error handler. This does not have to be a response object. In order to convert the return value to a proper response object, call make_response(). Changed in version 0.7: This no longer does the exception handling, this code was moved to the new full_dispatch_request(). do_teardown_appcontext(exc=None) Called when an application context is popped. This works pretty much the same as do_teardown_request() but for the application context. New in version 0.9. do_teardown_request(exc=None) Called after the actual request dispatching and will call every as teardown_request() decorated function. This is not actually called by the Flask object itself but is always triggered when the request context is popped. That way we have a tighter control over certain resources under testing environments. Changed in version 0.9: Added the exc argument. Previously this was always using the current exception information. enable_modules = True Enable the deprecated module support? This is active by default in 0.7 but will be changed to False in 0.8. With Flask 1.0 modules will be removed in favor of Blueprints endpoint(*args, **kwargs) A decorator to register a function as an endpoint. Example:
@app.endpoint(example.endpoint) def example(): return "example"
Parameters endpoint the name of the endpoint error_handler_spec = None A dictionary of all registered error handlers. The key is None for error handlers active on the application, otherwise the key is the name of the blueprint. Each key points to another dictionary where they key is the status code of the http exception. The special key None points to a list of tuples where the rst item is the class for the instance check and the second the error handler function.
180
To register a error handler, use the errorhandler() decorator. errorhandler(*args, **kwargs) A decorator that is used to register a function give a given error code. Example:
@app.errorhandler(4 4) def page_not_found(error): return This page does not exist, 4 4
You can also register a function as error handler without using the errorhandler() decorator. The following example is equivalent to the one above:
def page_not_found(error): return This page does not exist, 4 4 app.error_handler_spec[None][4 4] = page_not_found
Setting error handlers via assignments to error_handler_spec however is discouraged as it requires ddling with nested dictionaries and the special case for arbitrary exception types. The rst None refers to the active blueprint. If the error handler should be application wide None shall be used. New in version 0.7: One can now additionally also register custom exception types that do not necessarily have to be a subclass of the HTTPException class. Parameters code the code as integer for the handler extensions = None a place where extensions can store application specic state. For example this is where an extension could store database engines and similar things. For backwards compatibility extensions should register themselves like this:
if not hasattr(app, extensions): app.extensions = {} app.extensions[extensionname] = SomeObject()
The key must match the name of the askext module. For example in case of a Flask-Foo extension in askext.foo, the key would be foo. New in version 0.7. full_dispatch_request() Dispatches the request and on top of that performs request pre and postprocessing as well as HTTP exception catching and error handling. New in version 0.7.
181
get_send_file_max_age(lename) Provides default cache_timeout for the send_file() functions. By default, this function returns SEND_FILE_MAX_AGE_DEFAULT from the conguration of current_app. Static le functions such as send_from_directory() use this function, and send_file() calls this function on current_app when the given cache_timeout is None. If a cache_timeout is given in send_file(), that timeout is used; otherwise, this method is called. This allows subclasses to change the behavior when sending les based on the lename. For example, to set the cache timeout for .js les to 60 seconds:
class MyFlask(flask.Flask): def get_send_file_max_age(self, name): if name.lower().endswith(.js): return 6 return flask.Flask.get_send_file_max_age(self, name)
New in version 0.9. got_first_request This attribute is set to True if the application started handling the rst request. New in version 0.8. handle_exception(e) Default exception handling that kicks in when an exception occurs that is not caught. In debug mode the exception will be re-raised immediately, otherwise it is logged and the handler for a 500 internal server error is used. If no such handler exists, a default 500 internal server error message is displayed. New in version 0.3. handle_http_exception(e) Handles an HTTP exception. By default this will invoke the registered error handlers and fall back to returning the exception as response. New in version 0.3. handle_url_build_error(error, endpoint, values) Handle BuildError on url_for(). handle_user_exception(e) This method is called whenever an exception occurs that should be handled. A special case are HTTPExceptions which are forwarded by this function to the handle_http_exception() method. This function will either return a response value or reraise the exception with the same traceback. New in version 0.7. has_static_folder This is True if the package bound objects container has a folder named static. New in version 0.5. init_jinja_globals() Deprecated. Used to initialize the Jinja2 globals. 182 New in version
0.5.Changed in version 0.7: This method is deprecated with 0.7. Override create_jinja_environment() instead. inject_url_defaults(endpoint, values) Injects the URL defaults for the given endpoint directly into the values dictionary passed. This is used internally and automatically called on URL building. New in version 0.7. instance_path = None Holds the path to the instance folder. New in version 0.8. jinja_env The Jinja2 environment used to load templates. jinja_loader The Jinja loader for this package bound object. New in version 0.5. jinja_options = ImmutableDict({extensions: [jinja2.ext.autoescape, jinja2.ext.with_]}) Options that are passed directly to the Jinja2 environment. json_decoder The JSON decoder class to use. Defaults to JSONDecoder. New in version 0.10. alias of JSONDecoder json_encoder The JSON encoder class to use. Defaults to JSONEncoder. New in version 0.10. alias of JSONEncoder log_exception(exc_info) Logs an exception. This is called by handle_exception() if debugging is disabled and right before the handler is called. The default implementation logs the exception as error on the logger. New in version 0.8. logger A logging.Logger object for this application. The default conguration is to log to stderr if the application is in debug mode. This logger can be used to (surprise) log messages. Here some examples:
app.logger.debug(A value for debugging) app.logger.warning(A warning occurred (%d apples), 42) app.logger.error(An error occurred)
New in version 0.3. logger_name The name of the logger to use. By default the logger name is the package name passed to the constructor. New in version 0.4. make_config(instance_relative=False) Used to create the cong attribute by the Flask constructor. The instance_relative parameter is passed in from the constructor of Flask (there named instance_relative_cong) and indicates if the cong should be relative to the instance path or the root path of the application. New in version 0.8.
183
make_default_options_response() This method is called to create the default OPTIONS response. This can be changed through subclassing to change the default behavior of OPTIONS responses. New in version 0.7. make_null_session() Creates a new instance of a missing session. Instead of overriding this method we recommend replacing the session_interface. New in version 0.7. make_response(rv) Converts the return value from a view function to a real response object that is an instance of response_class. The following types are allowed for rv: response_class str unicode a WSGI function tuple the object is returned unchanged a response object is created with the string as body a response object is created with the string encoded to utf-8 as body the function is called as WSGI application and buffered as response object A tuple in the form (response, status, headers) where response is any of the types dened here, status is a string or an integer and headers is a list of a dictionary with header values.
Parameters rv the return value from the view function Changed in version 0.9: Previously a tuple was interpreted as the arguments for the response object. name The name of the application. This is usually the import name with the difference that its guessed from the run le if the import name is main. This name is used as a display name when Flask needs the name of the application. It can be set and overridden to change the value. New in version 0.8. open_instance_resource(resource, mode=rb) Opens a resource from the applications instance folder (instance_path). Otherwise works like open_resource(). Instance resources can also be opened for writing. Parameters resource the name of the resource. To access resources within subfolders use forward slashes as separator. mode resource le opening mode, default is rb. open_resource(resource, mode=rb) Opens a resource from the applications resource folder. To see how this 184
Parameters resource the name of the resource. To access resources within subfolders use forward slashes as separator. mode resource le opening mode, default is rb. open_session(request) Creates or opens a new session. Default implementation stores all session data in a signed cookie. This requires that the secret_key is set. Instead of overriding this method we recommend replacing the session_interface. Parameters request an instance of request_class. permanent_session_lifetime A timedelta which is used to set the expiration date of a permanent session. The default is 31 days which makes a permanent session survive for roughly one month. This attribute can also be congured from the cong with the PERMANENT_SESSION_LIFETIME conguration key. Defaults to timedelta(days=31) preprocess_request() Called before the actual request dispatching and will call every as before_request() decorated function. If any of these function returns a value its handled as if it was the return value from the view and further request handling is stopped. This also triggers the url_value_processor() functions before the actual before_request() functions are called. preserve_context_on_exception Returns the value of the PRESERVE_CONTEXT_ON_EXCEPTION conguration value in case its set, otherwise a sensible default is returned. New in version 0.7.
185
process_response(response) Can be overridden in order to modify the response object before its sent to the WSGI server. By default this will call all the after_request() decorated functions. Changed in version 0.5: As of Flask 0.5 the functions registered for after request execution are called in reverse order of registration. Parameters response a response_class object. Returns a new response object or the same, has to be an instance of response_class. propagate_exceptions Returns the value of the PROPAGATE_EXCEPTIONS conguration value in case its set, otherwise a sensible default is returned. New in version 0.7. register_blueprint(*args, **kwargs) Registers a blueprint on the application. New in version 0.7. register_error_handler(code_or_exception, f ) Alternative error attach function to the errorhandler() decorator that is more straightforward to use for non decorator usage. New in version 0.7. register_module(module, **options) Registers a module with this application. The keyword argument of this function are the same as the ones for the constructor of the Module class and will override the values of the module if provided. Changed in version 0.7: The module system was deprecated in favor for the blueprint system. request_class The class that is used for request objects. See Request for more information. alias of Request request_context(environ) Creates a RequestContext from the given environment and binds it to the current context. This must be used in combination with the with statement because the request is only bound to the current context for the duration of the with block. Example usage:
with app.request_context(environ): do_something_with(request)
The object returned can also be used without the with statement which is useful for working in the shell. The example above is doing exactly the same as this code:
ctx = app.request_context(environ) ctx.push() try: do_something_with(request) finally: ctx.pop()
186
Changed in version 0.3: Added support for non-with statement usage and with statement is now passed the ctx object. Parameters environ a WSGI environment response_class The class that is used for response objects. See Response for more information. alias of Response route(rule, **options) A decorator that is used to register a view function for a given URL rule. This does the same thing as add_url_rule() but is intended for decorator usage:
@app.route(/) def index(): return Hello World
For more information refer to URL Route Registrations. Parameters rule the URL rule as string endpoint the endpoint for the registered URL rule. Flask itself assumes the name of the view function as endpoint options the options to be forwarded to the underlying Rule object. A change to Werkzeug is handling of method options. methods is a list of methods this rule should be limited to (GET, POST etc.). By default a rule just listens for GET (and implicitly HEAD). Starting with Flask 0.6, OPTIONS is implicitly added and handled by the standard request handling. run(host=None, port=None, debug=None, **options) Runs the application on a local development server. If the debug ag is set the server will automatically reload for code changes and show a debugger in case an exception happened. If you want to run the application in debug mode, but disable the code execution on the interactive debugger, you can pass use_evalex=False as parameter. This will keep the debuggers traceback screen active, but disable code execution. Keep in Mind Flask will suppress any server error with a generic error page unless it is in debug mode. As such to enable just the interactive debugger without the code reloading, you have to invoke run() with debug=True and use_reloader=False. Setting use_debugger to True without being in debug mode wont catch any exceptions because there wont be any to catch.
187
host the hostname to listen on. Set this to . . . to have the server available externally as well. Defaults to 127. . .1. port the port of the webserver. Defaults to 5 or the port dened in the SERVER_NAME cong variable if present. debug if given, enable or disable debug mode. See debug. options the options to be forwarded to the underlying Werkzeug server. See werkzeug.serving.run_simple() for more information. save_session(session, response) Saves the session if it needs updates. For the default implementation, check open_session(). Instead of overriding this method we recommend replacing the session_interface. Parameters session the session to be saved (a SecureCookie object) response an instance of response_class secret_key If a secret key is set, cryptographic components can use this to sign cookies and other things. Set this to a complex random value when you want to use the secure cookie for instance. This attribute can also be congured from the cong with the SECRET_KEY conguration key. Defaults to None. select_jinja_autoescape(lename) Returns True if autoescaping should be active for the given template name. New in version 0.5. send_static_file(lename) Function used internally to send static les from the static folder to the browser. New in version 0.5. session_cookie_name The secure cookie uses this for the name of the session cookie. This attribute can also be congured from the cong with the SESSION_COOKIE_NAME conguration key. Defaults to session session_interface = <ask.sessions.SecureCookieSessionInterface object at 0x10d29e750> the session interface to use. By default an instance of SecureCookieSessionInterface is used here. New in version 0.8.
188
should_ignore_error(error) This is called to gure out if an error should be ignored or not as far as the teardown system is concerned. If this function returns True then the teardown handlers will not be passed the error. New in version 0.10. teardown_appcontext(*args, **kwargs) Registers a function to be called when the application context ends. These functions are typically also called when the request context is popped. Example:
ctx = app.app_context() ctx.push() ... ctx.pop()
When ctx.pop() is executed in the above example, the teardown functions are called just before the app context moves from the stack of active contexts. This becomes relevant if you are using such constructs in tests. Since a request context typically also manages an application context it would also be called when you pop a request context. When a teardown function was called because of an exception it will be passed an error object. New in version 0.9. teardown_appcontext_funcs = None A list of functions that are called when the application context is destroyed. Since the application context is also torn down if the request ends this is the place to store code that disconnects from databases. New in version 0.9. teardown_request(*args, **kwargs) Register a function to be run at the end of each request, regardless of whether there was an exception or not. These functions are executed when the request context is popped, even if not an actual request was performed. Example:
ctx = app.test_request_context() ctx.push() ... ctx.pop()
When ctx.pop() is executed in the above example, the teardown functions are called just before the request context moves from the stack of active contexts. This becomes relevant if you are using such constructs in tests. Generally teardown functions must take every necessary step to avoid that they will fail. If they do execute code that might fail they will have to surround the execution of these code by try/except statements and log occurring errors. When a teardown function was called because of a exception it will be passed an error object. 189
Debug Note In debug mode Flask will not tear down a request on an exception immediately. Instead if will keep it alive so that the interactive debugger can still access it. This behavior can be controlled by the PRESERVE_CONTEXT_ON_EXCEPTION conguration variable. teardown_request_funcs = None A dictionary with lists of functions that are called after each request, even if an exception has occurred. The key of the dictionary is the name of the blueprint this function is active for, None for all requests. These functions are not allowed to modify the request, and their return values are ignored. If an exception occurred while processing the request, it gets passed to each teardown_request function. To register a function here, use the teardown_request() decorator. New in version 0.7. template_context_processors = None A dictionary with list of functions that are called without argument to populate the template context. The key of the dictionary is the name of the blueprint this function is active for, None for all requests. Each returns a dictionary that the template context is updated with. To register a function here, use the context_processor() decorator. template_filter(*args, **kwargs) A decorator that is used to register custom template lter. You can specify a name for the lter, otherwise the function name will be used. Example:
@app.template_filter() def reverse(s): return s[::-1]
Parameters name the optional name of the lter, otherwise the function name will be used. template_global(*args, **kwargs) A decorator that is used to register a custom template global function. You can specify a name for the global function, otherwise the function name will be used. Example:
@app.template_global() def double(n): return 2 * n
New in version 0.10. Parameters name the optional name of the global function, otherwise the function name will be used. template_test(*args, **kwargs) A decorator that is used to register custom template test. You can specify a 190
name for the test, otherwise the function name will be used. Example:
@app.template_test() def is_prime(n): if n == 2: return True for i in range(2, int(math.ceil(math.sqrt(n))) + 1): if n % i == : return False return True
New in version 0.10. Parameters name the optional name of the test, otherwise the function name will be used. test_client(use_cookies=True) Creates a test client for this application. For information about unit testing head over to Testing Flask Applications. Note that if you are testing for assertions or exceptions in your application code, you must set app.testing = True in order for the exceptions to propagate to the test client. Otherwise, the exception will be handled by the application (not visible to the test client) and the only indication of an AssertionError or other exception will be a 500 status code response to the test client. See the testing attribute. For example:
app.testing = True client = app.test_client()
The test client can be used in a with block to defer the closing down of the context until the end of the with block. This is useful if you want to access the context locals for testing:
with app.test_client() as c: rv = c.get(/?vodka=42) assert request.args[vodka] == 42
See FlaskClient for more information. Changed in version 0.4: added support for with block usage for the client.New in version 0.7: The use_cookies parameter was added as well as the ability to override the client to be used by setting the test_client_class attribute. test_client_class = None the test client that is used with when test_client is used. New in version 0.7. test_request_context(*args, **kwargs) Creates a WSGI environment from the given values (see werkzeug.test.EnvironBuilder() for more information, this function accepts the same arguments). testing The testing ag. Set this to True to enable the test mode of Flask extensions (and in the future probably also Flask itself). For example this might activate 191
unittest helpers that have an additional runtime cost which should not be enabled by default. If this is enabled and PROPAGATE_EXCEPTIONS is not changed from the default its implicitly enabled. This attribute can also be congured from the cong with the TESTING conguration key. Defaults to False. trap_http_exception(e) Checks if an HTTP exception should be trapped or not. By default this will return False for all exceptions except for a bad request key error if TRAP_BAD_REQUEST_ERRORS is set to True. It also returns True if TRAP_HTTP_EXCEPTIONS is set to True. This is called for all HTTP exceptions raised by a view function. If it returns True for any exception the error handler for this exception is not called and it shows up as regular exception in the traceback. This is helpful for debugging implicitly raised HTTP exceptions. New in version 0.8. update_template_context(context) Update the template context with some commonly used variables. This injects request, session, cong and g into the template context as well as everything template context processors want to inject. Note that the as of Flask 0.6, the original values in the context will not be overridden if a context processor decides to return a value with the same key. Parameters context the context as a dictionary that is updated in place to add extra variables. url_build_error_handlers = None A list of functions that are called when url_for() raises a BuildError. Each function registered here is called with error, endpoint and values. If a function returns None or raises a BuildError the next function is tried. New in version 0.9. url_default_functions = None A dictionary with lists of functions that can be used as URL value preprocessors. The key None here is used for application wide callbacks, otherwise the key is the name of the blueprint. Each of these functions has the chance to modify the dictionary of URL values before they are used as the keyword arguments of the view function. For each function registered this one should also provide a url_defaults() function that adds the parameters automatically again that were removed that way. New in version 0.7. url_defaults(*args, **kwargs) Callback function for URL defaults for all view functions of the application. Its called with the endpoint and values and should update the values passed in place. url_map = None The Map for this instance. You can use this to change the routing converters after the class was created but before any routes are connected. Example: 192
from werkzeug.routing import BaseConverter class ListConverter(BaseConverter): def to_python(self, value): return value.split(,) def to_url(self, values): return ,.join(BaseConverter.to_url(value) for value in values) app = Flask(__name__) app.url_map.converters[list] = ListConverter
url_rule_class The rule object to use for URL rules created. This is used by add_url_rule(). Defaults to werkzeug.routing.Rule. New in version 0.7. alias of Rule url_value_preprocessor(*args, **kwargs) Registers a function as URL value preprocessor for all view functions of the application. Its called before the view functions are called and can modify the url values provided. url_value_preprocessors = None A dictionary with lists of functions that can be used as URL value processor functions. Whenever a URL is built these functions are called to modify the dictionary of values in place. The key None here is used for application wide callbacks, otherwise the key is the name of the blueprint. Each of these functions has the chance to modify the dictionary New in version 0.7. use_x_sendfile Enable this if you want to use the X-Sendle feature. Keep in mind that the server has to support this. This only affects les sent with the send_file() method. New in version 0.2. This attribute can also be congured from the cong with the USE_X_SENDFILE conguration key. Defaults to False. view_functions = None A dictionary of all view functions registered. The keys will be function names which are also used to generate URLs and the values are the function objects themselves. To register a view function, use the route() decorator. wsgi_app(environ, start_response) The actual WSGI application. This is not implemented in __call__ so that middlewares can be applied without losing a reference to the class. So instead of doing this:
app = MyMiddleware(app)
Then you still have the original application object around and can continue to call methods on it. Changed in version 0.7: The behavior of the before 193
and after request callbacks was changed under error conditions and a new callback was added that will always execute at the end of the request, independent on if an error occurred or not. See Callbacks and Errors. Parameters environ a WSGI environment start_response a callable accepting a status code, a list of headers and an optional exception context to start the response
after each request, even if outside of the blueprint. after_request(f ) Like Flask.after_request() but for a blueprint. This function is only executed after each request that is handled by a function of that blueprint. app_context_processor(f ) Like Flask.context_processor() but for a blueprint. Such a function is executed each request, even if outside of the blueprint. app_errorhandler(code) Like Flask.errorhandler() but for a blueprint. This handler is used for all requests, even if outside of the blueprint. app_template_filter(name=None) Register a custom template lter, available application wide. Flask.template_filter() but for a blueprint. Like
Parameters name the optional name of the lter, otherwise the function name will be used. app_template_global(name=None) Register a custom template global, available application wide. Flask.template_global() but for a blueprint. New in version 0.10. Like
Parameters name the optional name of the global, otherwise the function name will be used. app_template_test(name=None) Register a custom template test, available application wide. Flask.template_test() but for a blueprint. New in version 0.10. Like
Parameters name the optional name of the test, otherwise the function name will be used. app_url_defaults(f ) Same as url_defaults() but application wide. app_url_value_preprocessor(f ) Same as url_value_preprocessor() but application wide. before_app_first_request(f ) Like Flask.before_first_request(). Such a function is executed before the rst request to the application. before_app_request(f ) Like Flask.before_request(). Such a function is executed before each request, even if outside of a blueprint. before_request(f ) Like Flask.before_request() but for a blueprint. This function is only executed before each request that is handled by a function of that blueprint. context_processor(f ) Like Flask.context_processor() but for a blueprint. This function is only
195
executed for requests handled by a blueprint. endpoint(endpoint) Like Flask.endpoint() but for a blueprint. This does not prex the endpoint with the blueprint name, this has to be done explicitly by the user of this method. If the endpoint is prexed with a . it will be registered to the current blueprint, otherwise its an application independent endpoint. errorhandler(code_or_exception) Registers an error handler that becomes active for this blueprint only. Please be aware that routing does not happen local to a blueprint so an error handler for 404 usually is not handled by a blueprint unless it is caused inside a view function. Another special case is the 500 internal server error which is always looked up from the application. Otherwise works as the errorhandler() decorator of the Flask object. get_send_file_max_age(lename) Provides default cache_timeout for the send_file() functions. By default, this function returns SEND_FILE_MAX_AGE_DEFAULT from the conguration of current_app. Static le functions such as send_from_directory() use this function, and send_file() calls this function on current_app when the given cache_timeout is None. If a cache_timeout is given in send_file(), that timeout is used; otherwise, this method is called. This allows subclasses to change the behavior when sending les based on the lename. For example, to set the cache timeout for .js les to 60 seconds:
class MyFlask(flask.Flask): def get_send_file_max_age(self, name): if name.lower().endswith(.js): return 6 return flask.Flask.get_send_file_max_age(self, name)
New in version 0.9. has_static_folder This is True if the package bound objects container has a folder named static. New in version 0.5. jinja_loader The Jinja loader for this package bound object. New in version 0.5. make_setup_state(app, options, rst_registration=False) Creates an instance of BlueprintSetupState() object that is later passed to the register callback functions. Subclasses can override this to return a subclass of the setup state. open_resource(resource, mode=rb) Opens a resource from the applications resource folder. To see how this works, consider the following folder structure:
196
Parameters resource the name of the resource. To access resources within subfolders use forward slashes as separator. mode resource le opening mode, default is rb. record(func) Registers a function that is called when the blueprint is registered on the application. This function is called with the state as argument as returned by the make_setup_state() method. record_once(func) Works like record() but wraps the function in another function that will ensure the function is only called once. If the blueprint is registered a second time on the application, the function passed is not called. register(app, options, rst_registration=False) Called by Flask.register_blueprint() to register a blueprint on the application. This can be overridden to customize the register behavior. Keyword arguments from register_blueprint() are directly forwarded to this method in the options dictionary. route(rule, **options) Like Flask.route() but for a blueprint. The endpoint for the url_for() function is prexed with the name of the blueprint. send_static_file(lename) Function used internally to send static les from the static folder to the browser. New in version 0.5. teardown_app_request(f ) Like Flask.teardown_request() but for a blueprint. Such a function is executed when tearing down each request, even if outside of the blueprint. teardown_request(f ) Like Flask.teardown_request() but for a blueprint. This function is only executed when tearing down requests handled by a function of that
197
blueprint. Teardown request functions are executed when the request context is popped, even when no actual request was performed. url_defaults(f ) Callback function for URL defaults for this blueprint. Its called with the endpoint and values and should update the values passed in place. url_value_preprocessor(f ) Registers a function as URL value preprocessor for this blueprint. Its called before the view functions are called and can modify the url values provided.
args
values A CombinedMultiDict with the contents of both form and args. cookies A dict with the contents of all cookies transmitted with the request. stream If the incoming form data was not encoded with a known mimetype the data is stored unmodied in this stream for consumption. Most of the time it is a better idea to use data which will give you that data as a string. The stream only returns the data once. headers The incoming request headers as a dictionary like object. data Contains the incoming request data as string in case it came with a mimetype Flask does not handle.
198
files A MultiDict with les uploaded as part of a POST or PUT request. Each le is stored as FileStorage object. It basically behaves like a standard le object you know from Python, with the difference that it also has a save() function that can store the le on the lesystem. environ The underlying WSGI environment. method The current request method (POST, GET etc.) path script_root url base_url url_root Provides different ways to look at the current URL. Imagine your application is listening on the following URL:
http://www.example.com/myapplication
In this case the values of the above mentioned attributes would be the following: path script_root base_url url url_root /page.html /myapplication http://www.example.com/myapplication/page.html http://www.example.com/myapplication/page.html?x=y http://www.example.com/myapplication/
is_xhr True if the request was triggered via a JavaScript XMLHttpRequest. This only works with libraries that support the X-Requested-With header and set it to XMLHttpRequest. Libraries that do that are prototype, jQuery and Mochikit and probably some more. blueprint The name of the current blueprint endpoint The endpoint that matched the request. This in combination with view_args can be used to reconstruct the same or a modied URL. If an exception happened when matching, this will be None. get_json(force=False, silent=False, cache=True) Parses the incoming JSON request data and returns it. If parsing fails the 199
on_json_loading_failed() method on the request object will be invoked. By default this function will only load the json data if the mimetype is application/json but this can be overriden by the force parameter. Parameters force if set to True the mimetype is ignored. silent if set to False this method will fail silently and return False. cache if set to True the parsed JSON data is remembered on the request. json If the mimetype is application/json this will contain the parsed JSON data. Otherwise this will be None. The get_json() method should be used instead. max_content_length Read-only view of the MAX_CONTENT_LENGTH cong key. module The name of the current module if the request was dispatched to an actual module. This is deprecated functionality, use blueprints instead. on_json_loading_failed(e) Called if decoding of the JSON data failed. The return value of this method is used by get_json() when an error occurred. The default implementation just raises a BadRequest exception. Changed in version 0.10: Removed buggy previous behavior of generating a random JSON response. If you want that behavior back you can trivially add it by subclassing.New in version 0.8. routing_exception = None if matching the URL failed, this is the exception that will be raised / was raised as part of the request handling. This is usually a NotFound exception or something similar. url_rule = None the internal URL rule that matched the request. This can be useful to inspect which methods are allowed for the URL from a before/after handler (request.url_rule.methods) etc. New in version 0.6. view_args = None a dict of view arguments that matched the request. If an exception happened when matching, this will be None. class flask.request To access incoming request data, you can use the global request object. Flask parses incoming request data for you and gives you access to it through that global object. Internally Flask makes sure that you always get the correct data for the active thread if you are in a multithreaded environment.
200
This is a proxy. See Notes On Proxies for more information. The request object is an instance of a Request subclass and provides all of the attributes Werkzeug denes. This just shows a quick overview of the most important ones.
201
data
A descriptor that calls get_data() and set_data(). This should not be used and will eventually get deprecated.
21.5 Sessions
If you have the Flask.secret_key set you can use sessions in Flask applications. A session basically makes it possible to remember information from one request to another. The way Flask does this is by using a signed cookie. So the user can look at the session contents, but not modify it unless they know the secret key, so make sure to set that to something complex and unguessable. To access the current session you can use the session object: class flask.session The session object works pretty much like an ordinary dict, with the difference that it keeps track on modications. This is a proxy. See Notes On Proxies for more information. The following attributes are interesting: new True if the session is new, False otherwise. modified True if the session object detected a modication. Be advised that modications on mutable structures are not picked up automatically, in that situation you have to explicitly set the attribute to True yourself. Here an example:
# this change is not picked up because a mutable object (here # a list) is changed. session[objects].append(42) # so mark it as modified yourself session.modified = True
permanent If set to True the session lives for permanent_session_lifetime seconds. The default is 31 days. If set to False (which is the default) the session will be deleted when the user closes the browser.
202
class flask.sessions.SessionInterface The basic interface you have to implement in order to replace the default session interface which uses werkzeugs securecookie implementation. The only methods you have to implement are open_session() and save_session(), the others have useful defaults which you dont need to change. The session object returned by the open_session() method has to provide a dictionary like interface plus the properties and methods from the SessionMixin. We recommend just subclassing a dict and adding that mixin:
class Session(dict, SessionMixin): pass
If open_session() returns None Flask will call into make_null_session() to create a session that acts as replacement if the session support cannot work because some requirement is not fullled. The default NullSession class that is created will complain that the secret key was not set. To replace the session interface on an application all you have to do is to assign flask.Flask.session_interface:
app = Flask(__name__) app.session_interface = MySessionInterface()
New in version 0.8. get_cookie_domain(app) Helpful helper method that returns the cookie domain that should be used for the session cookie if session cookies are used. get_cookie_httponly(app) Returns True if the session cookie should be httponly. This currently just returns the value of the SESSION_COOKIE_HTTPONLY cong var. get_cookie_path(app) Returns the path for which the cookie should be valid. The default implementation uses the value from the SESSION_COOKIE_PATH cong var if its set, and falls back to APPLICATION_ROOT or uses / if its None. get_cookie_secure(app) Returns True if the cookie should be secure. This currently just returns the value of the SESSION_COOKIE_SECURE setting. get_expiration_time(app, session) A helper method that returns an expiration date for the session or None if the session is linked to the browser session. The default implementation returns now + the permanent session lifetime congured on the application. is_null_session(obj) Checks if a given object is a null session. Null sessions are not asked to be saved. This checks if the object is an instance of null_session_class by default.
203
make_null_session(app) Creates a null session which acts as a replacement object if the real session support could not be loaded due to a conguration error. This mainly aids the user experience because the job of the null session is to still support lookup without complaining but modications are answered with a helpful error message of what failed. This creates an instance of null_session_class by default. null_session_class make_null_session() will look here for the class that should be created when a null session is requested. Likewise the is_null_session() method will perform a typecheck against this type. alias of NullSession open_session(app, request) This method has to be implemented and must either return None in case the loading failed because of a conguration error or an instance of a session object which implements a dictionary like interface + the methods and attributes on SessionMixin. pickle_based = False A ag that indicates if the session interface is pickle based. This can be used by ask extensions to make a decision in regards to how to deal with the session object. New in version 0.10. save_session(app, session, response) This is called for actual sessions returned by open_session() at the end of the request. This is still called during a request context so if you absolutely need access to the request you can do that. class flask.sessions.SecureCookieSessionInterface The default session interface that stores sessions in signed cookies through the itsdangerous module. digest_method() the hash function to use for the signature. The default is sha1 key_derivation = hmac the name of the itsdangerous supported key derivation. The default is hmac. salt = cookie-session the salt that should be applied on top of the secret key for the signing of cookie based sessions. serializer = <ask.sessions.TaggedJSONSerializer object at 0x10d295d90> A python serializer for the payload. The default is a compact JSON derived serializer with support for some extra Python types such as datetime objects or tuples. session_class alias of SecureCookieSession 204
class flask.sessions.SecureCookieSession(initial=None) Baseclass for sessions based on signed cookies. class flask.sessions.NullSession(initial=None) Class used to generate nicer error messages if sessions are not available. Will still allow read-only access to the empty session but fail on setting. class flask.sessions.SessionMixin Expands a basic dictionary with an accessors that are expected by Flask extensions and users for the session. modified = True for some backends this will always be True, but some backends will default this to false and detect changes in the dictionary for as long as changes do not happen on mutable structures in the session. The default mixin implementation just hardcodes True in. new = False some session backends can tell you if a session is new, but that is not necessarily guaranteed. Use with caution. The default mixin implementation just hardcodes False in. permanent this reects the _permanent key in the dict.
flask.sessions.session_json_serializer = <ask.sessions.TaggedJSONSerializer object at 0x10 A customized JSON serializer that supports a few extra types that we take for granted when serializing (tuples, markup objects, datetime). This object provides dumping and loading methods similar to simplejson but it also tags certain builtin Python objects that commonly appear in sessions. Currently the following extended values are supported in the JSON it dumps: Markup objects UUID objects datetime objects tuples Notice The PERMANENT_SESSION_LIFETIME cong key can also be an integer starting with Flask 0.8. Either catch this down yourself or use the permanent_session_lifetime attribute on the app which converts the result to an integer automatically.
205
Its now also possible to use the in operator on it to see if an attribute is dened and it yields all keys on iteration. This is a proxy. See Notes On Proxies for more information. 206
Alternatively you can also just test any of the context bound objects (such as request or g for truthness):
class User(db.Model): def __init__(self, username, remote_addr=None): self.username = username if remote_addr is None and request: remote_addr = request.remote_addr self.remote_addr = remote_addr
New in version 0.7. flask.copy_current_request_context(f ) A helper function that decorates a function to retain the current request context. This is useful when working with greenlets. The moment the function is decorated a copy of the request context is created and then pushed when the function is called. Example:
import gevent from flask import copy_current_request_context @app.route(/) def index(): @copy_current_request_context def do_some_work(): # do some work here, it can access flask.request like you
207
# would otherwise in the view function. ... gevent.spawn(do_some_work) return Regular response
New in version 0.10. flask.has_app_context() Works like has_request_context() but for the application context. You can also just do a boolean check on the current_app object instead. New in version 0.9. flask.url_for(endpoint, **values) Generates a URL to the given endpoint with the method provided. Variable arguments that are unknown to the target endpoint are appended to the generated URL as query arguments. If the value of a query argument is None, the whole pair is skipped. In case blueprints are active you can shortcut references to the same blueprint by prexing the local endpoint with a dot (.). This will reference the index function local to the current blueprint:
url_for(.index)
For more information, head over to the Quickstart. To integrate applications, Flask has a hook to intercept URL build errors through Flask.build_error_handler. The url_for function results in a BuildError when the current app does not have a URL for the given endpoint and values. When it does, the current_app calls its build_error_handler if it is not None, which can return a string to use as the result of url_for (instead of url_fors default to raise the BuildError exception) or re-raise the exception. An example:
def external_url_handler(error, endpoint, **values): "Looks up an external URL when url_for cannot build a URL." # This is an example of hooking the build_error_handler. # Here, lookup_url is some utility function youve built # which looks up the endpoint in some external URL registry. url = lookup_url(endpoint, **values) if url is None: # External lookup did not have a URL. # Re-raise the BuildError, in context of original traceback. exc_type, exc_value, tb = sys.exc_info() if exc_value is error: raise exc_type, exc_value, tb else: raise error # url_for will use this result, instead of raising BuildError. return url app.build_error_handler = external_url_handler
Here, error is the instance of BuildError, and endpoint and **values are the arguments passed into url_for. Note that this is for building URLs outside the current 208
application, and not for handling 404 NotFound errors. New in version 0.10: The _scheme parameter was added.New in version 0.9: The _anchor and _method parameters were added.New in version 0.9: Calls Flask.handle_build_error() on BuildError. Parameters endpoint the endpoint of the URL (name of the function) values the variable arguments of the URL rule _external if set to True, an absolute URL is generated. Server address can be changed via SERVER_NAME conguration variable which defaults to localhost. _scheme a string specifying the desired URL scheme. The _external parameter must be set to True or a ValueError is raised. _anchor if provided this is added as anchor to the URL. _method if provided this explicitly species an HTTP method. flask.abort(code) Raises an HTTPException for the given status code. For example to abort request handling with a page not found exception, you would call abort(4 4). Parameters code the HTTP error code. flask.redirect(location, code=302) Return a response object (a WSGI application) that, if called, redirects the client to the target location. Supported codes are 301, 302, 303, 305, and 307. 300 is not supported because its not a real redirect and 304 because its the answer for a request with a request with dened If-Modied-Since headers. New in version 0.6: The location can now be a unicode string that is encoded using the iri_to_uri() function. Parameters location the location the response should redirect to. code the redirect status code. defaults to 302. flask.make_response(*args) Sometimes it is necessary to set additional headers in a view. Because views do not have to return response objects but can return a value that is converted into a response object by Flask itself, it becomes tricky to add headers to it. This function can be called instead of using a return and you will get a response object which you can use to attach headers. If view looked like this and you want to add a new header:
def index(): return render_template(index.html, foo=42)
def index(): response = make_response(render_template(index.html, foo=42)) response.headers[X-Parachutes] = parachutes are cool return response
This function accepts the very same arguments you can return from a view function. This for example creates a response with a 404 error code:
response = make_response(render_template(not_found.html), 4 4)
The other use case of this function is to force the return value of a view function into a response which is helpful with view decorators:
response = make_response(view_function()) response.headers[X-Parachutes] = parachutes are cool
Internally this function does the following things: if no arguments are passed, it creates a new response argument if one argument is passed, flask.Flask.make_response() is invoked with it. if more than one argument is passed, the arguments are passed to the flask.Flask.make_response() function as tuple. New in version 0.6. flask.after_this_request(f ) Executes a function after this request. This is useful to modify response objects. The function is passed the response object and has to return the same or a new one. Example:
@app.route(/) def index(): @after_this_request def add_header(response): response.headers[X-Foo] = Parachute return response return Hello World!
This is more useful if a function other than the view function wants to modify a response. For instance think of a decorator that wants to add some headers without converting the return value into a response object. New in version 0.9. flask.send_file(lename_or_fp, mimetype=None, as_attachment=False, attachment_lename=None, add_etags=True, cache_timeout=None, conditional=False) Sends the contents of a le to the client. This will use the most efcient method available and congured. By default it will try to use the WSGI servers le_wrapper support. Alternatively you can set the applications
210
use_x_sendfile attribute to True to directly emit an X-Sendle header. This however requires support of the underlying webserver for X-Sendle. By default it will try to guess the mimetype for you, but you can also explicitly provide one. For extra security you probably want to send certain les as attachment (HTML for instance). The mimetype guessing requires a lename or an attachment_lename to be provided. Please never pass lenames to this function from user sources without checking them rst. Something like this is usually sufcient to avoid security problems:
if .. in filename or filename.startswith(/): abort(4 4)
New in version 0.2.New in version 0.5: The add_etags, cache_timeout and conditional parameters were added. The default behavior is now to attach etags.Changed in version 0.7: mimetype guessing and etag support for le objects was deprecated because it was unreliable. Pass a lename if you are able to, otherwise attach an etag yourself. This functionality will be removed in Flask 1.0Changed in version 0.9: cache_timeout pulls its default from application cong, when None. Parameters lename_or_fp the lename of the le to send. This is relative to the root_path if a relative path is specied. Alternatively a le object might be provided in which case X-Sendle might not work and fall back to the traditional method. Make sure that the le pointer is positioned at the start of data to send before calling send_file(). mimetype the mimetype of the le if provided, otherwise auto detection happens. as_attachment set to True if you want to send this le with a Content-Disposition: attachment header. attachment_lename the lename for the attachment if it differs from the les lename. add_etags set to False to disable attaching of etags. conditional set to True to enable conditional responses. cache_timeout the timeout in seconds for the headers. When None (default), this value is set by get_send_file_max_age() of current_app. flask.send_from_directory(directory, lename, **options) Send a le from a given directory with send_file(). This is a secure way to quickly expose static les from an upload folder or something similar. Example usage:
211
Sending les and Performance It is strongly recommended to activate either X-Sendle support in your webserver or (if no authentication happens) to tell the webserver to serve les for the given path on its own without calling into the web application for improved performance. New in version 0.5. Parameters directory the directory where all the les are stored. lename the lename relative to that directory to download. options optional keyword arguments that are directly forwarded to send_file(). flask.safe_join(directory, lename) Safely join directory and lename. Example usage:
@app.route(/wiki/<path:filename>) def wiki_page(filename): filename = safe_join(app.config[WIKI_FOLDER], filename) with open(filename, rb) as fd: content = fd.read() # Read and process the file content...
Parameters directory the base directory. lename the untrusted lename relative to that directory. Raises NotFound if the resulting path would fall out of directory. flask.escape(s) Convert the characters &, <, >, and in string s to HTML-safe sequences. Use this if you need to display text that might contain such characters in HTML. Marks return value as markup string. class flask.Markup Marks a string as being safe for inclusion in HTML/XML output without needing to be escaped. This implements the __html__ interface a couple of frameworks and web applications use. Markup is a direct subclass of unicode and provides all the methods of unicode just that it escapes arguments passed and always returns Markup. 212
The escape function returns markup objects so that double escaping cant happen. The constructor of the Markup class can be used for three different things: When passed an unicode object its assumed to be safe, when passed an object with an HTML representation (has an __html__ method) that representation is used, otherwise the object passed is converted into a unicode string and then assumed to be safe:
>>> Markup("Hello <em>World</em>!") Markup(uHello <em>World</em>!) >>> class Foo(object): ... def __html__(self): ... return <a href="#">foo</a> ... >>> Markup(Foo()) Markup(u<a href="#">foo</a>)
If you want object passed being always treated as unsafe you can use the escape() classmethod to create a Markup object:
>>> Markup.escape("Hello <em>World</em>!") Markup(uHello <em>World</em>!)
Operations on a markup string are markup aware which means that all arguments are passed through the escape() function:
>>> em = Markup("<em>%s</em>") >>> em % "foo & bar" Markup(u<em>foo & bar</em>) >>> strong = Markup("<strong>%(text)s</strong>") >>> strong % {text: <blink>hacker here</blink>} Markup(u<strong><blink>hacker here</blink></strong>) >>> Markup("<em>Hello</em> ") + "<foo>" Markup(u<em>Hello</em> <foo>)
classmethod escape(s) Escape the string. Works like escape() with the difference that for subclasses of Markup this function would return the correct subclass. unescape() Unescape markup again into an unicode string. This also resolves known HTML4 and XHTML entities:
>>> Markup("Main » <em>About</em>").unescape() uMain \xbb <em>About</em>
striptags() Unescape markup into an unicode string and strip all tags. This also resolves known HTML4 and XHTML entities. Whitespace is normalized to one:
>>> Markup("Main » uMain \xbb About <em>About</em>").striptags()
213
214
For usage examples, read the json documentation in the standard lirbary. The following extensions are by default applied to the stdlibs JSON module: 1. datetime objects are serialized as RFC 822 strings. 2. Any object with an __html__ method (like Markup) will ahve that method called and then the return value is serialized as string. The htmlsafe_dumps() function of this json module is also available as lter called |tojson in Jinja2. Note that inside script tags no escaping must take place, so make sure to disable escaping with |safe if you intend to use it inside script tags unless you are using Flask 0.10 which implies that:
<script type=text/javascript> doSomethingWith({{ user.username|tojson|safe }}); </script>
flask.json.jsonify(*args, **kwargs) Creates a Response with the JSON representation of the given arguments with an application/json mimetype. The arguments to this function are the same as to the dict constructor. Example usage:
from flask import jsonify @app.route(/_get_current_user) def get_current_user(): return jsonify(username=g.user.username, email=g.user.email, id=g.user.id)
For security reasons only objects are supported toplevel. For more information about this, have a look at JSON Security. This functions response will be pretty printed if it was not requested with X-Requested-With: XMLHttpRequest to simplify debugging unless the 215
JSONIFY_PRETTYPRINT_REGULAR cong parameter is set to false. New in version 0.2. flask.json.dumps(obj, **kwargs) Serialize obj to a JSON formatted str by using the applications congured encoder (json_encoder) if there is an application on the stack. This function can return unicode strings or ascii-only bytestrings by default which coerce into unicode strings automatically. That behavior by default is controlled by the JSON_AS_ASCII conguration variable and can be overriden by the simplejson ensure_ascii parameter. flask.json.dump(obj, fp, **kwargs) Like dumps() but writes into a le object. flask.json.loads(s, **kwargs) Unserialize a JSON object from a string s by using the applications congured decoder (json_decoder) if there is an application on the stack. flask.json.load(fp, **kwargs) Like loads() but reads from a le object. class flask.json.JSONEncoder(skipkeys=False, ensure_ascii=True, check_circular=True, allow_nan=True, sort_keys=False, indent=None, separators=None, encoding=utf-8, default=None) The default Flask JSON encoder. This one extends the default simplejson encoder by also supporting datetime objects, UUID as well as Markup objects which are serialized as RFC 822 datetime strings (same as the HTTP date format). In order to support more data types override the default() method. default(o) Implement this method in a subclass such that it returns a serializable object for o, or calls the base implementation (to raise a TypeError). For example, to support arbitrary iterators, you could implement default like this:
def default(self, o): try: iterable = iter(o) except TypeError: pass else: return list(iterable) return JSONEncoder.default(self, o)
class flask.json.JSONDecoder(encoding=None, object_hook=None, parse_oat=None, parse_int=None, parse_constant=None, strict=True, object_pairs_hook=None) The default JSON decoder. This one does not change the behavior from the default simplejson encoder. Consult the json documentation for more informa216
tion. This decoder is not only used for the load functions of this module but also Request.
New in version 0.2. Parameters template_name the name of the template attribute the name of the variable of macro to access
21.13 Conguration
class flask.Config(root_path, defaults=None) Works exactly like a dict but provides ways to ll it from les or special dictionaries. There are two common patterns to populate the cong. 217
Or alternatively you can dene the conguration options in the module that calls from_object() or provide an import path to a module that should be loaded. It is also possible to tell it to use the same module and with that provide the conguration values just before the call:
DEBUG = True SECRET_KEY = development key app.config.from_object(__name__)
In both cases (loading from any Python le or loading from modules), only uppercase keys are added to the cong. This makes it possible to use lowercase values in the cong le for temporary values that are not added to the cong or to dene the cong keys in the same le that implements the application. Probably the most interesting way to load congurations is from an environment variable pointing to a le:
app.config.from_envvar(YOURAPPLICATION_SETTINGS)
In this case before launching the application you have to set this environment variable to the le you want to use. On Linux and OS X use the export statement:
export YOURAPPLICATION_SETTINGS=/path/to/config/file
On windows use set instead. Parameters root_path path to which les are read relative from. When the cong object is created by the application, this is the applications root_path. defaults an optional dictionary of default values from_envvar(variable_name, silent=False) Loads a conguration from an environment variable pointing to a conguration le. This is basically just a shortcut with nicer error messages for this line of code:
app.config.from_pyfile(os.environ[YOURAPPLICATION_SETTINGS])
Parameters variable_name name of the environment variable silent set to True if you want silent failure for missing les. Returns bool. True if able to load cong, False otherwise.
218
from_object(obj) Updates the values from the given object. An object can be of one of the following two types: a string: in this case the object with that name will be imported an actual object reference: that object is used directly Objects are usually either modules or classes. Just the uppercase variables in that object are stored in the cong. Example usage:
app.config.from_object(yourapplication.default_config) from yourapplication import default_config app.config.from_object(default_config)
You should not use this function to load the actual conguration but rather conguration defaults. The actual cong should be loaded with from_pyfile() and ideally from a location not within the package because the package might be installed system wide. Parameters obj an import name or object from_pyfile(lename, silent=False) Updates the values in the cong from a Python le. This function behaves as if the le was imported as module with the from_object() function. Parameters lename the lename of the cong. This can either be an absolute lename or a lename relative to the root path. silent set to True if you want silent failure for missing les. New in version 0.7: silent parameter.
21.14 Extensions
flask.ext This module acts as redirect import module to Flask extensions. It was added in 0.8 as the canonical way to import Flask extensions and makes it possible for us to have more exibility in how we distribute extensions. If you want to use an extension named Flask-Foo you would import it from ext as follows:
from flask.ext import foo
219
The request context is automatically popped at the end of the request for you. In debug mode the request context is kept around if exceptions happen so that interactive debuggers have a chance to introspect the data. With 0.4 this can also be forced for requests that did not fail and outside of DEBUG mode. By setting flask._preserve_context to True on the WSGI environment the context will not pop itself at the end of the request. This is used by the test_client() for example to implement the deferred cleanup functionality. You might nd this helpful for unittests where you need the information from the context local around for a little longer. Make sure to properly pop() the stack yourself in that situation, otherwise your unittests will leak memory. copy() Creates a copy of this request context with the same request object. This can be used to move a request context to a different greenlet. Because the actual request object is the same this cannot be used to move a request context to a different thread unless access to the request object is locked. New in version 0.10. match_request() Can be overridden by a subclass to hook into the matching of the request. pop(exc=None) Pops the request context and unbinds it by doing that. This will also trigger the execution of functions registered by the teardown_request() decorator. Changed in version 0.9: Added the exc argument. push() Binds the request context to the current context. flask._request_ctx_stack The internal LocalStack that is used to implement all the context local objects used in Flask. This is a documented instance and can be used by extensions and application code but the use is discouraged in general. The following attributes are always present on each layer of the stack: app the active Flask application. url_adapter the URL adapter that was used to match the request. request the current request object. session the active session object. g an object with all the attributes of the flask.g object. ashes an internal cache for the ashed messages. Example usage:
from flask import _request_ctx_stack def get_session(): ctx = _request_ctx_stack.top
221
class flask.ctx.AppContext(app) The application context binds an application object implicitly to the current thread or greenlet, similar to how the RequestContext binds request information. The application context is also implicitly created if a request context is created but the application is not on top of the individual application context. pop(exc=None) Pops the app context. push() Binds the app context to the current context. flask._app_ctx_stack Works similar to the request context but only binds the application. This is mainly there for extensions to store data. New in version 0.9. class flask.blueprints.BlueprintSetupState(blueprint, app, options, rst_registration) Temporary holder object for registering a blueprint with the application. An instance of this class is created by the make_setup_state() method and later passed to all register callback functions. add_url_rule(rule, endpoint=None, view_func=None, **options) A helper method to register a rule (and optionally a view function) to the application. The endpoint is automatically prexed with the blueprints name. app = None a reference to the current application blueprint = None a reference to the blueprint that created this setup state. first_registration = None as blueprints can be registered multiple times with the application and not everything wants to be registered multiple times on it, this attribute can be used to gure out if the blueprint was registered in the past already. options = None a dictionary with all options that were passed to the register_blueprint() method. subdomain = None The subdomain that the blueprint should be active for, None otherwise. url_defaults = None A dictionary with URL defaults that is added to each and every URL that was dened with the blueprint.
222
url_prefix = None The prex that should be used for all URLs dened on the blueprint.
21.17 Signals
New in version 0.6. flask.signals_available True if the signalling system is available. This is the case when blinker is installed. flask.template_rendered This signal is sent when a template was successfully rendered. The signal is invoked with the instance of the template as template and the context as dictionary (named context). flask.request_started This signal is sent before any request processing started but when the request context was set up. Because the request context is already bound, the subscriber can access the request with the standard global proxies such as request. flask.request_finished This signal is sent right before the response is sent to the client. It is passed the response to be sent named response. flask.got_request_exception This signal is sent when an exception happens during request processing. It is sent before the standard exception handling kicks in and even in debug mode, where no exception handling happens. The exception itself is passed to the subscriber as exception. flask.request_tearing_down This signal is sent when the application is tearing down the request. This is always called, even if an error happened. An exc keyword argument is passed with the exception that caused the teardown. Changed in version 0.9: The exc parameter was added. flask.appcontext_tearing_down This signal is sent when the application is tearing down the application context. This is always called, even if an error happened. An exc keyword argument is passed with the exception that caused the teardown. The sender is the application. flask.appcontext_pushed This signal is sent when an application context is pushed. The sender is the application. New in version 0.10. flask.appcontext_popped This signal is sent when an application context is popped. The sender is the application. This usually falls in line with the appcontext_tearing_down signal. New in version 0.10.
223
flask.message_flashed This signal is sent when the application is ashing a message. The messages is sent as message keyword argument and the category as category. New in version 0.10. class flask.signals.Namespace An alias for blinker.base.Namespace if blinker is available, otherwise a dummy class that creates fake signals. This class is available for Flask extensions that want to provide the same fallback system as Flask itself. signal(name, doc=None) Creates a new signal for this namespace if blinker is available, otherwise returns a fake signal that has a send method that will do nothing but will fail with a RuntimeError for all other operations, including connecting.
When you want to decorate a pluggable view you will have to either do that when the view function is created (by wrapping the return value of as_view()) or you can use the decorators attribute:
class SecretView(View): methods = [GET] decorators = [superuser_required] def dispatch_request(self): ...
The decorators stored in the decorators list are applied one after another when the view function is created. Note that you can not use the class based decorators since those would decorate the view class and not the generated view function! classmethod as_view(name, *class_args, **class_kwargs) Converts the class into an actual view function that can be used with the 224
routing system. Internally this generates a function on the y which will instantiate the View on each request and call the dispatch_request() method on it. The arguments passed to as_view() are forwarded to the constructor of the class. decorators = [] The canonical way to decorate class-based views is to decorate the return value of as_view(). However since this moves parts of the logic from the class declaration to the place where its hooked into the routing system. You can place one or more decorators in this list and whenever the view function is created the result is automatically decorated. New in version 0.8. dispatch_request() Subclasses have to override this method to implement the actual view function code. This method is called with all the arguments from the URL rule. methods = None A for which methods this pluggable view can handle. class flask.views.MethodView Like a regular class-based view but that dispatches requests to particular methods. For instance if you implement a method called get() it means you will response to GET requests and the dispatch_request() implementation will automatically forward your request to that. Also options is set for you automatically:
class CounterAPI(MethodView): def get(self): return session.get(counter, ) def post(self): session[counter] = session.get(counter, ) + 1 return OK app.add_url_rule(/counter, view_func=CounterAPI.as_view(counter))
225
Variable parts in the route can be specied with angular brackets (/user/<username>). By default a variable part in the URL accepts any string without a slash however a different converter can be specied as well by using <converter:name>. Variable parts are passed to the view function as keyword arguments. The following converters are available: string int oat path accepts any text without a slash (the default) accepts integers like int but for oating point values like the default but also accepts slashes
An important detail to keep in mind is how Flask deals with trailing slashes. The idea is to keep each URL unique so the following rules apply: 1. If a rule ends with a slash and is requested without a slash by the user, the user is automatically redirected to the same page with a trailing slash attached. 2. If a rule does not end with a trailing slash and the user requests the page with a trailing slash, a 404 not found is raised. This is consistent with how web servers deal with static les. This also makes it possible to use relative link targets safely. You can also dene multiple rules for the same function. They have to be unique however. Defaults can also be specied. Here for example is a denition for a URL that accepts an optional page:
@app.route(/users/, defaults={page: 1}) @app.route(/users/page/<int:page>) def show_users(page): pass
This species that /users/ will be the URL for page one and /users/page/N will be the URL for page N. Here are the parameters that route() and add_url_rule() accept. The only difference is that with the route parameter the view function is dened with the decorator instead of the view_func parameter.
226
rule the URL rule as string endthe endpoint for the registered URL rule. Flask itself assumes that the name point of the view function is the name of the endpoint if not explicitly stated. view_func the function to call when serving a request to the provided endpoint. If this is not provided one can specify the function later by storing it in the view_functions dictionary with the endpoint as key. deA dictionary with defaults for this rule. See the example above for how faults defaults work. subspecies the rule for the subdomain in case subdomain matching is in use. doIf not specied the default subdomain is assumed. main **op- the options to be forwarded to the underlying Rule object. A change to tions Werkzeug is handling of method options. methods is a list of methods this rule should be limited to (GET, POST etc.). By default a rule just listens for GET (and implicitly HEAD). Starting with Flask 0.6, OPTIONS is implicitly added and handled by the standard request handling. They have to be specied as keyword arguments.
227
return Hello World! index.provide_automatic_options = False index.methods = [GET, OPTIONS] app.add_url_rule(/, index)
228
Part III
ADDITIONAL NOTES
Design notes, legal information and changelog are here for the interested.
229
230
CHAPTER
TWENTYTWO
There are three major reasons for this. The most important one is that implicit application objects require that there may only be one instance at the time. There are ways to fake multiple applications with a single application object, like maintaining a stack of applications, but this causes some problems I wont outline here in detail. Now the question is: when does a microframework need more than one application at the same time? A good example for this is unittesting. When you want to test something
231
it can be very helpful to create a minimal application to test specic behavior. When the application object is deleted everything it allocated will be freed again. Another thing that becomes possible when you have an explicit object lying around in your code is that you can subclass the base class (Flask) to alter specic behavior. This would not be possible without hacks if the object were created ahead of time for you based on a class that is not exposed to you. But there is another very important reason why Flask depends on an explicit instantiation of that class: the package name. Whenever you create a Flask instance you usually pass it __name__ as package name. Flask depends on that information to properly load resources relative to your module. With Pythons outstanding support for reection it can then access the package to gure out where the templates and static les are stored (see open_resource()). Now obviously there are frameworks around that do not need any conguration and will still be able to load templates relative to your application module. But they have to use the current working directory for that, which is a very unreliable way to determine where the application is. The current working directory is process-wide and if you are running multiple applications in one process (which could happen in a webserver without you knowing) the paths will be off. Worse: many webservers do not set the working directory to the directory of your application but to the document root which does not have to be the same folder. The third reason is explicit is better than implicit. That object is your WSGI application, you dont have to remember anything else. If you want to apply a WSGI middleware, just wrap it and youre done (though there are better ways to do that so that you do not lose the reference to the application object wsgi_app()). Furthermore this design makes it possible to use a factory function to create the application which is very helpful for unittesting and similar things (Application Factories).
will probably go away, the decision to bundle one template engine and use that will not. Template engines are like programming languages and each of those engines has a certain understanding about how things work. On the surface they all work the same: you tell the engine to evaluate a template with a set of variables and take the return value as string. But thats about where similarities end. Jinja2 for example has an extensive lter system, a certain way to do template inheritance, support for reusable blocks (macros) that can be used from inside templates and also from Python code, uses Unicode for all operations, supports iterative template rendering, congurable syntax and more. On the other hand an engine like Genshi is based on XML stream evaluation, template inheritance by taking the availability of XPath into account and more. Mako on the other hand treats templates similar to Python modules. When it comes to connecting a template engine with an application or framework there is more than just rendering templates. For instance, Flask uses Jinja2s extensive autoescaping support. Also it provides ways to access macros from Jinja2 templates. A template abstraction layer that would not take the unique features of the template engines away is a science on its own and a too large undertaking for a microframework like Flask. Furthermore extensions can then easily depend on one template language being present. You can easily use your own templating language, but an extension could still depend on Jinja itself.
233
234
CHAPTER
TWENTYTHREE
HTML/XHTML FAQ
The Flask documentation and example applications are using HTML5. You may notice that in many situations, when end tags are optional they are not used, so that the HTML is cleaner and faster to load. Because there is much confusion about HTML and XHTML among developers, this document tries to answer some of the major questions.
1 2
236
237
238
CHAPTER
TWENTYFOUR
SECURITY CONSIDERATIONS
Web applications usually face all kinds of security problems and its very hard to get everything right. Flask tries to solve a few of these things for you, but there are a couple more you have to take care of yourself.
Why is this necessary? Because if you would not be doing that, an attacker could easily inject custom JavaScript handlers. For example an attacker could inject this piece of HTML+JavaScript:
239
onmouseover=alert(document.cookie)
When the user would then move with the mouse over the link, the cookie would be presented to the user in an alert window. But instead of showing the cookie to the user, a good attacker might also execute any other JavaScript code. In combination with CSS injections the attacker might even make the element ll out the entire page so that the user would just have to have the mouse anywhere on the page to trigger the attack.
problems and the only thing that could possibly break are very large responses that can cause some kind of denial of service at the receivers side. However there is a catch. Due to how browsers work the CSRF issue comes up with JSON unfortunately. Fortunately there is also a weird part of the JavaScript specication that can be used to solve that problem easily and Flask is kinda doing that for you by preventing you from doing dangerous stuff. Unfortunately that protection is only there for jsonify() so you are still at risk when using other ways to generate JSON. So what is the issue and how to avoid it? The problem are arrays at top-level in JSON. Imagine you send the following data out in a JSON request. Say thats exporting the names and email addresses of all your friends for a part of the user interface that is written in JavaScript. Not very uncommon:
[ ] {"username": "admin", "email": "admin@localhost"}
And it is doing that of course only as long as you are logged in and only for you. And it is doing that for all GET requests to a certain URL, say the URL for that request is http://example.com/api/get_friends.json. So now what happens if a clever hacker is embedding this to his website and social engineers a victim to visiting his site:
<script type=text/javascript> var captured = []; var oldArray = Array; function Array() { var obj = this, id = , capture = function(value) { obj.__defineSetter__(id++, capture); if (value) captured.push(value); }; capture(); } </script> <script type=text/javascript src=http://example.com/api/get_friends.json></script> <script type=text/javascript> Array = oldArray; // now we have all the data in the captured array. </script>
If you know a bit of JavaScript internals you might know that its possible to patch constructors and register callbacks for setters. An attacker can use this (like above) to get all the data you exported in your JSON le. The browser will totally ignore the application/json mimetype if text/javascript is dened as content type in the script tag and evaluate that as JavaScript. Because top-level array elements are allowed (albeit useless) and we hooked in our own constructor, after that page loaded the data from the JSON response is in the captured array. 241
Because it is a syntax error in JavaScript to have an object literal ({...}) toplevel an attacker could not just do a request to an external URL with the script tag to load up the data. So what Flask does is to only allow objects as toplevel elements when using jsonify(). Make sure to do the same when using an ordinary JSON generate function.
242
CHAPTER
TWENTYFIVE
UNICODE IN FLASK
Flask like Jinja2 and Werkzeug is totally Unicode based when it comes to text. Not only these libraries, also the majority of web related Python libraries that deal with text. If you dont know Unicode so far, you should probably read The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets. This part of the documentation just tries to cover the very basics so that you have a pleasant experience with Unicode related things.
243
To go from Unicode into a specic charset such as UTF-8 you can use the unicode.encode() method:
def write_file(filename, contents, charset=utf-8): with open(filename, w) as f: f.write(contents.encode(charset))
Vim: put set enc=utf-8 to your .vimrc le. Emacs: either use an encoding cookie or put this into your .emacs le:
(prefer-coding-system utf-8) (setq default-buffer-file-coding-system utf-8)
Notepad++: 1. Go to Settings -> Preferences ... 2. Select the New Document/Default Directory tab 3. Select UTF-8 without BOM as encoding It is also recommended to use the Unix newline format, you can select it in the same panel but this is not a requirement.
245
246
CHAPTER
TWENTYSIX
247
Flask extensions must be licensed under a BSD, MIT or more liberal license to be able to be enlisted in the Flask Extension Registry. Keep in mind that the Flask Extension Registry is a moderated place and libraries will be reviewed upfront if they behave as required.
26.2.1 setup.py
The next le that is absolutely required is the setup.py le which is used to install your Flask extension. The following contents are something you can work with:
""" Flask-SQLite3 ------------This is the description for that library """ from setuptools import setup setup( name=Flask-SQLite3, version=1. , url=http://example.com/flask-sqlite3/, license=BSD, author=Your Name, author_email=your-email@example.com, description=Very short description, long_description=__doc__, py_modules=[flask_sqlite3], # if you would be using a package instead use packages instead # of py_modules: # packages=[flask_sqlite3], zip_safe=False, include_package_data=True, platforms=any,
248
install_requires=[ Flask ], classifiers=[ Environment :: Web Environment, Intended Audience :: Developers, License :: OSI Approved :: BSD License, Operating System :: OS Independent, Programming Language :: Python, Topic :: Internet :: WWW/HTTP :: Dynamic Content, Topic :: Software Development :: Libraries :: Python Modules ]
Thats a lot of code but you can really just copy/paste that from existing extensions and adapt.
26.2.2 ask_sqlite3.py
Now this is where your extension code goes. But how exactly should such an extension look like? What are the best practices? Continue reading for some insight.
Whats important about classes is that they encourage to be shared around on module level. In that case, the object itself must not under any circumstances store any application specic state and must be shareable between different application.
250
So heres what these lines of code do: 1. The __init__ method takes an optional app object and, if supplied, will call init_app. 2. The init_app method exists so that the SQLite3 object can be instantiated without requiring an app object. This method supports the factory pattern for creating applications. The init_app will set the conguration for the database, defaulting to an in memory database if no conguration is supplied. In addition, the init_app method attaches the teardown handler. It will try to use the newstyle app context handler and if it does not exist, falls back to the request context one. 3. Next, we dene a connect method that opens a database connection. 4. Finally, we add a connection property that on rst access opens the database connection and stores it on the context. This is also the recommended way to handling resources: fetch resources lazily the rst time they are used. Note here that were attaching our database connection to the top application context via _app_ctx_stack.top. Extensions should use the top context for storing their own information with a sufciently complex name. Note that were falling back to the _request_ctx_stack.top if the application is using an older version of Flask that does not support it. So why did we decide on a class-based approach here? Because using our extension looks something like this:
from flask import Flask from flask_sqlite3 import SQLite3 app = Flask(__name__) app.config.from_pyfile(the-config.cfg) db = SQLite3(app)
You can then use the database from views like this:
@app.route(/) def show_all(): cur = db.connection.cursor() cur.execute(...)
Likewise if you are outside of a request but you are using Flask 0.9 or later with the app context support, you can use the database in the same way:
with app.app_context(): cur = db.connection.cursor() cur.execute(...)
At the end of the with block the teardown handles will be executed automatically. 251
Additionally, the init_app method is used to support the factory pattern for creating apps:
db = Sqlite3() # Then later on. app = create_app(the-config.cfg) db.init_app(app)
Keep in mind that supporting this factory pattern for creating apps is required for approved ask extensions (described below). Note on init_app As you noticed, init_app does not assign app to self. This is intentional! Class based Flask extensions must only store the application on the object when the application was passed to the constructor. This tells the extension: I am not interested in using multiple applications. When the extension needs to nd the current application and it does not have a reference to it, it must either use the current_app context local or change the API in a way that you can pass the application explicitly.
252
Strictly speaking the above code is wrong, because teardown functions are passed the exception and typically dont return anything. However because the return value is discarded this will just work assuming that the code in between does not touch the passed parameter.
an approved extension has to support multiple applications running in the same Python process. it must be possible to use the factory pattern for creating applications. 4. The license must be BSD/MIT/WTFPL licensed. 5. The naming scheme for ofcial extensions is Flask-ExtensionName or ExtensionName-Flask. 6. Approved extensions must dene all their dependencies in the setup.py le unless a dependency cannot be met because it is not available on PyPI. 7. The extension must have documentation that uses one of the two Flask themes for Sphinx documentation. 8. The setup.py description (and thus the PyPI description) has to link to the documentation, website (if there is one) and there must be a link to automatically install the development version (PackageName==dev). 9. The zip_safe ag in the setup script must be set to False, even if the extension would be safe for zipping. 10. An extension currently has to support Python 2.6 as well as Python 2.7
254
CHAPTER
TWENTYSEVEN
POCOO STYLEGUIDE
The Pocoo styleguide is the styleguide for all Pocoo Projects, including Flask. This styleguide is a requirement for Patches to Flask and a recommendation for Flask extensions. In general the Pocoo Styleguide closely follows PEP 8 with some small differences and extensions.
For lists or tuples with many items, break immediately after the opening brace:
items = [ this is the first, set of items, with more items, to come in this line, like this ]
255
Blank lines: Top level functions and classes are separated by two lines, everything else by one. Do not use too many blank lines to separate logical segments in code. Example:
def hello(name): print Hello %s! % name def goodbye(name): print See you %s. % name class MyClass(object): """This is a simple docstring""" def __init__(self, name): self.name = name def get_annoying_name(self): return self.name.upper() + !!!!111
Bad:
exp = value = value = value=( value = value = 1. 5 ( item_value / item_count ) * offset / exp (item_value/item_count)*offset/exp item_value/item_count ) * offset/exp my_list[ index ] my_dict [key]
Yoda statements are a no-go: Never compare constant with variable, always variable with constant: Good:
256
Bad:
if md5 == method: pass
Comparisons: against arbitrary types: == and != against singletons with is and is not (eg: foo is not None) never compare something with True or False (for example never do foo == False, do not foo instead) Negated containment checks: use foo not in bar instead of not foo in bar Instance checks: isinstance(a, C) instead of type(A) is C, but try to avoid instance checks in general. Check for features.
257
27.4 Docstrings
Docstring conventions: All docstrings are formatted with reStructuredText as understood by Sphinx. Depending on the number of lines in the docstring, they are laid out differently. If its just one line, the closing triple quote is on the same line as the opening, otherwise the text is on the same line as the opening quote and the triple quote that closes the string on its own line:
def foo(): """This is a simple docstring""" def bar(): """This is a longer docstring with so much information in there that it spans three lines. In this case the closing triple quote is on its own line. """
Module header: The module header consists of an utf-8 encoding declaration (if non ASCII letters are used, but it is recommended all the time) and a standard docstring:
# -*- coding: utf-8 -*""" package.module ~~~~~~~~~~~~~~ A brief description goes here. :copyright: (c) YEAR by AUTHOR. :license: LICENSE_NAME, see LICENSE_FILE for more details.
"""
Please keep in mind that proper copyrights and license les are a requirement for approved Flask extensions.
27.5 Comments
Rules for comments are similar to docstrings. Both are formatted with reStructuredText. If a comment is used to document an attribute, put a colon after the opening pound sign (#):
class User(object): #: the name of the user as unicode string name = Column(String) #: the sha1 hash of the password + inline salt pw_hash = Column(String)
258
CHAPTER
TWENTYEIGHT
PYTHON 3 SUPPORT
Flask and all of its dependencies support Python 3 so you can in theory start working on it already. There are however a few things you should be aware of before you start using Python 3 for your next project.
28.1 Requirements
If you want to use Flask with Python 3 you will need to use Python 3.3 or higher. 3.2 and older are not supported. In addition to that you need to use the latest and greatest versions of itsdangerous, Jinja2 and Werkzeug.
259
28.5 Recommendations
Unless you are already familiar with the differences in the versions we recommend sticking to current versions of Python until the ecosystem caught up. The majority of the upgrade pain is in the lower-level libararies like Flask and Werkzeug and not in the actual high-level application code. For instance all of the Flask examples that are in the Flask repository work out of the box on both 2.x and 3.x and did not require a single line of code changed.
260
CHAPTER
TWENTYNINE
261
If you maintain an extension that was using _request_ctx_stack before, please consider changing to _app_ctx_stack if it makes sense for your extension. For instance, the app context stack makes sense for extensions which connect to databases. Using the app context stack instead of the request stack will make extensions more readily handle use cases outside of requests.
262
The script scans your whole application and generates an unied diff with changes it assumes are safe to apply. However as this is an automated tool it wont be able to nd all use cases and it might miss some. We internally spread a lot of deprecation warnings all over the place to make it easy to nd pieces of code that it was unable to upgrade. We strongly recommend that you hand review the generated patchle and only apply the chunks that look good. If you are using git as version control system for your project we recommend applying the patch with path -p1 < patchfile.diff and then using the interactive commit feature to only apply the chunks that look good. To apply the upgrade script do the following: 1. Download the script: ask-07-upgrade.py 2. Run it in the directory of your application:
python flask- 7-upgrade.py > patchfile.diff
5. If you were using per-module template folders you need to move some templates around. Previously if you had a folder named templates next to a blueprint named admin the implicit template path automatically was admin/index.html for a template le called templates/index.html. This no longer is the case. Now you need to name the template templates/admin/index.html. The tool will not detect this so you will have to do that on your own. Please note that deprecation warnings are disabled by default starting with Python 2.7. In order to see the deprecation warnings that might be emitted you have to enabled them with the warnings module. If you are working with windows and you lack the patch command line utility you can get it as part of various Unix runtime environments for windows including cygwin, msysgit or ming32. Also source control systems like svn, hg or git have builtin support for applying unied diffs as generated by the tool. Check the manual of your version control system for more information.
to use etags and mimetypes when le objects were passed. This was unreliable and caused issues for a few setups. If you get a deprecation warning, make sure to update your application to work with either lenames there or disable etag attaching and attach them yourself. Old code:
return send_file(my_file_object) return send_file(my_file_object)
New code:
return send_file(my_file_object, add_etags=False)
On the upside this change greatly improves the internal code ow and makes it easier to customize the dispatching and error handling. This makes it now a lot easier to write unit tests as you can prevent closing down of database connections for a while. You can take advantage of the fact that the teardown callbacks are called when the response context is removed from the stack so a test can query the database after request handling:
with app.test_client() as client: resp = client.get(/) # g.db is still bound if there is such a thing # and here its gone
264
Into this:
app.register_error_handler(4 3, handle_error)
265
need to add another subfolder with the blueprints name into that folder if you want blueprintname/template.html as the template name. If you continue to use the Module object which is deprecated, Flask will restore the previous behavior as good as possible. However we strongly recommend upgrading to the new blueprints as they provide a lot of useful improvement such as the ability to attach a blueprint multiple times, blueprint specic error handlers and a lot more.
266
You no longer have to do that, instead you can just load a conguration into the cong object. How this works is outlined in Conguration Handling.
267
268
CHAPTER
THIRTY
FLASK CHANGELOG
Here you can see the full list of changes between each Flask release.
Added template_global methods in addition to the already existing template_filter method family. Set the content-length header for x-sendle. tojson lter now does not escape script blocks in HTML5 parsers.
269
tojson used in templates is now safe by default due. This was allowed due to the different escaping behavior. Flask will now raise an error if you attempt to register a new function on an already used endpoint. Added wrapper module around simplejson and added default serialization of datetime objects. This allows much easier customization of how JSON is handled by Flask or any Flask extension. Removed deprecated internal flask.session module alias. Use flask.sessions instead to get the session module. This is not to be confused with flask.session the session proxy. Templates can now be rendered without request context. The behavior is slightly different as the request, session and g objects will not be available and blueprints context processors are not called. The cong object is now available to the template as a real global and not through a context processor which makes it available even in imported templates by default. Added an option to generate non-ascii encoded JSON which should result in less bytes being transmitted over the network. Its disabled by default to not cause confusion with existing libraries that might expect flask.json.dumps to return bytestrings by default. flask.g is now stored on the app context instead of the request context. flask.g now gained a get() method for not erroring out on non existing items. flask.g now can be used with the in operator to see whats dened and it now is iterable and will yield all attributes stored. flask.Flask.request_globals_class got renamed to flask.Flask.app_ctx_globals_class which is a better name to what it does since 0.10. request, session and g are now also added as proxies to the template context which makes them available in imported templates. One has to be very careful with those though because usage outside of macros might cause caching. Flask will no longer invoke the wrong error handlers if a proxy exception is passed through. Added a workaround for chromes cookies in localhost not working as intended with domain names. Changed logic for picking defaults for cookie values from sessions to work better with Google Chrome. Added message_ashed signal that simplies ashing testing. Added support for copying of request contexts for better working with greenlets.
270
Removed custom JSON HTTP exception subclasses. If you were relying on them you can reintroduce them again yourself trivially. Using them however is strongly discouraged as the interface was awed. Python requirements changed: requiring Python 2.6 or 2.7 now to prepare for Python 3.3 port. Changed how the teardown system is informed about exceptions. This is now more reliable in case something handles an exception halfway through the error handling process. Request context preservation in debug mode now keeps the exception information around which means that teardown handlers are able to distinguish error from success cases. Added the JSONIFY_PRETTYPRINT_REGULAR conguration variable. Flask now orders JSON keys by default to not trash HTTP caches due to different hash seeds between different workers. Added appcontext_pushed and appcontext_popped signals. The builtin run method now takes the SERVER_NAME into account when picking the default port to run on. Added ask.request.get_json() as a replacement for the old ask.request.json property.
271
The flask.Flask class will avoid importing the provided import name if it can (the required rst parameter), to benet tools which build Flask instances programmatically. The Flask class will fall back to using import on systems with custom module hooks, e.g. Google App Engine, or when the import name is inside a zip archive (usually a .egg) prior to Python 2.7. Blueprints now have a decorator to add custom template lters application wide, flask.Blueprint.app_template_filter(). The Flask and Blueprint classes now have a non-decorator method for adding custom template lters application wide, flask.Flask.add_template_filter() and flask.Blueprint.add_app_template_filter(). The flask.get_flashed_messages() function now allows rendering ashed message categories in separate blocks, through a category_filter argument. The flask.Flask.run() method now accepts None for host and port arguments, using default values when None. This allows for calling run using conguration values, e.g. app.run(app.config.get(MYHOST), app.config.get(MYPORT)), with proper behavior whether or not a cong le is provided. The flask.render_template() method now accepts a either an iterable of template names or a single template name. Previously, it only accepted a single template name. On an iterable, the rst template found is rendered. Added flask.Flask.app_context() which works very similar to the request context but only provides access to the current application. This also adds support for URL generation without an active request context. View functions can now return a tuple with the rst instance being an instance of flask.Response. This allows for returning jsonify(error="error msg"), 4 from a view function. Flask and Blueprint now provide a get_send_file_max_age() hook for subclasses to override behavior of serving static les from Flask when using flask.Flask.send_static_file() (used for the default static le handler) and send_file(). This hook is provided a lename, which for example allows changing cache controls by le extension. The default max-age for send_le and static les can be congured through a new SEND_FILE_MAX_AGE_DEFAULT conguration variable, which is used in the default get_send_le_max_age implementation. Fixed an assumption in sessions implementation which could break message ashing on sessions implementations which use external storage. Changed the behavior of tuple return values from functions. They are no longer arguments to the response object, they now have a dened meaning. Added flask.Flask.request_globals_class to allow a specic class to be used on creation of the g instance of each request. Added required_methods attribute to view functions to force-add methods on registration. Added flask.after_this_request().
272
Added flask.stream_with_context() and the ability to push contexts multiple times without producing unexpected behavior.
273
Refactored test client internally. The APPLICATION_ROOT conguration variable as well as SERVER_NAME are now properly used by the test client as defaults. Added flask.views.View.decorators to support simpler decorating of pluggable (class-based) views. Fixed an issue where the test client if used with the with statement did not trigger the execution of the teardown handlers. Added ner control over the session cookie parameters. HEAD requests to a method view now automatically dispatch to the get method if no handler was implemented. Implemented the virtual flask.ext package to import extensions from. The context preservation on exceptions is now an integral component of Flask itself and no longer of the test client. This cleaned up some internal logic and lowers the odds of runaway request contexts in unittests.
Unbound locals now raise a proper RuntimeError instead of an AttributeError. Mimetype guessing and etag support based on le objects is now deprecated for flask.send_file() because it was unreliable. Pass lenames instead or attach your own etags and provide a proper mimetype by hand. Static le handling for modules now requires the name of the static folder to be supplied explicitly. The previous autodetection was not reliable and caused issues on Googles App Engine. Until 1.0 the old behavior will continue to work but issue dependency warnings. xed a problem for Flask to run on jython. added a PROPAGATE_EXCEPTIONS conguration variable that can be used to ip the setting of exception propagation which previously was linked to DEBUG alone and is now linked to either DEBUG or TESTING. Flask no longer internally depends on rules being added through the add_url_rule function and can now also accept regular werkzeug rules added to the url map. Added an endpoint method to the ask application object which allows one to register a callback to an arbitrary endpoint with a decorator. Use Last-Modied for static le sending instead of Date which was incorrectly introduced in 0.6. Added create_jinja_loader to override the loader creation process. Implemented a silent ag for cong.from_pyle. Added teardown_request decorator, for functions that should run at the end of a request regardless of whether an exception occurred. Also the behavior for after_request was changed. Its now no longer executed when an exception is raised. See Upgrading to new Teardown Handling Implemented flask.has_request_context() Deprecated init_jinja_globals. Override the create_jinja_environment() method instead to achieve the same functionality. Added flask.safe_join() The automatic JSON request data unpacking now looks at the charset mimetype parameter. Dont modify the session on flask.get_flashed_messages() if there are no messages in the session. before_request handlers are now able to abort requests with errors. it is not possible to dene user exception handlers. That way you can provide custom error messages from a central hub for certain errors that might occur during request processing (for instance database connection errors, timeouts from remote resources etc.). Blueprints can provide blueprint specic error handlers.
275
276
refactored the way URL adapters are created. This process is now fully customizable with the create_url_adapter() method. modules can now register for a subdomain instead of just an URL prex. This makes it possible to bind a whole module to a congurable subdomain.
277
278
279
280
CHAPTER
THIRTYONE
LICENSE
Flask is licensed under a three clause BSD License. It basically means: do whatever you want with it as long as the copyright in Flask sticks around, the conditions are not modied and the disclaimer is present. Furthermore you must not use the names of the authors to promote derivatives of the software without written consent. The full license text can be found below (Flask License). For the documentation and artwork different licenses apply.
31.1 Authors
Flask is written and maintained by Armin Ronacher and various contributors:
Marian Sigler Matt Campell Matthew Frazier Michael van Tellingen Ron DuPlain Sebastien Estienne Simon Sapin Stephane Wirtel Thomas Schranz Zhao Xiaohong Edmond Burnett
282
THIS SOFTWARE AND DOCUMENTATION IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS AS IS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE AND DOCUMENTATION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
283
284
INDEX
Symbols
app_ctx_globals_class (ask.Flask attribute), 178 _app_ctx_stack (in module ask), 222 (ask.Blueprint _request_ctx_stack (in module ask), 221 app_errorhandler() method), 195 app_template_lter() (ask.Blueprint A method), 195 abort() (in module ask), 209 app_template_global() (ask.Blueprint add_app_template_lter() method), 195 (ask.Blueprint method), 194 app_template_test() (ask.Blueprint add_app_template_global() method), 195 (ask.Blueprint method), 194 app_url_defaults() (ask.Blueprint add_app_template_test() (ask.Blueprint method), 195 method), 194 add_template_lter() (ask.Flask app_url_value_preprocessor() (ask.Blueprint method), 195 method), 176 add_template_global() (ask.Flask AppContext (class in ask.ctx), 222 appcontext_popped (built-in variable), 72 method), 176 add_template_test() (ask.Flask method), appcontext_popped (in module ask), 223 appcontext_pushed (in module ask), 223 177 add_url_rule() (ask.Blueprint method), appcontext_tearing_down (in module ask), 223 194 args (ask.Request attribute), 198 add_url_rule() as_view() (ask.views.View class (ask.blueprints.BlueprintSetupState method), 224 method), 222 auto_nd_instance_path() (ask.Flask add_url_rule() (ask.Flask method), 177 method), 178 after_app_request() (ask.Blueprint method), 194 B after_request() (ask.Blueprint method), base_url (ask.Request attribute), 199 195 before_app_rst_request() after_request() (ask.Flask method), 177 (ask.Blueprint method), 195 after_request_funcs (ask.Flask attribute), before_app_request() (ask.Blueprint 178 method), 195 after_this_request() (in module ask), 210 before_rst_request() (ask.Flask app (ask.blueprints.BlueprintSetupState method), 178 attribute), 222 before_rst_request_funcs (ask.Flask atapp_context() (ask.Flask method), 178 tribute), 178 app_context_processor() (ask.Blueprint before_request() (ask.Blueprint method), method), 195 195 285
before_request() (ask.Flask method), 179 dispatch_request() (ask.views.View before_request_funcs (ask.Flask atmethod), 225 tribute), 179 do_teardown_appcontext() (ask.Flask Blueprint (class in ask), 194 method), 180 blueprint (ask.blueprints.BlueprintSetupState do_teardown_request() (ask.Flask method), 180 attribute), 222 blueprint (ask.Request attribute), 199 dump() (in module ask.json), 216 blueprints (ask.Flask attribute), 179 dumps() (in module ask.json), 216 BlueprintSetupState (class in E ask.blueprints), 222 enable_modules (ask.Flask attribute), C 180 Cong (class in ask), 217 endpoint (ask.Request attribute), 199 cong (ask.Flask attribute), 179 endpoint() (ask.Blueprint method), 196 context_processor() (ask.Blueprint endpoint() (ask.Flask method), 180 environ (ask.Request attribute), 199 method), 195 context_processor() (ask.Flask method), environment variable 179 FLASKR_SETTINGS, 30 cookies (ask.Request attribute), 198 YOURAPPLICATION_SETTINGS, 62 copy() (ask.ctx.RequestContext method), error_handler_spec (ask.Flask attribute), 221 180 copy_current_request_context() (in mod- errorhandler() (ask.Blueprint method), ule ask), 207 196 create_global_jinja_loader() (ask.Flask errorhandler() (ask.Flask method), 181 method), 179 escape() (ask.Markup class method), 213 create_jinja_environment() (ask.Flask escape() (in module ask), 212 method), 179 extensions (ask.Flask attribute), 181 create_url_adapter() (ask.Flask method), F 179 les (ask.Request attribute), 198 current_app (in module ask), 207 rst_registration D (ask.blueprints.BlueprintSetupState attribute), 222 data (ask.Request attribute), 198 ash() (in module ask), 214 data (ask.Response attribute), 201 Flask (class in ask), 175 debug (ask.Flask attribute), 179 debug_log_format (ask.Flask attribute), ask (module), 175 ask.ext (in module ask), 219 180 decorators (ask.views.View attribute), ask.json (module), 214 ask.signals.Namespace (built-in class), 225 224 default() (ask.json.JSONEncoder FlaskClient (class in ask.testing), 206 method), 216 default_cong (ask.Flask attribute), 180 FLASKR_SETTINGS, 30 form (ask.Request attribute), 198 digest_method() from_envvar() (ask.Cong method), 218 (ask.sessions.SecureCookieSessionInterface from_object() (ask.Cong method), 218 method), 204 dispatch_request() (ask.Flask method), from_pyle() (ask.Cong method), 219 full_dispatch_request() (ask.Flask 180 method), 181 286
G
g (in module ask), 206 get_cookie_domain() (ask.sessions.SessionInterface method), 203 get_cookie_httponly() (ask.sessions.SessionInterface method), 203 get_cookie_path() (ask.sessions.SessionInterface method), 203 get_cookie_secure() (ask.sessions.SessionInterface method), 203 get_expiration_time() (ask.sessions.SessionInterface method), 203 get_ashed_messages() (in module ask), 214 get_json() (ask.Request method), 199 get_send_le_max_age() (ask.Blueprint method), 196 get_send_le_max_age() (ask.Flask method), 181 get_template_attribute() (in module ask), 217 got_rst_request (ask.Flask attribute), 182 got_request_exception (in module ask), 223
I
init_jinja_globals() (ask.Flask method), 182 inject_url_defaults() (ask.Flask method), 183 instance_path (ask.Flask attribute), 183 is_null_session() (ask.sessions.SessionInterface method), 203 is_xhr (ask.Request attribute), 199
J
jinja_env (ask.Flask attribute), 183 jinja_loader (ask.Blueprint attribute), 196 jinja_loader (ask.Flask attribute), 183 jinja_options (ask.Flask attribute), 183 json (ask.Request attribute), 200 json_decoder (ask.Flask attribute), 183 json_encoder (ask.Flask attribute), 183 JSONDecoder (class in ask.json), 216 JSONEncoder (class in ask.json), 216 jsonify() (in module ask.json), 215
K
key_derivation (ask.sessions.SecureCookieSessionInterface attribute), 204
H
handle_exception() (ask.Flask method), 182 handle_http_exception() (ask.Flask method), 182 handle_url_build_error() (ask.Flask method), 182 handle_user_exception() (ask.Flask method), 182 has_app_context() (in module ask), 208 has_request_context() (in module ask), 207 has_static_folder (ask.Blueprint attribute), 196 has_static_folder (ask.Flask attribute), 182 headers (ask.Request attribute), 198
L
load() (in module ask.json), 216 loads() (in module ask.json), 216 log_exception() (ask.Flask method), 183 logger (ask.Flask attribute), 183 logger_name (ask.Flask attribute), 183
M
make_cong() (ask.Flask method), 183 make_default_options_response() (ask.Flask method), 183 make_null_session() (ask.Flask method), 184 make_null_session() (ask.sessions.SessionInterface method), 203 make_response() (ask.Flask method), 184 287
make_response() (in module ask), 209 make_setup_state() (ask.Blueprint method), 196 Markup (class in ask), 212 match_request() (ask.ctx.RequestContext method), 221 max_content_length (ask.Request attribute), 200 message_ashed (in module ask), 223 method (ask.Request attribute), 199 methods (ask.views.View attribute), 225 MethodView (class in ask.views), 225 mimetype (ask.Response attribute), 202 modied (ask.session attribute), 202 modied (ask.sessions.SessionMixin attribute), 205 module (ask.Request attribute), 200
name (ask.Flask attribute), 184 new (ask.session attribute), 202 new (ask.sessions.SessionMixin atR tribute), 205 record() (ask.Blueprint method), 197 null_session_class record_once() (ask.Blueprint method), (ask.sessions.SessionInterface 197 attribute), 204 redirect() (in module ask), 209 NullSession (class in ask.sessions), 205 register() (ask.Blueprint method), 197 O register_blueprint() (ask.Flask method), on_json_loading_failed() (ask.Request 186 method), 200 register_error_handler() (ask.Flask open_instance_resource() (ask.Flask method), 186 method), 184 register_module() (ask.Flask method), open_resource() (ask.Blueprint method), 186 196 render_template() (in module ask), 217 open_resource() (ask.Flask method), 184 render_template_string() (in module open_session() (ask.Flask method), 185 ask), 217 open_session() Request (class in ask), 198 (ask.sessions.SessionInterface request (class in ask), 200 method), 204 request_class (ask.Flask attribute), 186 options (ask.blueprints.BlueprintSetupState request_context() (ask.Flask method), attribute), 222 186 request_nished (in module ask), 223 P request_started (in module ask), 223 path (ask.Request attribute), 199 request_tearing_down (in module ask), permanent (ask.session attribute), 202 223 permanent (ask.sessions.SessionMixin RequestContext (class in ask.ctx), 220 attribute), 205 288
permanent_session_lifetime (ask.Flask attribute), 185 pickle_based (ask.sessions.SessionInterface attribute), 204 pop() (ask.ctx.AppContext method), 222 pop() (ask.ctx.RequestContext method), 221 preprocess_request() (ask.Flask method), 185 preserve_context_on_exception (ask.Flask attribute), 185 process_response() (ask.Flask method), 185 propagate_exceptions (ask.Flask attribute), 186 push() (ask.ctx.AppContext method), 222 push() (ask.ctx.RequestContext method), 221 Python Enhancement Proposals PEP 8, 255
Response (class in ask), 201 response_class (ask.Flask attribute), 187 RFC RFC 822, 215 route() (ask.Blueprint method), 197 route() (ask.Flask method), 187 routing_exception (ask.Request attribute), 200 run() (ask.Flask method), 187
SessionInterface (class in ask.sessions), 202 SessionMixin (class in ask.sessions), 205 set_cookie() (ask.Response method), 201 should_ignore_error() (ask.Flask method), 188 signal() (ask.signals.Namespace method), 224 signals_available (in module ask), 223 status (ask.Response attribute), 201 S status_code (ask.Response attribute), safe_join() (in module ask), 212 201 salt (ask.sessions.SecureCookieSessionInterface stream (ask.Request attribute), 198 attribute), 204 stream_with_context() (in module ask), save_session() (ask.Flask method), 188 220 save_session() striptags() (ask.Markup method), 213 (ask.sessions.SessionInterface subdomain (ask.blueprints.BlueprintSetupState method), 204 attribute), 222 script_root (ask.Request attribute), 199 T secret_key (ask.Flask attribute), 188 SecureCookieSession (class in teardown_app_request() (ask.Blueprint ask.sessions), 204 method), 197 SecureCookieSessionInterface (class in teardown_appcontext() (ask.Flask ask.sessions), 204 method), 189 select_jinja_autoescape() (ask.Flask teardown_appcontext_funcs (ask.Flask method), 188 attribute), 189 send_le() (in module ask), 210 teardown_request() (ask.Blueprint send_from_directory() (in module ask), method), 197 211 teardown_request() (ask.Flask method), send_static_le() (ask.Blueprint 189 method), 197 teardown_request_funcs (ask.Flask atsend_static_le() (ask.Flask method), tribute), 190 188 template_context_processors (ask.Flask serializer (ask.sessions.SecureCookieSessionInterface attribute), 190 attribute), 204 template_lter() (ask.Flask method), 190 session (class in ask), 202 template_global() (ask.Flask method), 190 session_class (ask.sessions.SecureCookieSessionInterface template_rendered (in module ask), 223 attribute), 204 template_test() (ask.Flask method), 190 session_cookie_name (ask.Flask at- test_client() (ask.Flask method), 191 tribute), 188 test_client_class (ask.Flask attribute), session_interface (ask.Flask attribute), 191 test_request_context() (ask.Flask 188 session_json_serializer (in module method), 191 ask.sessions), 205 testing (ask.Flask attribute), 191 session_transaction() trap_http_exception() (ask.Flask (ask.testing.FlaskClient method), method), 192 206 289
U
unescape() (ask.Markup method), 213 update_template_context() (ask.Flask method), 192 url (ask.Request attribute), 199 url_build_error_handlers (ask.Flask attribute), 192 url_default_functions (ask.Flask attribute), 192 url_defaults (ask.blueprints.BlueprintSetupState attribute), 222 url_defaults() (ask.Blueprint method), 198 url_defaults() (ask.Flask method), 192 url_for() (in module ask), 208 url_map (ask.Flask attribute), 192 url_prex (ask.blueprints.BlueprintSetupState attribute), 222 url_root (ask.Request attribute), 199 url_rule (ask.Request attribute), 200 url_rule_class (ask.Flask attribute), 193 url_value_preprocessor() (ask.Blueprint method), 198 url_value_preprocessor() (ask.Flask method), 193 url_value_preprocessors (ask.Flask attribute), 193 use_x_sendle (ask.Flask attribute), 193
V
values (ask.Request attribute), 198 View (class in ask.views), 224 view_args (ask.Request attribute), 200 view_functions (ask.Flask attribute), 193
W
wsgi_app() (ask.Flask method), 193
Y
YOURAPPLICATION_SETTINGS, 62
290