<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Examples on Omniac Business</title>
    <link>https://docs.api.omniac.de/categories/examples/</link>
    <description>Recent content in Examples 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/examples/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Getting Started</title>
      <link>https://docs.api.omniac.de/docs/getting-started/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://docs.api.omniac.de/docs/getting-started/</guid>
      <description>&lt;p&gt;This section outlines the steps to get started with omniac Business, including how to start the monitoring of a user, how to query a users alerts and how to query a users data.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Example Golang</title>
      <link>https://docs.api.omniac.de/docs/examples/golang/</link>
      <pubDate>Thu, 05 Jan 2017 00:00:00 +0000</pubDate>
      <guid>https://docs.api.omniac.de/docs/examples/golang/</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;Go (Golang) is a statically typed, compiled programming language developed by Google, known for its simplicity, efficiency, and excellent concurrency support, making it ideal for building scalable web services, APIs, and microservices. To manage project dependencies in Go, you use &lt;strong&gt;Go modules&lt;/strong&gt;. You can initialize a new Go module in your project directory by running the terminal command &lt;code&gt;go mod init &amp;lt;module-name&amp;gt;&lt;/code&gt;, where &lt;code&gt;&amp;lt;module-name&amp;gt;&lt;/code&gt; is typically your repository URL (e.g., &lt;code&gt;github.com/username/project&lt;/code&gt;). This creates a &lt;code&gt;go.mod&lt;/code&gt; file that tracks your dependencies. When you import packages and run &lt;code&gt;go mod tidy&lt;/code&gt;, Go automatically downloads and manages the required dependencies. Go&amp;rsquo;s module system ensures reproducible builds and proper version management. You can build your project with &lt;code&gt;go build&lt;/code&gt; and run it directly with &lt;code&gt;go run main.go&lt;/code&gt;. This approach keeps your projects organized and ensures consistent dependency management across different environments.&lt;/p&gt;</description>
    </item>
    <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>
    <item>
      <title>Example Java</title>
      <link>https://docs.api.omniac.de/docs/examples/java/</link>
      <pubDate>Thu, 05 Jan 2017 00:00:00 +0000</pubDate>
      <guid>https://docs.api.omniac.de/docs/examples/java/</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;Java is a robust, object-oriented programming language known for its platform independence and strong type system, making it ideal for enterprise applications, web services, and large-scale systems. To manage project dependencies and build processes effectively, it&amp;rsquo;s best practice to use a &lt;strong&gt;build tool&lt;/strong&gt; like Maven or Gradle. For this guide, we&amp;rsquo;ll use Maven. You can create a new Maven project by running &lt;code&gt;mvn archetype:generate -DgroupId=com.example.omniac -DartifactId=omniac-client -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false&lt;/code&gt; in your terminal. This creates a standard project structure with a &lt;code&gt;pom.xml&lt;/code&gt; file for dependency management. Navigate to your project directory with &lt;code&gt;cd omniac-client&lt;/code&gt;. The Maven structure keeps your source code in &lt;code&gt;src/main/java&lt;/code&gt; and tests in &lt;code&gt;src/test/java&lt;/code&gt;, providing a clean and organized development environment that&amp;rsquo;s easily understood by IDEs and other developers.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Examples</title>
      <link>https://docs.api.omniac.de/docs/examples/</link>
      <pubDate>Thu, 05 Jan 2017 00:00:00 +0000</pubDate>
      <guid>https://docs.api.omniac.de/docs/examples/</guid>
      <description>&lt;p&gt;Within this section you will find some example implementations. We provide examples for the usage of our api and also how to implement the data handling like hashing and encryption.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
