Moved to a proper Git repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Remixed from: http://www.dabeaz.com/coroutines/cosax.py | |
# Don't shy away from reading http://www.dabeaz.com/coroutines/ if the stuff below | |
# seems super weird. | |
from xml.sax import ContentHandler, parse | |
from collections import namedtuple | |
ElementStart = namedtuple('ElementStart', 'name attrs') | |
ElementEnd = namedtuple('ElementEnd', 'name') |
Let's say you are creating a RESTful web service that typically sees JSON requests and responds with JSON back. When things go wrong, default errors that Flask/Werkzeug respond with are all HTML. Which breaks the clients who expect JSON back even in case of errors.
Here's an approach to mitigate this. All errors that Werkzeug may throw are now intercepted and converted
into JSON response. You can customize what goes into the response by tweaking the line with response = jsonify(...)
.
Also note that make_json_error
will be used when your code throws an arbitrary exception (e.g. division by zero)
not derived from HTTPException
.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; There's something similar (but fancier) in vc-git.el: vc-git-grep | |
;; -I means don't search through binary files | |
(defcustom git-grep-switches "--extended-regexp -I -n --ignore-case" | |
"Switches to pass to `git grep'." | |
:type 'string) | |
(defcustom git-grep-default-work-tree (expand-file-name "~/Documents/src/kits") | |
"Top of your favorite git working tree. \\[git-grep] will search from here if it cannot figure out where else to look." | |
:type 'directory | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import paste.httpserver | |
form = """\ | |
<html> | |
<body> | |
<form method="post" enctype="multipart/form-data" action="/"> | |
<input type="file" name="photopicker" /> | |
<input type="submit" /> |
NewerOlder