Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

SymbolicDSGE logo

by Güney Kıymaç


tests   pre-commit   coverage PyPI Downloads
DOI   wakatime

Installation

pip install SymbolicDSGE
pip install "SymbolicDSGE[fred]"  # FRED API utilities
pip install "SymbolicDSGE[sr]"    # Symbolic Regression Deps
pip install "SymbolicDSGE[ui]"    # Web based GUI

Useful Links

Overview

SymbolicDSGE is a Python DSGE engine with a JIT compiled backend for linear and linearized DSGE models, supporting symbolic manipulation features for in-place model modification. It also provides measurement-equation augmentation tools, including symbolic regression for complete or restricted free-form function discovery and OLS, Ridge, Lasso, and Elastic Net for structured linear coefficient estimation. The library supports a wide set of features beyond augmentation:

  • DSGE model specification, symbolic manipulation, and linearization
  • Bayesian and maximum-likelihood estimation
  • Simulation and impulse-response-function utilities
  • Gaussian and extended Kalman filtering
  • Automatic data retrieval from FRED
  • Custom shock distributions via SciPy or user-defined samplers
  • Monte Carlo pipelines for comparing models or model-generated samples, including:
    • Statistical tests
    • Regression setups
    • Output transformations
    • Filtering
    • Data generation

Web-UI

SymbolicDSGE ships a [ui] dependency with the goal of making DSGE basic experiments accessible to non-programmers. GUI users can:

  • Create a model config
  • Load and adjust existing configs
  • Estimate
  • Solve
  • Simulate
  • Create and run Monte Carlo experiments
  • Apply data transformations to outputs
  • Produce figures
  • Access raw output data

There are two intended ways to access the GUI:

# Option 1: Serve the GUI from the command line
#           This launches an empty GUI and the configuration should be done through the Builder tab.
sdsge-ui
# Option 2: Serve the GUI with a pre-loaded SolvedModel object

# Read a config and solve the model as usual
from SymbolicDSGE import ModelParser, DSGESolver

model, kalman = ModelParser(...).get_all()
solver = DSGESolver(model, kalman)
compiled = solver.compile(...)
sol = solver.solve(compiled, ...)

# Serve the GUI with the solved model pre-loaded in the reference slot
sol.serve(open_browser=True)

Although SymbolicDSGE is still a fast-moving project; the UI effectively supports all features with the exception of integration with the [sr] extra as of v1.4.2. Symbolic Regression requires extensive configuration and templating posing unique difficulties in a no-code environment. Therefore, it's presence as a GUI component is not planned for the future.

Read the Docs

Alongside API references and implementation conventions, the documentation includes guides covering model setup, estimation, simulation, and filtering. The documentation is kept up to date and aims to clarify conventions, workflows, and implementation choices throughout SymbolicDSGE. Suggestions for improving or extending the documentation are welcome as issues.

AI Parsability

The documentation is a static Material MkDocs site, so web-enabled AI tools should be able to search, parse, and summarize it reliably.

Minimal Example

from SymbolicDSGE import ModelParser, DSGESolver

# Read the YAML config (Equations, Measurements, Parameters, Optional Filter Spec)
parsed = ModelParser("<path-to-config>.yaml").get_all()
model, kalman = parsed

# Compile the model
solver = DSGESolver(model, kalman)
compiled = solver.compile()

print("Equations with symbols removed: \n", "\n".join(map(str, compiled.objective_eqs)), "\n")
>>> Equations with symbols removed:
 -beta*fwd_Pi + cur_Pi - cur_x*kappa - cur_z
