File tree 9 files changed +23
-6
lines changed
9 files changed +23
-6
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ response is sent.
37
37
:caption: `` flaskr/ db.py``
38
38
39
39
import sqlite3
40
+ from datetime import datetime
40
41
41
42
import click
42
43
from flask import current_app, g
@@ -132,6 +133,11 @@ Add the Python functions that will run these SQL commands to the
132
133
init_db()
133
134
click.echo(' Initialized the database.' )
134
135
136
+
137
+ sqlite3.register_converter(
138
+ " timestamp" , lambda v : datetime.fromisoformat(v.decode())
139
+ )
140
+
135
141
:meth: `open_resource() <Flask.open_resource> ` opens a file relative to
136
142
the ``flaskr `` package, which is useful since you won't necessarily know
137
143
where that location is when deploying the application later. ``get_db ``
@@ -142,6 +148,10 @@ read from the file.
142
148
that calls the ``init_db `` function and shows a success message to the
143
149
user. You can read :doc: `/cli ` to learn more about writing commands.
144
150
151
+ The call to :func: `sqlite3.register_converter ` tells Python how to
152
+ interpret timestamp values in the database. We convert the value to a
153
+ :class: `datetime.datetime `.
154
+
145
155
146
156
Register with the Application
147
157
-----------------------------
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ name = "flask-example-celery"
3
3
version = " 1.0.0"
4
4
description = " Example Flask application with Celery background tasks."
5
5
readme = " README.md"
6
- requires-python = " >=3.8 "
7
- dependencies = [" flask>=2.2.2 " , " celery[redis]>=5.2.7 " ]
6
+ classifiers = [ " Private :: Do Not Upload " ]
7
+ dependencies = [" flask" , " celery[redis]" ]
8
8
9
9
[build-system ]
10
10
requires = [" flit_core<4" ]
File renamed without changes.
Original file line number Diff line number Diff line change @@ -3,8 +3,9 @@ name = "js_example"
3
3
version = " 1.1.0"
4
4
description = " Demonstrates making AJAX requests to Flask."
5
5
readme = " README.rst"
6
- license = {file = " LICENSE.rst " }
6
+ license = {file = " LICENSE.txt " }
7
7
maintainers = [{
name =
" Pallets" ,
email =
" [email protected] " }]
8
+ classifiers = [" Private :: Do Not Upload" ]
8
9
dependencies = [" flask" ]
9
10
10
11
[project .urls ]
Original file line number Diff line number Diff line change 5
5
@pytest .mark .parametrize (
6
6
("path" , "template_name" ),
7
7
(
8
- ("/" , "xhr .html" ),
8
+ ("/" , "fetch .html" ),
9
9
("/plain" , "xhr.html" ),
10
10
("/fetch" , "fetch.html" ),
11
11
("/jquery" , "jquery.html" ),
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
import sqlite3
2
+ from datetime import datetime
2
3
3
4
import click
4
5
from flask import current_app
@@ -44,6 +45,9 @@ def init_db_command():
44
45
click .echo ("Initialized the database." )
45
46
46
47
48
+ sqlite3 .register_converter ("timestamp" , lambda v : datetime .fromisoformat (v .decode ()))
49
+
50
+
47
51
def init_app (app ):
48
52
"""Register database functions with the Flask app. This is called by
49
53
the application factory.
Original file line number Diff line number Diff line change @@ -3,8 +3,9 @@ name = "flaskr"
3
3
version = " 1.0.0"
4
4
description = " The basic blog app built in the Flask tutorial."
5
5
readme = " README.rst"
6
- license = {text = " BSD-3-Clause " }
6
+ license = {file = " LICENSE.txt " }
7
7
maintainers = [{
name =
" Pallets" ,
email =
" [email protected] " }]
8
+ classifiers = [" Private :: Do Not Upload" ]
8
9
dependencies = [
9
10
" flask" ,
10
11
]
Original file line number Diff line number Diff line change @@ -547,7 +547,8 @@ def download_file(name):
547
547
raises a 404 :exc:`~werkzeug.exceptions.NotFound` error.
548
548
549
549
:param directory: The directory that ``path`` must be located under,
550
- relative to the current application's root path.
550
+ relative to the current application's root path. This *must not*
551
+ be a value provided by the client, otherwise it becomes insecure.
551
552
:param path: The path to the file to send, relative to
552
553
``directory``.
553
554
:param kwargs: Arguments to pass to :func:`send_file`.
You can’t perform that action at this time.
0 commit comments