DEV Community

Cover image for Setting up Fast API in IIS and run APIs in Python
Juan Stoppa
Juan Stoppa

Posted on • Originally published at jstoppa.com

6 1

Setting up Fast API in IIS and run APIs in Python

Many clients I meet struggle to implement AI within their corporate infrastructure. They often become frustrated because their companies are mostly on-premises and use Windows, while the AI industry largely operates in the cloud. Although they can call APIs like ChatGPT and Azure OpenAI, they face problems when attempting to integrate more advanced AI features into solutions primarily written in Java and .NET.

This is where I see Python playing a crucial role. The AI industry predominantly uses it to develop solutions, making it easier to get up to speed with any AI example. The real question is whether you can integrate Python into your existing tech stack if it's already based on Windows.

This article will show you how to setup an API written in Python using an amazing framework called FastAPI. This article is an introduction on how to use the framework, I blog later on more advanced use cases.

Setting up the app example in IIS

Follow the steps below to start with

NOTE: you'll need to have Python and PIP installed for this, follow these steps if you haven't installed it already

  1. Create the website in IIS as shown in the image, note I'm using the port 8080
    Image example for GPT-Vision

  2. Copy the code example below into a main.py code (the example was taken from the Fast API website)

from typing import Union
from fastapi import FastAPI

app = FastAPI()

@app.get("/")
def read_root():
    return {"Hello": "World"}

@app.get("/items/{item_id}")
def read_item(item_id: int, q: Union[str, None] = None):
    return {"item_id": item_id, "q": q}
Enter fullscreen mode Exit fullscreen mode
  1. Install Fast API using the pip command pip install fastapi Install FastAPI using PIP

Configuring the HttpPlatformHandler

The next step is to get the HttpPlatformHandler working in IIS, this is a handler that passes socket connections directly to the Python process (more info here).

  1. Create a web.config file inside the website folder with the following content, make sure you change the folder to point at the location where python is installed in your local machine
<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <system.webServer>
        <handlers accessPolicy="Read, Execute, Script">
            <add name="FastAPIHttpPlatformHandler" path="*" verb="*" modules="httpPlatformHandler"
                resourceType="Unspecified" />
        </handlers>
        <httpPlatform processPath="C:\Users\<username>\AppData\Local\Programs\Python\Python312\python.exe"
            arguments="-m uvicorn --port %HTTP_PLATFORM_PORT% main:app"
            stdoutLogEnabled="true" stdoutLogFile="C:\logs\python.log" startupTimeLimit="120" requestTimeout="00:05:00">
        </httpPlatform>
        <httpErrors errorMode="Detailed" />
    </system.webServer>
</configuration>
Enter fullscreen mode Exit fullscreen mode
  1. Navigate to the http://localhost:8080/ which should load the API already

Load Fast API locally

Fast API also comes with swagger already installed, you can simply navigate to http://localhost:8080/docs

Load Fast API swagger

Other considerations

You might find some recommendations to use hypercorn rather than uvicorn, I tried that initially but I couldn't resolve an issue with socket permission, I raised it as a bug in their GitHub repo.

You might also find issues where the API loads and hangs forever. In that case, you'll most likely need to grant IIS_IUSRS read access to the folder where the app and Python are located, as mentioned in here.

Do your career a favor. Join DEV. (The website you're on right now)

It takes one minute and it's free.

Get started

Top comments (0)

AWS Security LIVE!

Tune in for AWS Security LIVE!

Join AWS Security LIVE! for expert insights and actionable tips to protect your organization and keep security teams prepared.

Learn More

👋 Kindness is contagious

Explore a sea of insights with this enlightening post, highly esteemed within the nurturing DEV Community. Coders of all stripes are invited to participate and contribute to our shared knowledge.

Expressing gratitude with a simple "thank you" can make a big impact. Leave your thanks in the comments!

On DEV, exchanging ideas smooths our way and strengthens our community bonds. Found this useful? A quick note of thanks to the author can mean a lot.

Okay