diff --git a/fern/products/sdks/overview/python/assets/new-api-token.png b/fern/products/sdks/overview/python/assets/new-api-token.png
new file mode 100644
index 000000000..6512454a7
Binary files /dev/null and b/fern/products/sdks/overview/python/assets/new-api-token.png differ
diff --git a/fern/products/sdks/overview/python/assets/pypi-package.png b/fern/products/sdks/overview/python/assets/pypi-package.png
new file mode 100644
index 000000000..c33869a01
Binary files /dev/null and b/fern/products/sdks/overview/python/assets/pypi-package.png differ
diff --git a/fern/products/sdks/overview/python/publishing-to-pypi.mdx b/fern/products/sdks/overview/python/publishing-to-pypi.mdx
index 6347cdb8d..2b897669e 100644
--- a/fern/products/sdks/overview/python/publishing-to-pypi.mdx
+++ b/fern/products/sdks/overview/python/publishing-to-pypi.mdx
@@ -1,8 +1,212 @@
---
-title: Publishing to PyPi
-description: How to publish the Fern Python SDK to PyPi.
+title: Publishing to PyPI
+description: How to publish the Fern Python SDK to PyPI.
---
-Learn how to publish your Fern Python SDK to the PyPi registry.
+Publish your public-facing Fern Python SDK to the [PyPI
+registry](https://pypi.org/). After following the steps on this page,
+you'll have a versioned package published on PyPI.
-This page is a WIP, please refer to our previous [documentation](https://buildwithfern.com/learn/sdks/guides/publish-a-public-facing-sdk).
\ No newline at end of file
+
+
+
+
+This guide assumes that you already have an initialized `fern` folder on your local machine. If you don’t, run `fern init`. See [Python Quickstart](quickstart.mdx) for more details.
+
+## Set up your GitHub integration
+
+ 1. Create a new GitHub repository called `company-python` (or something similar) for your SDK, if you haven't done so already.
+ 1. Install the [Fern GitHub App](https://github.com/apps/fern-api): Select **Configure**, then scroll down to **Repository Access**. Select **Only select repositories** and in the dropdown select the repository for your SDK. Click **Save**.
+
+
+## Configure `generators.yml`
+
+
+
+
+
+ Navigate to your `generators.yml` on your local machine. Your `generators.yml` lives inside of your `fern` folder and contains all the configuration for your Fern generators.
+
+ Add a new generator to `generators.yml`:
+
+
+ ```bash
+ fern add fern-python-sdk --group python-sdk
+ ```
+
+ Once the command completes, you'll see a new group created in your `generators.yml`:
+
+ ```yaml {3-9}
+ groups:
+ ...
+ python-sdk:
+ generators:
+ - name: fernapi/fern-python-sdk
+ version:
+ output:
+ location: local-file-system
+ path: ../sdks/python
+ ```
+
+
+
+
+
+ Next, change the output location in `generators.yml` from `local-file-system` (the default) to `pypi` to indicate that Fern should publish your package directly to the PyPI registry:
+
+ ```yaml title="Python" {6-7}
+ groups:
+ python-sdk:
+ generators:
+ - name: fernapi/fern-python-sdk
+ version:
+ output:
+ location: pypi
+
+ ```
+
+
+
+
+ Your package name must be unique in the PyPI repository, otherwise publishing your SDK to PyPI will fail. Update your package name if you haven't done so already:
+
+
+```yaml title="Python" {8}
+groups:
+ python-sdk:
+ generators:
+ - name: fernapi/fern-python-sdk
+ version:
+ output:
+ location: pypi
+ package-name: your-package-name
+```
+
+
+
+
+
+ The `client-class-name` option controls the name of the generated client. This is the name customers use to import your SDK (`import { your-client-name } from 'your-package-name';`).
+
+
+```yaml title="Python" {9-10}
+groups:
+ python-sdk:
+ generators:
+ - name: fernapi/fern-python-sdk
+ version:
+ output:
+ location: pypi
+ package-name: your-package-name
+ config:
+ client_class_name: YourClientName # must be PascalCase
+```
+
+
+
+
+
+ Add the path to your GitHub repository to `generators.yml`:
+
+```yaml title="Python" {11-12}
+groups:
+ python-sdk:
+ generators:
+ - name: fernapi/fern-python-sdk
+ version:
+ output:
+ location: pypi
+ package-name: your-package-name
+ config:
+ client_class_name: YourClientName
+ github:
+ repository: your-org/company-python
+```
+
+
+
+
+## Set up PyPi publishing authentication
+
+
+
+
+
+ Log into [PyPi](https://pypi.org/) or create a new account.
+
+
+
+
+
+ 1. Click on your profile picture.
+ 1. Select **Account settings**.
+ 1. Scroll down to **API Tokens**.
+
+
+
+
+
+ 1. Click on **Add API Token**
+ 1. Name your token and set the scope to the relevant projects.
+ 1. Click **Create token**
+
+
+
+
+
+ Save your new token – it won’t be displayed after you leave the page.
+
+
+
+
+
+ Add `token: ${PYPI_TOKEN}` to `generators.yml` to tell Fern to use the `PYPI_TOKEN` environment variable for authentication when publishing to the PyPI registry.
+
+```yaml title="Python" {9}
+groups:
+ python-sdk:
+ generators:
+ - name: fernapi/fern-python-sdk
+ version:
+ output:
+ location: pypi
+ package-name: your-package-name
+ token: ${PYPI_TOKEN}
+ config:
+ client_class_name: YourClientName
+ github:
+ repository: your-org/company-python
+```
+
+
+
+
+## Release your SDK to PyPI
+
+ At this point, you're ready to generate a release for your SDK.
+
+
+
+
+
+ On your local machine, set the `PYPI_TOKEN` environment variable to the new API token you generated earlier:
+
+ ```bash
+ export PYPI_TOKEN=your-actual-pypi-token
+ ```
+
+
+
+
+
+ Regenerate your SDK and publish it on PyPI:
+
+ ```bash
+ fern generate --group python-sdk --version
+ ```
+ Local machine output will verify that the release is pushed to your
+ repository and tagged with the version you specified. Log back into PyPI and
+ navigate to **Your projects** to see your new release.
+
+
+
\ No newline at end of file