-cur_g + cur_x - fwd_x + tau_inv*(cur_r - fwd_Pi)
-cur_r*rho_r - e_R + fwd_r + (rho_r - 1)*(fwd_Pi*psi_pi + fwd_x*psi_x)
-cur_g*rho_g - e_g + fwd_g
-cur_z*rho_z - e_z + fwd_z
# Solve the compiled model
sol = solver.solve(
    compiled,
    parameters=None,
    ss_seed=[0.0, 0.0, 0.0, 0.0, 0.0],
)
print("Is stable: ", sol.policy.stab == 0)
print("Eigenvalues: ", sol.policy.eig)
>>> Is stable:  True
Eigenvalues:  [0.28 +0.j 0.83 +0.j 0.85 +0.j 2.605+0.j 1.185+0.j]
# Plot IRFs (single or multi shock)
sol.transition_plot(
    T=25,
    shocks=["e_g", "e_z"],
    scale=1.0,
    observables=True,
)
image

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

symbolicdsge-2.0.0.dev9.tar.gz (5.9 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

symbolicdsge-2.0.0.dev9-cp314-cp314-win_amd64.whl (8.8 MB view details)

Uploaded CPython 3.14Windows x86-64

symbolicdsge-2.0.0.dev9-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (22.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

symbolicdsge-2.0.0.dev9-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (22.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

symbolicdsge-2.0.0.dev9-cp314-cp314-macosx_11_0_arm64.whl (9.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

symbolicdsge-2.0.0.dev9-cp313-cp313-win_amd64.whl (8.7 MB view details)

Uploaded CPython 3.13Windows x86-64

symbolicdsge-2.0.0.dev9-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (22.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

symbolicdsge-2.0.0.dev9-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (22.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

symbolicdsge-2.0.0.dev9-cp313-cp313-macosx_11_0_arm64.whl (9.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

symbolicdsge-2.0.0.dev9-cp312-cp312-win_amd64.whl (8.8 MB view details)

Uploaded CPython 3.12Windows x86-64

symbolicdsge-2.0.0.dev9-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (22.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

symbolicdsge-2.0.0.dev9-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (22.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

symbolicdsge-2.0.0.dev9-cp312-cp312-macosx_11_0_arm64.whl (9.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

symbolicdsge-2.0.0.dev9-cp311-cp311-win_amd64.whl (8.8 MB view details)

Uploaded CPython 3.11Windows x86-64

symbolicdsge-2.0.0.dev9-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (23.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

symbolicdsge-2.0.0.dev9-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (22.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

symbolicdsge-2.0.0.dev9-cp311-cp311-macosx_11_0_arm64.whl (9.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

Details for the file symbolicdsge-2.0.0.dev9.tar.gz.

File metadata

  • Download URL: symbolicdsge-2.0.0.dev9.tar.gz
  • Upload date:
  • Size: 5.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for symbolicdsge-2.0.0.dev9.tar.gz
Algorithm Hash digest
SHA256 a9b0aa6606fc0c9809264930bff803c1ed18d4b6127a1285a102ac2d154c43c0
MD5 99b382fbf3b28d82e1c3e2313684b5f8
BLAKE2b-256 e3a674686a5c262a9693f4500b26f9d45896ee9411c18341b5db264bbf536a27

See more details on using hashes here.

File details

Details for the file symbolicdsge-2.0.0.dev9-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: symbolicdsge-2.0.0.dev9-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 8.8 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for symbolicdsge-2.0.0.dev9-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0000992535ba29b124df5d9c53dea4c0c9a93423d0bd6bf9e04bbf916a6aedb8
MD5 cc4449dd53996cfb9ce1061924aa1f34
BLAKE2b-256 436d8d45bdefb0ae96384372fb936d6afe4b02de97a9e42b981e8745ca615038

See more details on using hashes here.

File details

Details for the file symbolicdsge-2.0.0.dev9-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: symbolicdsge-2.0.0.dev9-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 22.4 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for symbolicdsge-2.0.0.dev9-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1e019d9f846c6c9209f7e828eff940c3471312761e31e50d01dd31ca93036ca2
MD5 1508d3a5f0f4cb788c4b3b64bba524d5
BLAKE2b-256 849581897f3a27367294199479e06687e49ff48b21b8b703f50af75a8dde3436

See more details on using hashes here.

File details

Details for the file symbolicdsge-2.0.0.dev9-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: symbolicdsge-2.0.0.dev9-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 22.0 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for symbolicdsge-2.0.0.dev9-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 12fd3aa9f855189da0cb5c9558e87b1d72e7ab1c6f4379b24a80ded5cbf98471
MD5 d4f2fc7b895e6a4254680158d3e89197
BLAKE2b-256 1e2ebac91b292b277afea119f4f8c837c59f001ba3c9ff80fcf4f9342eb06309

See more details on using hashes here.

File details

Details for the file symbolicdsge-2.0.0.dev9-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: symbolicdsge-2.0.0.dev9-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 9.3 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for symbolicdsge-2.0.0.dev9-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20c6a87df9ffa7ab60d243fd97923731e8c519f34703c9a0c544180795bad562
MD5 01b57ad64cb90e4b6c55d3804aa9ba40
BLAKE2b-256 18d4c14fd6415beb7fc9253aecd52bc1f4c65f37f74d27cca2c5110f4ed4b1ac

See more details on using hashes here.

File details

Details for the file symbolicdsge-2.0.0.dev9-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: symbolicdsge-2.0.0.dev9-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for symbolicdsge-2.0.0.dev9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1f1ffafe0064b14d423a8099dff70e4d772d0150fcfa0b19b902a8f8b04a9a37
MD5 11b0493c7d38f960bc12239823814bf9
BLAKE2b-256 697ccdd15ace9b1227e5d5fc7c5a5054c6d0421b1a65ae4cf934cc18eed2da4b

See more details on using hashes here.

File details

Details for the file symbolicdsge-2.0.0.dev9-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: symbolicdsge-2.0.0.dev9-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 22.5 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for symbolicdsge-2.0.0.dev9-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e9ed2c6f6ece92f3474ad62dd9cb232b9f34adc6451a7a39d3819d8e73847c16
MD5 c981be48af9e02410f44782d310d9286
BLAKE2b-256 e3f0c2f4bc32d9bbdbc16131549e3bb261ad0f5ae8757ef79126ce8b66fe6bb0

See more details on using hashes here.

File details

Details for the file symbolicdsge-2.0.0.dev9-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: symbolicdsge-2.0.0.dev9-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 22.0 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for symbolicdsge-2.0.0.dev9-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4b1767207d1f61f1c6d42e38d483758b4586d4d1adb707f8137bf8bcd45cd1b7
MD5 f1668044860f53a91b31f6762f79ef67
BLAKE2b-256 3e5e1132ed6759c7d80298fa8ddfc92d1d1d3219733a22e63ca9fa1bde2d7348

See more details on using hashes here.

File details

Details for the file symbolicdsge-2.0.0.dev9-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: symbolicdsge-2.0.0.dev9-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 9.3 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for symbolicdsge-2.0.0.dev9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e37f4d6caccfd06bd29b7633a6ecbf29a67561cfad92a710168a8bd0da7d0cd8
MD5 ef10a1b7b69aaf4242123209fe69ea08
BLAKE2b-256 df79bbc1c51263e0e955e0a4b3503219155640da812197cd6d126774349126d8

See more details on using hashes here.

File details

Details for the file symbolicdsge-2.0.0.dev9-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: symbolicdsge-2.0.0.dev9-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 8.8 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for symbolicdsge-2.0.0.dev9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ec08ae5c098ae803980dfbd13a07159e1962ecf90fd26cd20fc06764e2e1b213
MD5 adced64b213291a1c2adb7ed6f5c6e6b
BLAKE2b-256 674d65d5672872ed6359d81030d407555d0a366aea67b510058b80171bbe5bd3

See more details on using hashes here.

File details

Details for the file symbolicdsge-2.0.0.dev9-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: symbolicdsge-2.0.0.dev9-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 22.8 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for symbolicdsge-2.0.0.dev9-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d5f2ff9577dfd2d86bee481ec56d7d37d70de3065b3e2be0efac8df8757a9880
MD5 0cb06099b77dbad99097b449a62521e3
BLAKE2b-256 72a4e5f0080ae2fe0e4090940c27cc51004b51d559f4ea23346e2bf3ec385783

See more details on using hashes here.

File details

Details for the file symbolicdsge-2.0.0.dev9-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: symbolicdsge-2.0.0.dev9-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 22.3 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for symbolicdsge-2.0.0.dev9-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c03f06ffa573f08d39c2c449aad9f0534fe7799c86ab137a7fde9fa50aaeb055
MD5 b3a1e35f6acf155c20e82723104a23d4
BLAKE2b-256 3f892a73aa6737ab7b51a364b0a0710e77f8f8b8f57188ae4ae50adda100474c

See more details on using hashes here.

File details

Details for the file symbolicdsge-2.0.0.dev9-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: symbolicdsge-2.0.0.dev9-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 9.3 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for symbolicdsge-2.0.0.dev9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0af2410db4dbd28c9a0c7f07020b423c559d1bc39ee8fe9923ad14fcd07e782c
MD5 1ca60297d426dda3a6ead1e46454dd04
BLAKE2b-256 7e8062691a473c1a99cad4aa314949c36cf29994458646c6402016d00217aba4

See more details on using hashes here.

File details

Details for the file symbolicdsge-2.0.0.dev9-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: symbolicdsge-2.0.0.dev9-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 8.8 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for symbolicdsge-2.0.0.dev9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8fac189a1f5dba1505faa2f582e444f8f1d0b416e679a98f483af215306ff399
MD5 8fa88a11e83fffc42bdbc75f9f273688
BLAKE2b-256 1847639fe687909177ffb3643c1510e2a0ae2523f16ceaf32394a91b9535c0d9

See more details on using hashes here.

File details

Details for the file symbolicdsge-2.0.0.dev9-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: symbolicdsge-2.0.0.dev9-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 23.0 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for symbolicdsge-2.0.0.dev9-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b9ffef00812daf5c0499e8502278614cfedac3647dfd3116f990a44f87977e5f
MD5 a9676058082db42a32f9aabf54aa4d11
BLAKE2b-256 428c13e33181dcb471672affa49694e1239d756b391ce82237af96c19dd63956

See more details on using hashes here.

File details

Details for the file symbolicdsge-2.0.0.dev9-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: symbolicdsge-2.0.0.dev9-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 22.7 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for symbolicdsge-2.0.0.dev9-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 70eeefbb67fa3c75cabec105d6be5cd9932066a3dd7506f0b04ca4413a7a28dd
MD5 7694cabc8c1879a98dd21155f4f5398d
BLAKE2b-256 e2496a136c3263c1cc2674027f3b8df2020912209d4d60259bea79ae9925975b

See more details on using hashes here.

File details

Details for the file symbolicdsge-2.0.0.dev9-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: symbolicdsge-2.0.0.dev9-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 9.2 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for symbolicdsge-2.0.0.dev9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9413efba5bb6ab1d566f597e0c9c9462548fe69ebcdad5f8a1136ee9ac2139bc
MD5 972503e0d6aab785edf18931b172dde9
BLAKE2b-256 f5ddb1423cc39c578c009a3d2766faac0853a83c9add193c8652dbaa37de91a3

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

2.0.0.dev9 This release

17 files

1.4.3

17 files

1.4.2

2 files

1.4.1

2 files

1.4.0

2 files

1.3.4

2 files

1.3.3

2 files

1.3.2

2 files

1.3.1

2 files

1.3.0

2 files

1.2.1

2 files

1.2.0

2 files

1.1.0

2 files

1.0.1

2 files

1.0.0

2 files

0.5.3

2 files

0.5.2

2 files

0.5.1

2 files

0.5.0

2 files

0.2.2

2 files

0.2.1

2 files

0.2.0

2 files

0.1.9

2 files

0.1.8

2 files

0.1.7

2 files

0.1.6

2 files

0.1.5

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page