2026年Python开发者必备的5个VSCode插件 站在 2026 年的时间节点,传统的 Python 开发工具链已经发生了翻天覆地的变化。本文为你盘点 5 款能够显著提升代码质量与开发速度的 VS Code 必装插件。 2026-02-17 技术分享 #Python #VS Code #效率工具 #开发者体验
CentOS7源码编译升级OpenSSL 1.1.1解决Python3.10报错 发挥余热的CentOS7虽然CentOS7已经停止维护了,但是还有很多服务器都在运行着这个版本,自带的 OpenSSL 版本通常停留在 1.0.2k,这个版本不仅已经停止支持,而且不支持许多现代加密算法。当你尝试安装 Python 3.10+,或者部署最新的 Nginx 时,往往会报错要求OpenSSL1.1.1 或更高版本。 所以本文将手把手教你如何通过源码编译的方式,在CentOS7上安全地升 2025-11-30 #centos #openssl
使用 FastAPI 和 yt-dlp 构建 YouTube 下载器 学习如何使用 FastAPI 和 yt-dlp 构建一个现代化的 YouTube 视频下载器 2025-06-07 Web Development > Python > FastAPI #FastAPI #Python #yt-dlp #YouTube #Web Development #API
FastAPI 中的异步编程:你需要了解的知识 掌握 FastAPI 中的异步编程:理解事件循环机制,实现非阻塞 I/O 操作,并通过实际案例提升 API 性能 2025-05-21 #FastAPI #Async #httpx #asyncio #Postgresql
JWT Authentication in FastAPI:Securing Your API Learn to implement JWT authentication in FastAPI with password hashing and token validation. 2025-05-14 #FastAPI #Async #SQLAlchemy #JWT
Advanced FastAPI: Databases, Auth, and Async Take your FastAPI skills further with database integration, secure JWT authentication, and async performance optimizations. 2025-05-13 #FastAPI #Async #SQLAlchemy #JWT
从零开始构建 FastAPI RESTful API 学习使用 FastAPI 构建 RESTful API,包括路由、Pydantic 模型和自动文档生成。 2025-05-12 #FastAPI #Python #Backend
在 CentOS 7 上安装 Python 3.10+ 的逐步指南 目标:在 CentOS 7 上安装 Python 3.10 或更高版本,同时保留系统默认的 Python 2.7 环境。 步骤 1:安装必需的依赖项12sudo yum groupinstall -y "Development Tools"sudo yum install -y openssl-devel bzip2-devel libffi-devel zlib-devel 2025-05-10 #Python #CentOS