Skip to content

Commit 90eaaa4

Browse files
committed
Update to reflect the change of domain.
1 parent c071828 commit 90eaaa4

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
blank_issues_enabled: true
22
contact_links:
33
- name: Feature Proposals
4-
url: https://github.com/pyscript/pyscript-packages/discussions/new?category=proposals
5-
about: Create a feature request to make pyscript-packages even better
4+
url: https://github.com/pyscript/packages/discussions/new?category=proposals
5+
about: Create a feature request to make pyscript packages even better
66
- name: Questions & Help
7-
url: https://github.com/pyscript/pyscript-packages/discussions/new?category=q-a
8-
about: For questions or discussions about pyscript-packages
7+
url: https://github.com/pyscript/packages/discussions/new?category=q-a
8+
about: For questions or discussions about pyscript packages

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ about the `pandas` package:
6767
```
6868
import requests
6969
70-
response = requests.get("https://pyscript.github.io/pyscript-packages/api/package/pandas.json")
70+
response = requests.get("https://packages.pyscript.net/api/package/pandas.json")
7171
if response.status_code == 200:
7272
package_data = response.json()
7373
print(package_data)
@@ -92,11 +92,11 @@ GET api/top_100_pypi_packages.json
9292

9393
This is a very simple static website.
9494

95-
1. Fork the project found at: https://github.com/pyscript/pyscript-packages
95+
1. Fork the project found at: https://github.com/pyscript/packages
9696
2. Clone *your* fork of the repository, and change into the resulting directory:
9797
```sh
98-
$ git clone git@github.com:<YOUR_USERNAME>/pyscript-packages.git
99-
$ cd pyscript-packages
98+
$ git clone git@github.com:<YOUR_USERNAME>/packages.git
99+
$ cd packages
100100
```
101101
3. Start a local server:
102102
```sh

help/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<meta name="viewport" content="width=device-width,initial-scale=1" />
66
<title>Help - PyScript Packages</title>
77
<link rel="stylesheet" href="../styles.css" />
8-
<link rel="stylesheet" href="https://pyscript.net/releases/2025.10.3/core.css" />
9-
<script type="module" src="https://pyscript.net/releases/2025.10.3/core.js"></script>
8+
<link rel="stylesheet" href="https://pyscript.net/releases/2026.1.1/core.css" />
9+
<script type="module" src="https://pyscript.net/releases/2026.1.1/core.js"></script>
1010
</head>
1111
<body>
1212
<header class="site-header">
@@ -106,7 +106,7 @@ <h2 id="api">Our API</h2>
106106

107107
<pre><code>import requests
108108

109-
response = requests.get("https://pyscript.github.io/pyscript-packages/api/package/pandas.json")
109+
response = requests.get("https://packages.pyscript.net/api/package/pandas.json")
110110
if response.status_code == 200:
111111
package_data = response.json()
112112
print(package_data)

0 commit comments

Comments
 (0)