<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Python on Omniac Business</title>
    <link>https://docs.api.omniac.de/categories/python/</link>
    <description>Recent content in Python on Omniac Business</description>
    <generator>Hugo</generator>
    <language>en</language>
    <lastBuildDate>Fri, 27 Feb 2026 10:58:50 +0000</lastBuildDate>
    <atom:link href="https://docs.api.omniac.de/categories/python/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Example Python</title>
      <link>https://docs.api.omniac.de/docs/examples/python/</link>
      <pubDate>Thu, 05 Jan 2017 00:00:00 +0000</pubDate>
      <guid>https://docs.api.omniac.de/docs/examples/python/</guid>
      <description>&lt;h2 id=&#34;introduction-and-project-setup&#34;&gt;Introduction and project setup&lt;a class=&#34;td-heading-self-link&#34; href=&#34;#introduction-and-project-setup&#34; aria-label=&#34;Heading self-link&#34;&gt;&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;Python is a versatile, high-level programming language praised for its readability and extensive libraries, making it ideal for web development, data analysis, and automation. To manage project-specific dependencies and avoid conflicts, it&amp;rsquo;s best practice to use a &lt;strong&gt;virtual environment&lt;/strong&gt;. You can create one in your project directory by running the terminal command &lt;code&gt;python -m venv .venv&lt;/code&gt;, where &lt;code&gt;.venv&lt;/code&gt; is the name of your environment folder. Once created, you must &lt;strong&gt;activate&lt;/strong&gt; it. On Windows, use &lt;code&gt;.venv\Scripts\activate&lt;/code&gt;, and on macOS or Linux, use &lt;code&gt;source .venv/bin/activate&lt;/code&gt;. After activation, your command prompt will change to show the environment&amp;rsquo;s name, and any packages you install with &lt;code&gt;pip&lt;/code&gt; will be isolated to that specific project. When you&amp;rsquo;re finished, simply type &lt;code&gt;deactivate&lt;/code&gt; to return to your global Python context. This process keeps your projects tidy and reproducible.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
