Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
mikes zhang
001
提交
e37890df
0
001
项目概览
mikes zhang
/
001
通知
6
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
0
001
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
e37890df
编写于
1月 01, 2020
作者:
D
Doug Farrell
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Updating to address CircleCi errors.
上级
0ad8d990
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
18 addition
and
7 deletion
+18
-7
python-sqlite-sqlalchemy/code/example_1/main.py
python-sqlite-sqlalchemy/code/example_1/main.py
+3
-1
python-sqlite-sqlalchemy/code/example_2/main.py
python-sqlite-sqlalchemy/code/example_2/main.py
+1
-1
python-sqlite-sqlalchemy/code/example_5/main.py
python-sqlite-sqlalchemy/code/example_5/main.py
+2
-2
python-sqlite-sqlalchemy/code/example_6/main.py
python-sqlite-sqlalchemy/code/example_6/main.py
+12
-3
未找到文件。
python-sqlite-sqlalchemy/code/example_1/main.py
浏览文件 @
e37890df
...
...
@@ -25,7 +25,9 @@ def get_temperature_data(filepath: str) -> Dict:
return
data
def
get_average_temp_by_date
(
date_string
:
str
,
temperature_data
:
Dict
)
->
float
:
def
get_average_temp_by_date
(
date_string
:
str
,
temperature_data
:
Dict
)
->
float
:
"""
This function gets the average temperature for all the samples
taken by the students by date
...
...
python-sqlite-sqlalchemy/code/example_2/main.py
浏览文件 @
e37890df
...
...
@@ -26,7 +26,7 @@ def get_average_temp_by_date(date_string, connection):
sql
=
"""
SELECT
avg(value) as average
FROM temperature_data
FROM temperature_data
WHERE date between ? and ?
"""
result
=
cursor
.
execute
(
sql
,
(
min_date
,
max_date
)).
fetchone
()
...
...
python-sqlite-sqlalchemy/code/example_5/main.py
浏览文件 @
e37890df
...
...
@@ -26,7 +26,7 @@ def get_total_number_of_books_by_publishers(connection, direction) -> List:
JOIN book_publisher bp on bp.publisher_id = p.publisher_id
JOIN book b on b.book_id = bp.book_id
GROUP BY publisher_name
ORDER BY total_books
{
direction
}
;
ORDER BY total_books
{
direction
}
;
"""
result
=
cursor
.
execute
(
sql
).
fetchall
()
return
result
...
...
@@ -49,7 +49,7 @@ def get_total_number_of_authors_by_publishers(connection, direction) -> List:
JOIN author_publisher ap on p.publisher_id = ap.publisher_id
JOIN author a on ap.author_id = a.author_id
GROUP BY publisher_name
ORDER BY total_authors
{
direction
}
;
ORDER BY total_authors
{
direction
}
;
"""
result
=
cursor
.
execute
(
sql
).
fetchall
()
return
result
...
...
python-sqlite-sqlalchemy/code/example_6/main.py
浏览文件 @
e37890df
...
...
@@ -175,20 +175,29 @@ def main():
# Connect to the database using SqlAlchemy
path
=
os
.
path
.
dirname
(
os
.
path
.
abspath
(
__file__
))
sqlite_filepath
=
os
.
path
.
join
(
path
,
"../../build_data/data/author_book_publisher.db"
)
sqlite_filepath
=
os
.
path
.
join
(
path
,
"../../build_data/data/author_book_publisher.db"
)
engine
=
create_engine
(
f
"sqlite:///
{
sqlite_filepath
}
"
)
Session
=
sessionmaker
()
Session
.
configure
(
bind
=
engine
)
session
=
Session
()
# Get the total number of books printed by each publisher
total_books_by_publisher
=
get_total_number_of_books_by_publishers
(
session
,
"desc"
)
total_books_by_publisher
=
get_total_number_of_books_by_publishers
(
session
,
"desc"
)
for
row
in
total_books_by_publisher
:
print
(
f
"Publisher:
{
row
.
name
}
, total books:
{
row
.
total_books
}
"
)
print
()
# Get the total number of authors each publisher publishes
total_authors_by_publisher
=
get_total_number_of_authors_by_publishers
(
session
,
"desc"
)
total_authors_by_publisher
=
get_total_number_of_authors_by_publishers
(
session
,
"desc"
)
for
row
in
total_authors_by_publisher
:
print
(
f
"Publisher:
{
row
.
name
}
, total authors:
{
row
.
total_authors
}
"
)
print
()
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录