Skip to content

Commit d146572

Browse files
committed
moving from samuelcolvin -> pydantic org
1 parent c9e8bb9 commit d146572

File tree

10 files changed

+18
-18
lines changed

10 files changed

+18
-18
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# FastUI
22

3-
[![CI](https://github.com/samuelcolvin/FastUI/actions/workflows/ci.yml/badge.svg)](https://github.com/samuelcolvin/FastUI/actions?query=event%3Apush+branch%3Amain+workflow%3ACI)
3+
[![CI](https://github.com/pydantic/FastUI/actions/workflows/ci.yml/badge.svg)](https://github.com/pydantic/FastUI/actions?query=event%3Apush+branch%3Amain+workflow%3ACI)
44
[![pypi](https://img.shields.io/pypi/v/fastui.svg)](https://pypi.python.org/pypi/fastui)
5-
[![versions](https://img.shields.io/pypi/pyversions/fastui.svg)](https://github.com/samuelcolvin/FastUI)
6-
[![license](https://img.shields.io/github/license/samuelcolvin/FastUI.svg)](https://github.com/samuelcolvin/FastUI/blob/main/LICENSE)
5+
[![versions](https://img.shields.io/pypi/pyversions/fastui.svg)](https://github.com/pydantic/FastUI)
6+
[![license](https://img.shields.io/github/license/pydantic/FastUI.svg)](https://github.com/pydantic/FastUI/blob/main/LICENSE)
77

88
**Please note:** FastUI is still an active work in progress, do not expect it to be complete.
99

@@ -113,7 +113,7 @@ async def html_landing() -> HTMLResponse:
113113

114114
Which renders like this:
115115

116-
![screenshot](https://raw.githubusercontent.com/samuelcolvin/FastUI/main/screenshot.png)
116+
![screenshot](https://raw.githubusercontent.com/pydantic/FastUI/main/screenshot.png)
117117

118118
Of course, that's a very simple application, the [full demo](https://fastui-demo.onrender.com) is more complete.
119119

@@ -160,7 +160,7 @@ Building an application this way has a number of significant advantages:
160160
- You only need to write code in one place to build a new feature — add a new view, change the behavior of an existing view or alter the URL structure
161161
- Deploying the front and backend can be completely decoupled, provided the frontend knows how to render all the components the backend is going to ask it to use, you're good to go
162162
- You should be able to reuse a rich set of opensource components, they should end up being better tested and more reliable than anything you could build yourself, this is possible because the components need no context about how they're going to be used (note: since FastUI is brand new, this isn't true yet, hopefully we get there)
163-
- We can use Pydantic, TypeScript and JSON Schema to provide guarantees that the two sides are communicating with an agreed schema (note: this is not complete yet, see [#18](https://github.com/samuelcolvin/FastUI/issues/18))
163+
- We can use Pydantic, TypeScript and JSON Schema to provide guarantees that the two sides are communicating with an agreed schema (note: this is not complete yet, see [#18](https://github.com/pydantic/FastUI/issues/18))
164164

165165
In the abstract, FastUI is like the opposite of GraphQL but with the same goal — GraphQL lets frontend developers extend an application without any new backend development; FastUI lets backend developers extend an application without any new frontend development.
166166

demo/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
def api_index() -> list[AnyComponent]:
1414
# language=markdown
1515
markdown = """\
16-
This site providers a demo of [FastUI](https://github.com/samuelcolvin/FastUI), the code for the demo
17-
is [here](https://github.com/samuelcolvin/FastUI/tree/main/demo).
16+
This site providers a demo of [FastUI](https://github.com/pydantic/FastUI), the code for the demo
17+
is [here](https://github.com/pydantic/FastUI/tree/main/demo).
1818
1919
The following components are demonstrated:
2020

src/npm-fastui-bootstrap/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# FastUI Bootstrap
22

3-
Bootstrap components for [FastUI](https://github.com/samuelcolvin/FastUI).
3+
Bootstrap components for [FastUI](https://github.com/pydantic/FastUI).

src/npm-fastui-bootstrap/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"types": "dist/index.d.ts",
77
"author": "Samuel Colvin",
88
"license": "MIT",
9-
"homepage": "https://github.com/samuelcolvin/fastui",
9+
"homepage": "https://github.com/pydantic/fastui",
1010
"private": false,
1111
"keywords": [
1212
"fastui",

src/npm-fastui-prebuilt/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# FastUI pre-build
22

3-
Pre-built files for [FastUI](https://github.com/samuelcolvin/FastUI).
3+
Pre-built files for [FastUI](https://github.com/pydantic/FastUI).

src/npm-fastui-prebuilt/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"type": "module",
77
"author": "Samuel Colvin",
88
"license": "MIT",
9-
"homepage": "https://github.com/samuelcolvin/fastui",
9+
"homepage": "https://github.com/pydantic/fastui",
1010
"private": false,
1111
"keywords": [
1212
"fastui",

src/npm-fastui/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# FastUI
22

3-
React frontend for [FastUI](https://github.com/samuelcolvin/FastUI).
3+
React frontend for [FastUI](https://github.com/pydantic/FastUI).

src/npm-fastui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"types": "dist/index.d.ts",
77
"author": "Samuel Colvin",
88
"license": "MIT",
9-
"homepage": "https://github.com/samuelcolvin/fastui",
9+
"homepage": "https://github.com/pydantic/fastui",
1010
"private": false,
1111
"keywords": [
1212
"fastui",

src/python-fastui/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# FastUI
22

3-
[![CI](https://github.com/samuelcolvin/FastUI/actions/workflows/ci.yml/badge.svg)](https://github.com/samuelcolvin/FastUI/actions?query=event%3Apush+branch%3Amain+workflow%3ACI)
4-
[![versions](https://img.shields.io/pypi/pyversions/fastui.svg)](https://github.com/samuelcolvin/FastUI)
5-
[![license](https://img.shields.io/github/license/samuelcolvin/FastUI.svg)](https://github.com/samuelcolvin/FastUI/blob/main/LICENSE)
3+
[![CI](https://github.com/pydantic/FastUI/actions/workflows/ci.yml/badge.svg)](https://github.com/pydantic/FastUI/actions?query=event%3Apush+branch%3Amain+workflow%3ACI)
4+
[![versions](https://img.shields.io/pypi/pyversions/fastui.svg)](https://github.com/pydantic/FastUI)
5+
[![license](https://img.shields.io/github/license/pydantic/FastUI.svg)](https://github.com/pydantic/FastUI/blob/main/LICENSE)
66

7-
Python components for [FastUI](https://github.com/samuelcolvin/FastUI).
7+
Python components for [FastUI](https://github.com/pydantic/FastUI).

src/python-fastui/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ fastapi = [
3838
]
3939

4040
[project.urls]
41-
Homepage = "https://github.com/samuelcolvin/FastUI"
41+
Homepage = "https://github.com/pydantic/FastUI"

0 commit comments

Comments
 (0)