Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/guides/python/create-histogram.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ We'll be making a serverless application which can take information from a HTTP
We'll start by creating a new project for our API.

```bash
nitric new histogram-api py-starter
nitric new histogram-api py-starter-pipenv
```

Next, open the project in your editor of choice.
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/python/graphql.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Here's a video of this guide built with Node.js:
We'll start by creating a new project for our API.

```bash
nitric new my-profile-api py-starter
nitric new my-profile-api py-starter-pipenv
```

Next, open the project in your editor of choice.
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/python/scheduled-report.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ We'll create a scheduled service which will run on a daily basis to create and s
First, we'll create a new nitric project and install the necessary Python packages.

```bash
nitric new reports py-starter
nitric new reports py-starter-pipenv
pipenv install google-auth google-api-python-client
pipenv install --dev
```
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/python/serverless-rest-api-example.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ languages:
We'll start by creating a new project for our API.

```bash
nitric new my-profile-api py-starter
nitric new my-profile-api py-starter-pipenv
```

Next, open the project in your editor of choice.
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/python/text-prediction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ We'll be making a simple text based prediction model based off of the book Pride
We'll start by creating a new project for our API.

```bash
nitric new prediction-api py-starter
nitric new prediction-api py-starter-pipenv
```

Next, open the project in your editor of choice.
Expand Down
Loading