<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://medjava.ro/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://medjava.ro/feed.php">
        <title>Med Java - python</title>
        <description></description>
        <link>https://medjava.ro/</link>
        <image rdf:resource="https://medjava.ro/lib/exe/fetch.php?media=wiki:dokuwiki.svg" />
       <dc:date>2026-05-17T06:57:06+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://medjava.ro/doku.php?id=python:graphviz&amp;rev=1737895579&amp;do=diff"/>
                <rdf:li rdf:resource="https://medjava.ro/doku.php?id=python:install-app-venv&amp;rev=1721914705&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://medjava.ro/lib/exe/fetch.php?media=wiki:dokuwiki.svg">
        <title>Med Java</title>
        <link>https://medjava.ro/</link>
        <url>https://medjava.ro/lib/exe/fetch.php?media=wiki:dokuwiki.svg</url>
    </image>
    <item rdf:about="https://medjava.ro/doku.php?id=python:graphviz&amp;rev=1737895579&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-01-26T12:46:19+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>graphviz</title>
        <link>https://medjava.ro/doku.php?id=python:graphviz&amp;rev=1737895579&amp;do=diff</link>
        <description>Use Graphviz to Generate Graphs

Install it from &lt;https://graphviz.org/download/&gt; and add the installation path to se PATH variable. 

Then, install the library in python:


pip install graphviz


Then, you can generate graphs, example for an deterministic automaton:


from graphviz import Digraph

# Init Digraph object.
dfa = Digraph(comment=&#039;AFD&#039;)

# Init transitions.
dfa.node(&#039;q0&#039;, &#039;q0&#039;)
dfa.node(&#039;q1&#039;, &#039;q1&#039;)
dfa.node(&#039;q2&#039;, &#039;q2&#039;, shape=&#039;doublecircle&#039;)

# Transitions
dfa.edge(&#039;q0&#039;, &#039;q0&#039;, label=…</description>
    </item>
    <item rdf:about="https://medjava.ro/doku.php?id=python:install-app-venv&amp;rev=1721914705&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-07-25T13:38:25+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>install-app-venv</title>
        <link>https://medjava.ro/doku.php?id=python:install-app-venv&amp;rev=1721914705&amp;do=diff</link>
        <description>How to install an app (aider-chat as example) in a virtual environment

Introduction

This guide demonstrates how to install an app in a Python virtual environment, using aider-chat (an AI-powered coding assistant) as an example. We&#039;ll cover the process for both Windows and Linux systems.</description>
    </item>
</rdf:RDF>
