<?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 KimchiBot</title>
    <link>https://kimchibot.com/tags/python/</link>
    <description>Recent content in Python on KimchiBot</description>
    <generator>Hugo</generator>
    <language>en-us</language>
    <lastBuildDate>Wed, 08 Apr 2026 00:00:00 +0000</lastBuildDate>
    <atom:link href="https://kimchibot.com/tags/python/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>How to Build a Crypto Trading Bot with Python: Step-by-Step Guide</title>
      <link>https://kimchibot.com/posts/how-to-build-a-crypto-trading-bot-with-python-step-by-step/</link>
      <pubDate>Wed, 08 Apr 2026 00:00:00 +0000</pubDate>
      <guid>https://kimchibot.com/posts/how-to-build-a-crypto-trading-bot-with-python-step-by-step/</guid>
      <description>A complete beginner&amp;rsquo;s guide to building a crypto trading bot with Python and ccxt. From zero to a working bot on Binance Futures.</description>
    </item>
    <item>
      <title>ccxt &#43; Binance Futures: The Complete Python Guide</title>
      <link>https://kimchibot.com/posts/ccxt-binance-futures-complete-guide/</link>
      <pubDate>Tue, 07 Apr 2026 12:00:00 +0000</pubDate>
      <guid>https://kimchibot.com/posts/ccxt-binance-futures-complete-guide/</guid>
      <description>Everything you need to know about using ccxt with Binance Futures in Python. Connection, orders, positions, stop losses, and all the gotchas.</description>
    </item>
    <item>
      <title>I Tortured Claude Code Into Building Me a Trading Bot — Here&#39;s What Happened</title>
      <link>https://kimchibot.com/posts/i-tortured-claude-code-into-building-me-a-trading-bot/</link>
      <pubDate>Tue, 07 Apr 2026 00:00:00 +0000</pubDate>
      <guid>https://kimchibot.com/posts/i-tortured-claude-code-into-building-me-a-trading-bot/</guid>
      <description>A developer from Korea built 6 crypto trading bots using Claude Code. 4 failed. Here&amp;rsquo;s the honest story — and a guide so you can build one too.</description>
    </item>
    <item>
      <title>Python Trading Bot Architecture: How to Structure Your Code</title>
      <link>https://kimchibot.com/posts/python-trading-bot-architecture-for-beginners/</link>
      <pubDate>Sun, 05 Apr 2026 12:00:00 +0000</pubDate>
      <guid>https://kimchibot.com/posts/python-trading-bot-architecture-for-beginners/</guid>
      <description>Most trading bot tutorials show you the strategy but not the structure. Here&amp;rsquo;s how to organize a production-ready trading bot in Python.</description>
    </item>
    <item>
      <title>Building a Trend Following Bot That Actually Works</title>
      <link>https://kimchibot.com/posts/building-a-trend-following-bot-that-actually-works/</link>
      <pubDate>Fri, 03 Apr 2026 00:00:00 +0000</pubDate>
      <guid>https://kimchibot.com/posts/building-a-trend-following-bot-that-actually-works/</guid>
      <description>After killing 4 bots, I built one that survived backtesting, dry runs, and live trading. Here&amp;rsquo;s the full breakdown.</description>
    </item>
    <item>
      <title>WebSocket vs REST API: I Deleted 150 Lines and Nothing Broke</title>
      <link>https://kimchibot.com/posts/websocket-vs-rest-api-i-deleted-150-lines/</link>
      <pubDate>Tue, 31 Mar 2026 00:00:00 +0000</pubDate>
      <guid>https://kimchibot.com/posts/websocket-vs-rest-api-i-deleted-150-lines/</guid>
      <description>I spent weeks building a WebSocket price feed. Then I realized I didn&amp;rsquo;t need it at all.</description>
    </item>
    <item>
      <title>The Timezone Bug That Cost Me 9 Hours of Trades</title>
      <link>https://kimchibot.com/posts/the-timezone-bug-that-cost-me-9-hours-of-trades/</link>
      <pubDate>Sun, 29 Mar 2026 00:00:00 +0000</pubDate>
      <guid>https://kimchibot.com/posts/the-timezone-bug-that-cost-me-9-hours-of-trades/</guid>
      <description>My bot was missing every trade for the first 9 hours of each day. The cause? Mixing UTC and KST in one line of code.</description>
    </item>
    <item>
      <title>How to Use Claude Code to Build a Trading Bot (Honestly)</title>
      <link>https://kimchibot.com/posts/how-to-use-claude-code-to-build-a-trading-bot/</link>
      <pubDate>Sat, 28 Mar 2026 00:00:00 +0000</pubDate>
      <guid>https://kimchibot.com/posts/how-to-use-claude-code-to-build-a-trading-bot/</guid>
      <description>A practical guide to building trading bots with AI. What Claude Code is great at, what it&amp;rsquo;s terrible at, and how to get the best results.</description>
    </item>
    <item>
      <title>Binance API Gotchas That Will Waste Your Weekend</title>
      <link>https://kimchibot.com/posts/binance-api-gotchas-that-will-waste-your-weekend/</link>
      <pubDate>Thu, 26 Mar 2026 00:00:00 +0000</pubDate>
      <guid>https://kimchibot.com/posts/binance-api-gotchas-that-will-waste-your-weekend/</guid>
      <description>A collection of Binance Futures API quirks that aren&amp;rsquo;t in the documentation. Each one cost me hours.</description>
    </item>
    <item>
      <title>The 3 AM Bug: PID Lockfiles and Duplicate Processes</title>
      <link>https://kimchibot.com/posts/the-3am-bug-pid-lockfiles-and-duplicate-processes/</link>
      <pubDate>Tue, 24 Mar 2026 00:00:00 +0000</pubDate>
      <guid>https://kimchibot.com/posts/the-3am-bug-pid-lockfiles-and-duplicate-processes/</guid>
      <description>My bot was running twice. Two instances, same account, doubling every order. Here&amp;rsquo;s how PID lockfiles saved me.</description>
    </item>
    <item>
      <title>What Happens When Your Bot Crashes at 3 AM</title>
      <link>https://kimchibot.com/posts/what-happens-when-your-bot-crashes-at-3am/</link>
      <pubDate>Sun, 22 Mar 2026 00:00:00 +0000</pubDate>
      <guid>https://kimchibot.com/posts/what-happens-when-your-bot-crashes-at-3am/</guid>
      <description>Your bot will crash. At night. On a weekend. With open positions. Here&amp;rsquo;s how to make sure it recovers gracefully.</description>
    </item>
  </channel>
</rss>
