Initial version of Python API Docs. (#7183)

diff --git a/docs/api_docs/python/README.md b/docs/api_docs/python/README.md
new file mode 100644
index 0000000..1dd0567
--- /dev/null
+++ b/docs/api_docs/python/README.md
@@ -0,0 +1,28 @@
+# Python API Docs
+
+Documentation for the Python API is built with Sphinx under this directory.
+When new versions are released, the documentation is generated and published
+to the website.
+
+## Building Docs
+
+### Install IREE binaries
+
+Either install python packages or, from the build directory:
+
+```shell
+export PYTHONPATH=$PWD/bindings/python:$PWD/compiler-api/python_package
+```
+
+### Install dependencies
+
+```shell
+python -m pip install -r requirements.txt
+```
+
+
+### Build docs
+
+```shell
+sphinx-build -b html . _build
+```