> ## Documentation Index
> Fetch the complete documentation index at: https://developer.upsun.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Python

> All you need to know about configuring a new Python project with Upsun

export const CommunityButtons = () => <div style={{
  display: 'flex',
  flexWrap: 'wrap',
  justifyContent: 'center',
  gap: '1rem',
  marginTop: '2rem'
}}>
    <a href="https://community.upsun.com/" target="_blank" rel="noopener" className="community-forum-btn">
      Join the Community Forum
    </a>
  </div>;

When dealing with Python stacks, the information below may help customize your configuration.
These sections provide Python-specific configuration details, but you can also refer to the common Upsun documentation:

* [Configuring applications](/docs/configure-apps)
* [Setting up managed services](/docs/add-services)
* [Handling requests](/docs/routes)

## Managing dependencies

Pip comes pre-installed in all `python` runtime containers.
With it, you can add `pip install` to your build hook and be well on your way to building your apps.

Alternatively, you can [use a different package manager](/docs/languages/python/dependencies), such as Poetry or Pipvenv.

## Configuring web servers

Upsun doesn't enforce an assumption of what Python web server package you are using to serve your applications.
You can use any server on Upsun by modifying the `web.commands.start` property of your application configuration.
For more information, see how to [configure web servers](/docs/languages/python/server).

## Frameworks

The Upsun documentation includes a wide array of community resources to help with framework-specific configuration:

* [Django](/docs/get-started/stacks/django)
* [Flask](/docs/get-started/stacks/flask)

## Get support

While there are virtually no restrictions to you deploying any kind of application on Upsun, configuration may still be unclear at this point.

Not to worry! The Upsun community is here to help.
Come and say hello, share your work, ask for help, and peek in on what others are working on.

Welcome to the Upsun community!

<CommunityButtons />
