diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 0845ff031b00e4a35c28665c3c7e938fefe175d8..db8d409d1634811ddcc48c982fec62edc3842fbb 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -4,11 +4,7 @@
-
-
-
-
-
+
@@ -251,14 +247,7 @@
-
-
-
- 1685543714594
-
-
-
- 1685543714594
+
1685544241606
@@ -596,7 +585,14 @@
1688347105382
-
+
+ 1688438009416
+
+
+
+ 1688438009417
+
+
@@ -616,7 +612,6 @@
-
@@ -641,7 +636,8 @@
-
+
+
@@ -757,6 +753,7 @@
+
diff --git a/14_http/http_01.py b/14_http/http_01.py
new file mode 100644
index 0000000000000000000000000000000000000000..df32b8bded0f4f27290c204ae46abfe1530b0e73
--- /dev/null
+++ b/14_http/http_01.py
@@ -0,0 +1,6 @@
+# 使用urllib发送GET请求的示例代码如下:
+import urllib.request
+
+response = urllib.request.urlopen('https://www.baidu.com/')
+html = response.read()
+print(html)
diff --git a/14_http/http_02.py b/14_http/http_02.py
new file mode 100644
index 0000000000000000000000000000000000000000..1c384956c46bf4eb0874e486b282d10371b6b17c
--- /dev/null
+++ b/14_http/http_02.py
@@ -0,0 +1,5 @@
+# 使用requests发送GET请求的示例代码如下:
+import requests
+
+response = requests.get('https://www.baidu.com/')
+print(response.text)
diff --git a/14_http/http_03.py b/14_http/http_03.py
new file mode 100644
index 0000000000000000000000000000000000000000..91b99ae5758c07285eac50dc9e6ae322864edb3e
--- /dev/null
+++ b/14_http/http_03.py
@@ -0,0 +1,11 @@
+# 对于POST请求,您可以通过向请求函数传递data参数来发送数据,如下所示:
+import urllib.request
+import urllib.parse
+
+url = 'https://www.baidu.com/'
+values = {'name': 'John', 'age': 25}
+data = urllib.parse.urlencode(values)
+data = data.encode('ascii') # data应该是bytes类型
+req = urllib.request.Request(url, data)
+response = urllib.request.urlopen(req)
+print(response.read())
diff --git a/14_http/http_04.py b/14_http/http_04.py
new file mode 100644
index 0000000000000000000000000000000000000000..96cf0db7e95a14a5eed1776c96bfce98add37fe6
--- /dev/null
+++ b/14_http/http_04.py
@@ -0,0 +1,7 @@
+# 使用requests发送POST请求的示例代码如下:
+import requests
+
+url = 'https://www.baidu.com/'
+values = {'name': 'John', 'age': 25}
+response = requests.post(url, data=values)
+print(response.text)
\ No newline at end of file