Skip to content

Commit 979c8de

Browse files
Merge pull request #160 from dispatchrun/rewrite-urls
update URLs from stealthrocket to dispatchrun
2 parents a859935 + e2a6f54 commit 979c8de

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

Diff for: README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<p align="center">
2-
<img src="https://github.com/stealthrocket/dispatch-proto/assets/865510/87162355-e184-4058-a733-650eee53f333" width="160"/>
2+
<img src="https://github.com/dispatchrun/dispatch-proto/assets/865510/87162355-e184-4058-a733-650eee53f333" width="160"/>
33
</p>
44

55
# dispatch-py
66

7-
[![Docs](https://github.com/stealthrocket/dispatch-py/actions/workflows/docs.yml/badge.svg?branch=)](https://github.com/stealthrocket/dispatch-py/actions/workflows/docs.yml)
8-
[![PyPI](https://github.com/stealthrocket/dispatch-py/actions/workflows/pypi.yml/badge.svg?branch=)](https://github.com/stealthrocket/dispatch-py/actions/workflows/pypi.yml)
9-
[![Test](https://github.com/stealthrocket/dispatch-py/actions/workflows/test.yml/badge.svg?branch=)](https://github.com/stealthrocket/dispatch-py/actions/workflows/test.yml)
7+
[![Docs](https://github.com/dispatchrun/dispatch-py/actions/workflows/docs.yml/badge.svg?branch=)](https://github.com/dispatchrun/dispatch-py/actions/workflows/docs.yml)
8+
[![PyPI](https://github.com/dispatchrun/dispatch-py/actions/workflows/pypi.yml/badge.svg?branch=)](https://github.com/dispatchrun/dispatch-py/actions/workflows/pypi.yml)
9+
[![Test](https://github.com/dispatchrun/dispatch-py/actions/workflows/test.yml/badge.svg?branch=)](https://github.com/dispatchrun/dispatch-py/actions/workflows/test.yml)
1010
[![PyPI version](https://badge.fury.io/py/dispatch-py.svg)](https://badge.fury.io/py/dispatch-py)
1111
[![Reference](https://img.shields.io/badge/API-Reference-lightblue.svg)](https://python.dispatch.run/main/reference/dispatch/)
1212

@@ -45,12 +45,12 @@ configuration and execution of applications that use Dispatch. On macOS, this
4545
can be done easily using [Homebrew](https://docs.brew.sh/):
4646

4747
```console
48-
brew tap stealthrocket/dispatch
48+
brew tap dispatchrun/dispatch
4949
brew install dispatch
5050
```
5151

5252
Alternatively, you can download the latest `dispatch` binary from the
53-
[Releases](https://github.com/stealthrocket/dispatch/releases) page.
53+
[Releases](https://github.com/dispatchrun/dispatch/releases) page.
5454

5555
*Note that this step is optional, applications that use Dispatch can run without
5656
the CLI, passing configuration through environment variables or directly in the
@@ -156,7 +156,7 @@ async def transform(msg):
156156
Dispatch converts Python coroutines to *Distributed Coroutines*, which can be
157157
suspended and resumed on any instance of a service across a fleet. For a deep
158158
dive on these concepts, read our blog post on
159-
[*Distributed Coroutines with a Native Python Extension and Dispatch*](https://stealthrocket.tech/blog/distributed-coroutines-in-python).
159+
[*Distributed Coroutines with a Native Python Extension and Dispatch*](https://dispatch.run/blog/distributed-coroutines-in-python).
160160

161161
### Integration with FastAPI
162162

@@ -231,7 +231,7 @@ the pickle library attempts serialization.
231231

232232
For help with a serialization issues, please submit a [GitHub issue][issues].
233233

234-
[issues]: https://github.com/stealthrocket/dispatch-py/issues
234+
[issues]: https://github.com/dispatchrun/dispatch-py/issues
235235

236236
## Examples
237237

Diff for: docs/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
This is the API reference for the Python SDK of Dispatch.
44

55
- Tutorials and guides: [docs.dispatch.run][docs].
6-
- Source: [stealthrocket/dispatch-py][github].
6+
- Source: [dispatchrun/dispatch-py][github].
77

88

99
[docs]: https://docs.dispatch.run
10-
[github]: https://github.com/stealthrocket/dispatch-py
10+
[github]: https://github.com/dispatchrun/dispatch-py

Diff for: examples/fanout/fanout.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ async def reduce_stargazers(repos):
5454
async def fanout():
5555
# Using gather, we fan-out the four following requests.
5656
repos = await gather(
57-
get_repo("stealthrocket", "coroutine"),
58-
get_repo("stealthrocket", "dispatch-py"),
59-
get_repo("stealthrocket", "wzprof"),
57+
get_repo("dispatchrun", "coroutine"),
58+
get_repo("dispatchrun", "dispatch-py"),
59+
get_repo("dispatchrun", "wzprof"),
6060
)
6161

6262
stars = await reduce_stargazers(repos)

Diff for: examples/github_stats/app.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ async def get_contributors(repo_info: dict):
5151

5252
@dispatch.function
5353
async def main():
54-
repo_info = await get_repo_info("stealthrocket", "coroutine")
54+
repo_info = await get_repo_info("dispatchrun", "coroutine")
5555
print(
5656
f"""Repository: {repo_info['full_name']}
5757
Stars: {repo_info['stargazers_count']}

0 commit comments

Comments
 (0)