Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
LearnPython/python_restful_api.py at master · Arekes/LearnPython · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Arekes
/
LearnPython
Public
forked from
xianhu/LearnPython
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Files
Expand file tree
master
Breadcrumbs
LearnPython
/
python_restful_api.py
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
185 lines (143 loc) · 5.8 KB
master
Breadcrumbs
LearnPython
/
python_restful_api.py
Copy path
Top
File metadata and controls
Code
Blame
185 lines (143 loc) · 5.8 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
# _*_ coding: utf-8 _*_
"""
python_restful_api.py by xianhu
"""
import
sqlalchemy
import
sqlalchemy
.
orm
import
sqlalchemy
.
ext
.
declarative
from
flask
import
Flask
,
g
from
flask_restful
import
reqparse
,
Api
,
Resource
from
flask_httpauth
import
HTTPTokenAuth
# Flask相关变量声明
app
=
Flask
(
__name__
)
api
=
Api
(
app
)
# 认证相关
auth
=
HTTPTokenAuth
(
scheme
=
"token"
)
TOKENS
=
{
"fejiasdfhu"
,
"fejiuufjeh"
}
@
auth
.
verify_token
def
verify_token
(
token
):
if
token
in
TOKENS
:
g
.
current_user
=
token
return
True
return
False
# 数据库相关变量声明
engine
=
sqlalchemy
.
create_engine
(
"mysql+pymysql://username:password@ip/db_name"
,
encoding
=
"utf8"
,
echo
=
False
)
BaseModel
=
sqlalchemy
.
ext
.
declarative
.
declarative_base
()
# 构建数据模型User
class
User
(
BaseModel
):
__tablename__
=
"Users"
__table_args__
=
{
"mysql_engine"
:
"InnoDB"
,
"mysql_charset"
:
"utf8"
,
}
# 表结构,具体更多的数据类型自行百度
id
=
sqlalchemy
.
Column
(
"id"
,
sqlalchemy
.
Integer
,
primary_key
=
True
,
autoincrement
=
True
)
name
=
sqlalchemy
.
Column
(
"name"
,
sqlalchemy
.
String
(
50
),
nullable
=
False
)
age
=
sqlalchemy
.
Column
(
"age"
,
sqlalchemy
.
Integer
,
nullable
=
False
)
# 构建数据模型的json格式
def
get_json
(
user
):
return
{
"id"
:
user
.
id
,
"name"
:
user
.
name
,
"age"
:
user
.
age
}
# 利用Session对象连接数据库
DBSessinon
=
sqlalchemy
.
orm
.
sessionmaker
(
bind
=
engine
)
session
=
DBSessinon
()
BaseModel
.
metadata
.
drop_all
(
engine
)
BaseModel
.
metadata
.
create_all
(
engine
)
# RESTfulAPI的参数解析 -- put / post参数解析
parser_put
=
reqparse
.
RequestParser
()
parser_put
.
add_argument
(
"name"
,
type
=
str
,
required
=
True
,
help
=
"need name data"
)
parser_put
.
add_argument
(
"age"
,
type
=
int
,
required
=
True
,
help
=
"need age data"
)
# RESTfulAPI的参数解析 -- get参数解析
parser_get
=
reqparse
.
RequestParser
()
parser_get
.
add_argument
(
"limit"
,
type
=
int
,
required
=
False
)
parser_get
.
add_argument
(
"offset"
,
type
=
int
,
required
=
False
)
parser_get
.
add_argument
(
"sortby"
,
type
=
str
,
required
=
False
)
# 操作(put / get / delete)单一资源
class
Todo
(
Resource
):
# 添加认证
decorators
=
[
auth
.
login_required
]
def
put
(
self
,
user_id
):
"""
更新用户数据: curl http://127.0.0.1:5000/users/1 -X PUT -d "name=Allen&age=20" -H "Authorization: token fejiasdfhu"
"""
args
=
parser_put
.
parse_args
()
user_ids_set
=
set
([
user
.
id
for
user
in
session
.
query
(
User
.
id
)])
print
(
user_ids_set
)
# 用户不存在,返回404
if
user_id
not
in
user_ids_set
:
return
None
,
404
# 更新用户数据
user
=
session
.
query
(
User
).
filter
(
User
.
id
==
user_id
)[
0
]
user
.
name
=
args
[
"name"
]
user
.
age
=
args
[
"age"
]
session
.
merge
(
user
)
session
.
commit
()
# 更新成功,返回201
return
get_json
(
user
),
201
def
get
(
self
,
user_id
):
"""
获取用户数据: curl http://127.0.0.1:5000/users/1 -X GET -H "Authorization: token fejiasdfhu"
"""
users
=
session
.
query
(
User
).
filter
(
User
.
id
==
user_id
)
# 用户不存在,返回404
if
users
.
count
()
==
0
:
return
None
,
404
# 返回用户数据
return
get_json
(
users
[
0
]),
200
def
delete
(
self
,
user_id
):
"""
删除用户数据: curl http://127.0.0.1:5000/users/1 -X DELETE -H "Authorization: token fejiasdfhu"
"""
session
.
query
(
User
).
filter
(
User
.
id
==
user_id
).
delete
()
return
None
,
204
# 操作(post / get)资源列表
class
TodoList
(
Resource
):
# 添加认证
decorators
=
[
auth
.
login_required
]
def
get
(
self
):
"""
获取全部用户数据: curl http://127.0.0.1:5000/users -X GET -d "limit=2&offset=0&sortby=name" -H "Authorization: token fejiasdfhu"
"""
args
=
parser_get
.
parse_args
()
users
=
session
.
query
(
User
)
# 根据条件查询
if
"sortby"
in
args
:
users
=
users
.
order_by
(
User
.
name
if
args
[
"sortby"
]
==
"name"
else
User
.
age
)
if
"offset"
in
args
:
users
=
users
.
offset
(
args
[
"offset"
])
if
"limit"
in
args
:
users
=
users
.
limit
(
args
[
"limit"
])
# 返回结果
return
[
get_json
(
user
)
for
user
in
users
],
200
def
post
(
self
):
"""
添加一个新用户: curl http://127.0.0.1:5000/users -X POST -d "name=Brown&age=20" -H "Authorization: token fejiasdfhu"
"""
args
=
parser_put
.
parse_args
()
# 构建新用户
user
=
User
(
name
=
args
[
"name"
],
age
=
args
[
"age"
])
session
.
add
(
user
)
session
.
commit
()
# 资源添加成功,返回201
return
get_json
(
user
),
201
# 设置路由
api
.
add_resource
(
TodoList
,
"/users"
)
api
.
add_resource
(
Todo
,
"/users/<int:user_id>"
)
if
__name__
==
"__main__"
:
app
.
run
(
debug
=
True
)
""" 常见返回代码
200 OK - [GET]:服务器成功返回用户请求的数据
201 CREATED - [POST/PUT/PATCH]:用户新建或修改数据成功
202 Accepted - [*]:表示一个请求已经进入后台排队(异步任务)
204 NO CONTENT - [DELETE]:用户删除数据成功
400 INVALID REQUEST - [POST/PUT/PATCH]:用户发出的请求有错误,服务器没有进行新建或修改数据的操作
401 Unauthorized - [*]:表示用户没有权限(令牌、用户名、密码错误)
403 Forbidden - [*] 表示用户得到授权(与401错误相对),但是访问是被禁止的
404 NOT FOUND - [*]:用户发出的请求针对的是不存在的记录,服务器没有进行操作
406 Not Acceptable - [GET]:用户请求的格式不可得
410 Gone -[GET]:用户请求的资源被永久删除,且不会再得到的
422 Unprocesable entity - [POST/PUT/PATCH] 当创建一个对象时,发生一个验证错误
500 INTERNAL SERVER ERROR - [*]:服务器发生错误,用户将无法判断发出的请求是否成功
"""
You can’t perform that action at this time.