> For the complete documentation index, see [llms.txt](https://williambenz.gitbook.io/home/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://williambenz.gitbook.io/home/readme.md).

# Developer Platform

<h2 align="center">Coding &#x26; IT Book</h2>

<p align="center">Learn, Code, Improve &#x26; Repeat.</p>

{% columns %}
{% column width="50%" %}

### Get Started for FREE!

<mark style="color:green;">**Learning to code is not difficult with**</mark> [<mark style="color:green;">**williambenz.com**</mark>](https://williambenz.com)

**All you need is just some spare time.&#x20;**<mark style="color:red;">**Click below to get started!**</mark>

<a href="/spaces/Fvn5BzrFbMaPeKUxb0JD" class="button primary" data-icon="rocket-launch">Get started</a>&#x20;
{% endcolumn %}

{% column width="50%" %}

<pre class="language-py" data-title="python" data-overflow="wrap" data-line-numbers><code class="lang-py">from flask import Flask, render_template, request

app = Flask(__name__)
<strong>
</strong>@app.route("/", methods=['GET'])
<strong>def index():
</strong><strong>    return render_template("index.html")
</strong>
if __name__ == "__main__":
    app.run(host="127.0.0.1", port=80, debug=True)
</code></pre>

{% endcolumn %}
{% endcolumns %}
