<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Python on zy的练级成长之路</title>
    <link>https://antidebug.cn/categories/python/</link>
    <description>Recent content in Python on zy的练级成长之路</description>
    <generator>Hugo</generator>
    <language>zh-CN</language>
    <lastBuildDate>Sat, 21 Feb 2026 00:00:00 +0000</lastBuildDate>
    <atom:link href="https://antidebug.cn/categories/python/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Python Web 框架 FastAPI 快速上手</title>
      <link>https://antidebug.cn/posts/2026/02/python-web-%E6%A1%86%E6%9E%B6-fastapi-%E5%BF%AB%E9%80%9F%E4%B8%8A%E6%89%8B/</link>
      <pubDate>Sat, 21 Feb 2026 00:00:00 +0000</pubDate>
      <guid>https://antidebug.cn/posts/2026/02/python-web-%E6%A1%86%E6%9E%B6-fastapi-%E5%BF%AB%E9%80%9F%E4%B8%8A%E6%89%8B/</guid>
      <description>现代 Python API 首选框架：FastAPI 五分钟起步、Pydantic 数据校验、依赖注入、异步端点、自动文档、后台任务与部署（uvicorn/gunicorn）。</description>
    </item>
    <item>
      <title>Python 网络请求与爬虫基础</title>
      <link>https://antidebug.cn/posts/2025/02/python-%E7%BD%91%E7%BB%9C%E8%AF%B7%E6%B1%82%E4%B8%8E%E7%88%AC%E8%99%AB%E5%9F%BA%E7%A1%80/</link>
      <pubDate>Sat, 08 Feb 2025 00:00:00 +0000</pubDate>
      <guid>https://antidebug.cn/posts/2025/02/python-%E7%BD%91%E7%BB%9C%E8%AF%B7%E6%B1%82%E4%B8%8E%E7%88%AC%E8%99%AB%E5%9F%BA%E7%A1%80/</guid>
      <description>requests 与 httpx 的正确用法：会话复用、超时与重试、并发抓取、HTML 解析（BeautifulSoup/CSS选择器）、编码问题与爬虫礼仪。</description>
    </item>
    <item>
      <title>Python 装饰器与生成器</title>
      <link>https://antidebug.cn/posts/2024/10/python-%E8%A3%85%E9%A5%B0%E5%99%A8%E4%B8%8E%E7%94%9F%E6%88%90%E5%99%A8/</link>
      <pubDate>Sat, 05 Oct 2024 00:00:00 +0000</pubDate>
      <guid>https://antidebug.cn/posts/2024/10/python-%E8%A3%85%E9%A5%B0%E5%99%A8%E4%B8%8E%E7%94%9F%E6%88%90%E5%99%A8/</guid>
      <description>两个最 Pythonic 的高级特性：装饰器的层层拆解与 functools.wraps、带参数的装饰器、类装饰器；生成器与 yield、惰性求值、yield from 与协程雏形。</description>
    </item>
    <item>
      <title>Python 常用标准库盘点</title>
      <link>https://antidebug.cn/posts/2024/06/python-%E5%B8%B8%E7%94%A8%E6%A0%87%E5%87%86%E5%BA%93%E7%9B%98%E7%82%B9/</link>
      <pubDate>Sat, 15 Jun 2024 00:00:00 +0000</pubDate>
      <guid>https://antidebug.cn/posts/2024/06/python-%E5%B8%B8%E7%94%A8%E6%A0%87%E5%87%86%E5%BA%93%E7%9B%98%E7%82%B9/</guid>
      <description>不装第三方包也能打硬仗：os/sys/pathlib、collections、itertools、datetime、subprocess、argparse、json/re 等高频标准库实战用法。</description>
    </item>
    <item>
      <title>Python 异常处理与文件操作</title>
      <link>https://antidebug.cn/posts/2024/04/python-%E5%BC%82%E5%B8%B8%E5%A4%84%E7%90%86%E4%B8%8E%E6%96%87%E4%BB%B6%E6%93%8D%E4%BD%9C/</link>
      <pubDate>Sat, 20 Apr 2024 00:00:00 +0000</pubDate>
      <guid>https://antidebug.cn/posts/2024/04/python-%E5%BC%82%E5%B8%B8%E5%A4%84%E7%90%86%E4%B8%8E%E6%96%87%E4%BB%B6%E6%93%8D%E4%BD%9C/</guid>
      <description>优雅地处理错误与读写文件：异常层次结构、try/except/else/finally、自定义异常、with 上下文管理、 pathlib 与 JSON/CSV 处理。</description>
    </item>
    <item>
      <title>Python 面向对象编程基础</title>
      <link>https://antidebug.cn/posts/2024/02/python-%E9%9D%A2%E5%90%91%E5%AF%B9%E8%B1%A1%E7%BC%96%E7%A8%8B%E5%9F%BA%E7%A1%80/</link>
      <pubDate>Sat, 17 Feb 2024 00:00:00 +0000</pubDate>
      <guid>https://antidebug.cn/posts/2024/02/python-%E9%9D%A2%E5%90%91%E5%AF%B9%E8%B1%A1%E7%BC%96%E7%A8%8B%E5%9F%BA%E7%A1%80/</guid>
      <description>Python OOP 入门到够用：类与实例、属性与方法、继承与 super、魔术方法、property、dataclass 与什么时候不该用类。</description>
    </item>
    <item>
      <title>Python 函数进阶：参数、作用域与闭包</title>
      <link>https://antidebug.cn/posts/2023/10/python-%E5%87%BD%E6%95%B0%E8%BF%9B%E9%98%B6%E5%8F%82%E6%95%B0%E4%BD%9C%E7%94%A8%E5%9F%9F%E4%B8%8E%E9%97%AD%E5%8C%85/</link>
      <pubDate>Sat, 21 Oct 2023 00:00:00 +0000</pubDate>
      <guid>https://antidebug.cn/posts/2023/10/python-%E5%87%BD%E6%95%B0%E8%BF%9B%E9%98%B6%E5%8F%82%E6%95%B0%E4%BD%9C%E7%94%A8%E5%9F%9F%E4%B8%8E%E9%97%AD%E5%8C%85/</guid>
      <description>把函数这块啃透：位置/关键字/默认/可变参数、LEGB 作用域规则、闭包原理、lambda 与高阶函数 map/filter/sorted 的用法。</description>
    </item>
    <item>
      <title>Python 数据结构：列表、字典与集合</title>
      <link>https://antidebug.cn/posts/2023/08/python-%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E5%88%97%E8%A1%A8%E5%AD%97%E5%85%B8%E4%B8%8E%E9%9B%86%E5%90%88/</link>
      <pubDate>Sat, 19 Aug 2023 00:00:00 +0000</pubDate>
      <guid>https://antidebug.cn/posts/2023/08/python-%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E5%88%97%E8%A1%A8%E5%AD%97%E5%85%B8%E4%B8%8E%E9%9B%86%E5%90%88/</guid>
      <description>Python 内置数据结构精讲：list/tuple/dict/set 的增删改查、推导式、性能特性与选择指南，附实战小例子。</description>
    </item>
    <item>
      <title>Python 环境搭建与虚拟环境管理</title>
      <link>https://antidebug.cn/posts/2023/03/python-%E7%8E%AF%E5%A2%83%E6%90%AD%E5%BB%BA%E4%B8%8E%E8%99%9A%E6%8B%9F%E7%8E%AF%E5%A2%83%E7%AE%A1%E7%90%86/</link>
      <pubDate>Sat, 18 Mar 2023 00:00:00 +0000</pubDate>
      <guid>https://antidebug.cn/posts/2023/03/python-%E7%8E%AF%E5%A2%83%E6%90%AD%E5%BB%BA%E4%B8%8E%E8%99%9A%E6%8B%9F%E7%8E%AF%E5%A2%83%E7%AE%A1%E7%90%86/</guid>
      <description>从零搭建 Python 开发环境：多版本共存、venv 虚拟环境、pip 换国内源，以及 requirements.txt 的正确用法。</description>
    </item>
  </channel>
</rss>
