diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | .python-version | 1 | ||||
| -rw-r--r-- | README.md | 78 | ||||
| -rw-r--r-- | blinky.py | 29 | ||||
| -rw-r--r-- | platform_alchitry_pt.py | 106 | ||||
| -rw-r--r-- | pyproject.toml | 9 | ||||
| -rw-r--r-- | uv.lock | 98 |
7 files changed, 315 insertions, 7 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0cafc1c --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.venv/
\ No newline at end of file diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..24ee5b1 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.13 @@ -1,9 +1,73 @@ -# Alchrity Pt V2 Hello World +# Hello Alchitry Pt v2 -## Prerequisites +A basic Amaranth HDL blinky example for the Alchitry Pt v2 development board with XC7A100T-2FGG484I FPGA. -- Install AMDs bloated [Vivado](https://www.xilinx.com/support/download/index.html/content/xilinx/en/downloadNav/vivado-design-tools.html) software - - You only need support for **Vivado** and **7 Series devices** - - Remove checkbox for licenses - - Install to some non-root directory to avoid system bloat -- On Arch: `yay -S ncurses5-compat-libs` +## Requirements + +- Python 3.12+ +- uv package manager +- Xilinx Vivado 2025.1 (installed at `~/Xilinx/2025.1/Vivado/`) +- Alchitry Pt v2 board connected via USB + +## Setup + +1. Install dependencies: +```bash +uv sync +``` + +2. Set up Vivado environment (add to your shell profile): +```bash +export PATH="$HOME/Xilinx/2025.1/Vivado/bin:$PATH" +``` + +## Usage + +### Build and Program FPGA + +Run the blinky example: +```bash +uv run python blinky.py +``` + +This will: +1. Synthesize the design using Vivado +2. Generate a bitstream +3. Program the FPGA automatically +4. LED 0 should start blinking at ~12Hz + +### Build Only (No Programming) + +To build without programming: +```bash +uv run python -c " +from platform_alchitry_pt import AlchitryPtPlatform +from blinky import Blinky +platform = AlchitryPtPlatform() +platform.build(Blinky(), do_program=False) +" +``` + +### Manual Programming + +If you need to program manually after building: +```bash +cd build +vivado -mode batch -source program_fpga.tcl +``` + +## Files + +- `blinky.py` - Main blinky example that blinks LED 0 +- `platform_alchitry_pt.py` - Alchitry Pt v2 platform definition with pin mappings +- `pyproject.toml` - Project dependencies (Amaranth HDL) + +## Hardware Details + +- **FPGA**: XC7A100T-2FGG484I (Artix-7, 484-pin BGA, speed grade -2) +- **Clock**: 100 MHz oscillator on pin N14 +- **LEDs**: 8 LEDs (pins K13, K16, L15, L14, M16, M14, M12, N16) +- **Reset**: Active-low reset button on pin P6 +- **IO**: 48 general purpose IO pins available + +The example uses a 24-bit counter clocked at 100 MHz, with the MSB driving LED 0 for a blink rate of approximately 12 Hz. diff --git a/blinky.py b/blinky.py new file mode 100644 index 0000000..424bf5f --- /dev/null +++ b/blinky.py @@ -0,0 +1,29 @@ +#!/usr/bin/env python3 + +from amaranth import * +from amaranth.build import Platform +from platform_alchitry_pt import AlchitryPtPlatform + + +class Blinky(Elaboratable): + def elaborate(self, platform: Platform) -> Module: + m = Module() + + # Get the LED pins + led = platform.request("led", 0) + + # Create a counter for timing + counter = Signal(24) + + # Increment counter every clock cycle + m.d.sync += counter.eq(counter + 1) + + # Connect the MSB of counter to LED (blinks at ~12Hz at 100MHz) + m.d.comb += led.o.eq(counter[-1]) + + return m + + +if __name__ == "__main__": + platform = AlchitryPtPlatform() + platform.build(Blinky(), do_program=True)
\ No newline at end of file diff --git a/platform_alchitry_pt.py b/platform_alchitry_pt.py new file mode 100644 index 0000000..9964ecc --- /dev/null +++ b/platform_alchitry_pt.py @@ -0,0 +1,106 @@ +from amaranth.build import * +from amaranth.vendor import XilinxPlatform + + +__all__ = ["AlchitryPtPlatform"] + + +class AlchitryPtPlatform(XilinxPlatform): + device = "xc7a100t" + package = "fgg484" + speed = "2" + default_clk = "clk100" + + resources = [ + Resource("clk100", 0, Pins("N14", dir="i"), + Clock(100e6), Attrs(IOSTANDARD="LVCMOS33")), + + # LEDs + Resource("led", 0, Pins("K13", dir="o"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("led", 1, Pins("K16", dir="o"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("led", 2, Pins("L15", dir="o"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("led", 3, Pins("L14", dir="o"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("led", 4, Pins("M16", dir="o"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("led", 5, Pins("M14", dir="o"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("led", 6, Pins("M12", dir="o"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("led", 7, Pins("N16", dir="o"), Attrs(IOSTANDARD="LVCMOS33")), + + # Reset button + Resource("rst_n", 0, Pins("P6", dir="i"), Attrs(IOSTANDARD="LVCMOS33")), + + # IO pins + Resource("io", 0, Pins("A1", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 1, Pins("A2", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 2, Pins("A3", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 3, Pins("A4", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 4, Pins("A5", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 5, Pins("A7", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 6, Pins("A8", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 7, Pins("A9", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 8, Pins("A10", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 9, Pins("A11", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 10, Pins("A13", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 11, Pins("A14", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 12, Pins("A15", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 13, Pins("A16", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 14, Pins("A17", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 15, Pins("A18", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 16, Pins("B1", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 17, Pins("B2", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 18, Pins("B4", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 19, Pins("B5", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 20, Pins("B6", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 21, Pins("B7", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 22, Pins("B8", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 23, Pins("B10", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 24, Pins("B11", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 25, Pins("B12", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 26, Pins("B14", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 27, Pins("B15", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 28, Pins("B16", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 29, Pins("B17", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 30, Pins("B18", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 31, Pins("C1", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 32, Pins("C2", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 33, Pins("C4", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 34, Pins("C5", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 35, Pins("C6", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 36, Pins("C7", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 37, Pins("C8", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 38, Pins("C9", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 39, Pins("C10", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 40, Pins("C11", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 41, Pins("C13", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 42, Pins("C14", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 43, Pins("C16", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 44, Pins("C17", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 45, Pins("C18", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 46, Pins("D3", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + Resource("io", 47, Pins("D4", dir="io"), Attrs(IOSTANDARD="LVCMOS33")), + ] + + connectors = [] + + def toolchain_program(self, products, name, **kwargs): + vivado = self.toolchain.sh_command("vivado") + with products.extract("{}.bit".format(name)) as bitstream_filename: + self.toolchain.run([ + vivado, "-mode", "batch", "-source", self._create_tcl_script(bitstream_filename) + ], root="build") + + def _create_tcl_script(self, bitstream_filename): + tcl_script = "program_fpga.tcl" + with open(tcl_script, "w") as f: + f.write(f""" +open_hw_manager +connect_hw_server +open_hw_target +set_property PROGRAM.FILE {{{bitstream_filename}}} [get_hw_devices xc7a100t_0] +set_property PROBES.FILE {{}} [get_hw_devices xc7a100t_0] +set_property FULL_PROBES.FILE {{}} [get_hw_devices xc7a100t_0] +current_hw_device [get_hw_devices xc7a100t_0] +program_hw_devices [get_hw_devices xc7a100t_0] +close_hw_manager +exit +""") + return tcl_script
\ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..474a726 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,9 @@ +[project] +name = "hello-alchitry-pt-v2" +version = "0.1.0" +description = "Add your description here" +readme = "README.md" +requires-python = ">=3.13" +dependencies = [ + "amaranth>=0.5.7", +] @@ -0,0 +1,98 @@ +version = 1 +revision = 3 +requires-python = ">=3.13" + +[[package]] +name = "amaranth" +version = "0.5.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jinja2" }, + { name = "jschon" }, + { name = "pyvcd" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/9b/e7/d3b99bf587876a1f623d023b7ecb55e4e316d79146913fde8967e9d14e4d/amaranth-0.5.7.tar.gz", hash = "sha256:31ea9065a9e9b7ec29e733780f398c0245d8e6044169dc84109c552caccc5e60", size = 226748, upload-time = "2025-07-18T20:55:01.259Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/a0/9c1a65f09f81a4ef485e280c47f953477acfab42f614a6a102108490fe36/amaranth-0.5.7-py3-none-any.whl", hash = "sha256:e32654a8d4ba9cdbd28dc9fe0c3ffc94bd281f7effe5532af9069e7b8110db18", size = 253785, upload-time = "2025-07-18T20:54:59.922Z" }, +] + +[[package]] +name = "hello-alchitry-pt-v2" +version = "0.1.0" +source = { virtual = "." } +dependencies = [ + { name = "amaranth" }, +] + +[package.metadata] +requires-dist = [{ name = "amaranth", specifier = ">=0.5.7" }] + +[[package]] +name = "jinja2" +version = "3.1.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/df/bf/f7da0350254c0ed7c72f3e33cef02e048281fec7ecec5f032d4aac52226b/jinja2-3.1.6.tar.gz", hash = "sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d", size = 245115, upload-time = "2025-03-05T20:05:02.478Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl", hash = "sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67", size = 134899, upload-time = "2025-03-05T20:05:00.369Z" }, +] + +[[package]] +name = "jschon" +version = "0.11.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "rfc3986" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7b/8b/5cbfbb4751533027ba97a59dfe4c9e694fbceaf549fa9cd7cb9a6066bd60/jschon-0.11.1.tar.gz", hash = "sha256:c0ca0beab1f1694a03d726b91ed75ec604a7787af3ae91ead765f78215bf149f", size = 69411, upload-time = "2023-10-22T11:38:58.897Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ce/b1/31f454a2ac0d23b0a47283d115f0af4abe2a1ea391f5ccb223e02d685b82/jschon-0.11.1-py3-none-any.whl", hash = "sha256:2350e8b6747b17358022960f91208bea70de448b914827af3184d30e20500f0f", size = 66971, upload-time = "2023-10-22T11:38:57.475Z" }, +] + +[[package]] +name = "markupsafe" +version = "3.0.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b2/97/5d42485e71dfc078108a86d6de8fa46db44a1a9295e89c5d6d4a06e23a62/markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0", size = 20537, upload-time = "2024-10-18T15:21:54.129Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/83/0e/67eb10a7ecc77a0c2bbe2b0235765b98d164d81600746914bebada795e97/MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd", size = 14274, upload-time = "2024-10-18T15:21:24.577Z" }, + { url = "https://files.pythonhosted.org/packages/2b/6d/9409f3684d3335375d04e5f05744dfe7e9f120062c9857df4ab490a1031a/MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430", size = 12352, upload-time = "2024-10-18T15:21:25.382Z" }, + { url = "https://files.pythonhosted.org/packages/d2/f5/6eadfcd3885ea85fe2a7c128315cc1bb7241e1987443d78c8fe712d03091/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094", size = 24122, upload-time = "2024-10-18T15:21:26.199Z" }, + { url = "https://files.pythonhosted.org/packages/0c/91/96cf928db8236f1bfab6ce15ad070dfdd02ed88261c2afafd4b43575e9e9/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396", size = 23085, upload-time = "2024-10-18T15:21:27.029Z" }, + { url = "https://files.pythonhosted.org/packages/c2/cf/c9d56af24d56ea04daae7ac0940232d31d5a8354f2b457c6d856b2057d69/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79", size = 22978, upload-time = "2024-10-18T15:21:27.846Z" }, + { url = "https://files.pythonhosted.org/packages/2a/9f/8619835cd6a711d6272d62abb78c033bda638fdc54c4e7f4272cf1c0962b/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a", size = 24208, upload-time = "2024-10-18T15:21:28.744Z" }, + { url = "https://files.pythonhosted.org/packages/f9/bf/176950a1792b2cd2102b8ffeb5133e1ed984547b75db47c25a67d3359f77/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca", size = 23357, upload-time = "2024-10-18T15:21:29.545Z" }, + { url = "https://files.pythonhosted.org/packages/ce/4f/9a02c1d335caabe5c4efb90e1b6e8ee944aa245c1aaaab8e8a618987d816/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c", size = 23344, upload-time = "2024-10-18T15:21:30.366Z" }, + { url = "https://files.pythonhosted.org/packages/ee/55/c271b57db36f748f0e04a759ace9f8f759ccf22b4960c270c78a394f58be/MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1", size = 15101, upload-time = "2024-10-18T15:21:31.207Z" }, + { url = "https://files.pythonhosted.org/packages/29/88/07df22d2dd4df40aba9f3e402e6dc1b8ee86297dddbad4872bd5e7b0094f/MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f", size = 15603, upload-time = "2024-10-18T15:21:32.032Z" }, + { url = "https://files.pythonhosted.org/packages/62/6a/8b89d24db2d32d433dffcd6a8779159da109842434f1dd2f6e71f32f738c/MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c", size = 14510, upload-time = "2024-10-18T15:21:33.625Z" }, + { url = "https://files.pythonhosted.org/packages/7a/06/a10f955f70a2e5a9bf78d11a161029d278eeacbd35ef806c3fd17b13060d/MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb", size = 12486, upload-time = "2024-10-18T15:21:34.611Z" }, + { url = "https://files.pythonhosted.org/packages/34/cf/65d4a571869a1a9078198ca28f39fba5fbb910f952f9dbc5220afff9f5e6/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c", size = 25480, upload-time = "2024-10-18T15:21:35.398Z" }, + { url = "https://files.pythonhosted.org/packages/0c/e3/90e9651924c430b885468b56b3d597cabf6d72be4b24a0acd1fa0e12af67/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d", size = 23914, upload-time = "2024-10-18T15:21:36.231Z" }, + { url = "https://files.pythonhosted.org/packages/66/8c/6c7cf61f95d63bb866db39085150df1f2a5bd3335298f14a66b48e92659c/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe", size = 23796, upload-time = "2024-10-18T15:21:37.073Z" }, + { url = "https://files.pythonhosted.org/packages/bb/35/cbe9238ec3f47ac9a7c8b3df7a808e7cb50fe149dc7039f5f454b3fba218/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5", size = 25473, upload-time = "2024-10-18T15:21:37.932Z" }, + { url = "https://files.pythonhosted.org/packages/e6/32/7621a4382488aa283cc05e8984a9c219abad3bca087be9ec77e89939ded9/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a", size = 24114, upload-time = "2024-10-18T15:21:39.799Z" }, + { url = "https://files.pythonhosted.org/packages/0d/80/0985960e4b89922cb5a0bac0ed39c5b96cbc1a536a99f30e8c220a996ed9/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9", size = 24098, upload-time = "2024-10-18T15:21:40.813Z" }, + { url = "https://files.pythonhosted.org/packages/82/78/fedb03c7d5380df2427038ec8d973587e90561b2d90cd472ce9254cf348b/MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6", size = 15208, upload-time = "2024-10-18T15:21:41.814Z" }, + { url = "https://files.pythonhosted.org/packages/4f/65/6079a46068dfceaeabb5dcad6d674f5f5c61a6fa5673746f42a9f4c233b3/MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f", size = 15739, upload-time = "2024-10-18T15:21:42.784Z" }, +] + +[[package]] +name = "pyvcd" +version = "0.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/5a/0e/bbc8c4b8b5c2c1b072f891ecc63d5cca230ca09cf25f94ebb9b46dadc114/pyvcd-0.4.1.tar.gz", hash = "sha256:dc6275e95a7949b8236086ab2e6d03afede73441243ec5109c9ea89077f3d696", size = 39562, upload-time = "2024-11-10T22:58:47.397Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8d/6d/24f67ec6cbe90ffca470f3c31e24f3d21124abc5b690398ab34a54bd3070/pyvcd-0.4.1-py2.py3-none-any.whl", hash = "sha256:3a4c71d4dce741f1155a2ed11a6278390a0816293068f6162ad9658d20f75578", size = 23561, upload-time = "2024-11-10T22:58:46.015Z" }, +] + +[[package]] +name = "rfc3986" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/85/40/1520d68bfa07ab5a6f065a186815fb6610c86fe957bc065754e47f7b0840/rfc3986-2.0.0.tar.gz", hash = "sha256:97aacf9dbd4bfd829baad6e6309fa6573aaf1be3f6fa735c8ab05e46cecb261c", size = 49026, upload-time = "2022-01-10T00:52:30.832Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ff/9a/9afaade874b2fa6c752c36f1548f718b5b83af81ed9b76628329dab81c1b/rfc3986-2.0.0-py2.py3-none-any.whl", hash = "sha256:50b1502b60e289cb37883f3dfd34532b8873c7de9f49bb546641ce9cbd256ebd", size = 31326, upload-time = "2022-01-10T00:52:29.594Z" }, +] |
