swydd will yield desired deliverables
Find a file
2024-03-11 13:14:01 -05:00
.github/workflows build: remove non-existent job reference 2024-03-08 13:04:15 -06:00
src/swydd wip: start implementing DAG 2024-03-11 13:14:01 -05:00
.gitignore mvp 2024-03-06 00:48:24 -06:00
.pre-commit-config.yaml mvp 2024-03-06 00:48:24 -06:00
LICENSE mvp 2024-03-06 00:48:24 -06:00
pdm.lock mvp 2024-03-06 00:48:24 -06:00
pyproject.toml docs: add proper description 2024-03-08 12:59:36 -06:00
README.md docs: typo in license shield 2024-03-08 13:06:06 -06:00
tasks.py build: add bootstap task 2024-03-08 12:57:04 -06:00

EffVer Issues MIT License Ruff pre-commit

sywdd

sywdd will yield desired deliverables

Automagic Snippet

# https://github.com/daylinmorgan/swydd?tab=readme-ov-file#automagic-snippet
# fmt: off
if not (src := __import__("pathlib").Path(__file__).parent / "swydd/__init__.py").is_file(): # noqa
    try: __import__("swydd") # noqa
    except ImportError:
        import sys; from urllib.request import urlopen; from urllib.error import URLError # noqa
        try: r = urlopen("https://raw.githubusercontent.com/daylinmorgan/swydd/main/src/swydd/__init__.py") # noqa
        except URLError as e: sys.exit(f"{e}\n") # noqa
        src.parent.mkdir(exists_ok=True); src.write_text(r.read().decode("utf-8")); # noqa
# fmt: on

Alternatives