# 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 %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://williambenz.gitbook.io/home/readme.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
