Skip to content

Commit

Permalink
Merge pull request #98 from stealthrocket/rename
Browse files Browse the repository at this point in the history
rename from dispatch-sdk-python to dispatch-py
  • Loading branch information
achille-roussel authored Mar 2, 2024
2 parents a5aeeb3 + 9dca0ce commit 7588e73
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/dispatch-functions
url: https://pypi.org/p/dispatch-py
permissions:
contents: read
id-token: write
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@
<img src="https://github.com/stealthrocket/dispatch-proto/assets/865510/87162355-e184-4058-a733-650eee53f333" width="160"/>
</p>

# Dispatch SDK for Python
# dispatch-py

[![Docs](https://github.com/stealthrocket/dispatch-sdk-python/actions/workflows/docs.yml/badge.svg?branch=)](https://github.com/stealthrocket/dispatch-sdk-python/actions/workflows/docs.yml)
[![PyPI](https://github.com/stealthrocket/dispatch-sdk-python/actions/workflows/pypi.yml/badge.svg?branch=)](https://github.com/stealthrocket/dispatch-sdk-python/actions/workflows/pypi.yml)
[![Test](https://github.com/stealthrocket/dispatch-sdk-python/actions/workflows/test.yml/badge.svg?branch=)](https://github.com/stealthrocket/dispatch-sdk-python/actions/workflows/test.yml)
[![PyPI version](https://badge.fury.io/py/dispatch-functions.svg)](https://badge.fury.io/py/dispatch-functions)
[![Docs](https://github.com/stealthrocket/dispatch-py/actions/workflows/docs.yml/badge.svg?branch=)](https://github.com/stealthrocket/dispatch-py/actions/workflows/docs.yml)
[![PyPI](https://github.com/stealthrocket/dispatch-py/actions/workflows/pypi.yml/badge.svg?branch=)](https://github.com/stealthrocket/dispatch-py/actions/workflows/pypi.yml)
[![Test](https://github.com/stealthrocket/dispatch-py/actions/workflows/test.yml/badge.svg?branch=)](https://github.com/stealthrocket/dispatch-py/actions/workflows/test.yml)
[![PyPI version](https://badge.fury.io/py/dispatch-py.svg)](https://badge.fury.io/py/dispatch-py)
[![Reference](https://img.shields.io/badge/API-Reference-lightblue.svg)](https://python.stealthrocket.cloud/main/reference/dispatch/)

This package implements the Dispatch SDK for Python.
Python package to develop applications with the Dispatch platform.

[fastapi]: https://fastapi.tiangolo.com/tutorial/first-steps/
[ngrok]: https://ngrok.com/
[pypi]: https://pypi.org/project/dispatch-functions/
[pypi]: https://pypi.org/project/dispatch-py/
[signup]: https://docs.stealthrocket.cloud/stateful-functions/getting-started

- [What is Dispatch?](#what-is-dispatch)
Expand All @@ -39,9 +39,9 @@ To get started, follow the instructions to [sign up for Dispatch][signup] 🚀.

## Installation

This package is published on [PyPI][pypi] as **dispatch-functions**, to install:
This package is published on [PyPI][pypi] as **dispatch-py**, to install:
```sh
pip install dispatch-functions
pip install dispatch-py
```

## Usage
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
This is the API reference for the Python SDK of Dispatch.

- Tutorials and guides: [docs.stealthrocket.cloud][docs].
- Source: [stealthrocket/dispatch-sdk-python][github].
- Source: [stealthrocket/dispatch-py][github].


[docs]: https://docs.stealthrocket.cloud
[github]: https://github.com/stealthrocket/dispatch-sdk-python
[github]: https://github.com/stealthrocket/dispatch-py
2 changes: 1 addition & 1 deletion examples/getting_started/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
## Install dependencies
pip install dispatch-functions[fastapi] requests uvicorn[standard]
pip install dispatch-py[fastapi] requests uvicorn[standard]
# Launch the example
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ requires = ["setuptools >= 61.0", "wheel", "setuptools-git-versioning<2"]
build-backend = "setuptools.build_meta"

[project]
name = "dispatch-functions"
description = "Python SDK for Dispatch Stateful Functions"
name = "dispatch-py"
description = "Develop reliable distributed systems on the Dispatch platform."
readme = "README.md"
dynamic = ["version"]
requires-python = ">= 3.11"
Expand Down

0 comments on commit 7588e73

Please sign in to comment.