From 6bd94efb64fa277f2c58b47d586660900f4440ae Mon Sep 17 00:00:00 2001 From: TaurusXin Date: Fri, 6 Jun 2025 01:55:48 +0800 Subject: [PATCH] update: 087 --- content/post/087.python-uv/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/post/087.python-uv/index.md b/content/post/087.python-uv/index.md index 5a924f1..80bb12b 100644 --- a/content/post/087.python-uv/index.md +++ b/content/post/087.python-uv/index.md @@ -5,7 +5,7 @@ tags: [ "python", "uv" ] draft: false slug: "python-uv" date: "2025-06-06T00:55:00+0800" -lastmod: "2023-06-06T01:53:00+0800" +lastmod: "2023-06-06T01:55:00+0800" --- ## 前言与介绍 @@ -190,10 +190,10 @@ hello-uv v0.1.0 ```python # main.py -import httpx +import requests def main(): - response = httpx.get('https://example.com') + response = requests.get('https://example.com') print(response.status_code) if __name__ == '__main__':