Skip to main content

UXsim: traffic flow simulator

Project description

UXsim: Fast network traffic flow simulator for Python

PyPi Conda Version Demo in Colab codecov PyPI - Downloads arXiv DOI citations Documentation Static Badge

UXsim is a free, open-source macroscopic and mesoscopic network traffic flow simulator written in Python. It simulates the movements of car travelers and traffic congestion in road networks. It is suitable for simulating large-scale (e.g., city-scale) traffic phenomena. UXsim is especially useful for scientific and educational purposes because of its simple, lightweight, and customizable features, but users are free to use UXsim for any purpose.

If you are interested, please see:

Main Features

  • Simple, lightweight, and easy-to-use Python implementation of modern standard models of dynamic network traffic flow
  • Macroscopic and mesoscopic traffic simulation: Simulating over 60000 vehicles in a city in 30 seconds, or even 1 million vehicles in a metropolitan area in 40 seconds depending on the simulation setting
  • Dynamic traffic assignment: Traffic flow simulation with a given network and time-dependent OD demand
    • Approximate solvers for Dynamic User Equilibrium and Dynamic System Optimum are also available
  • Theoretically valid models commonly used in academic and professional transportation research
  • Implementation of traffic control and management schemes such as taxi/shared-mobility, traffic signals, road pricing, and so on
  • Flexible and customizable thanks to pure Python implementation
    • Basic analysis of simulation results and their export to pandas.DataFrame and CSV files
    • Visualization of simulation results using Matplotlib; interactive GUI is also available
    • Can also be directly integrated with other Python-based frameworks, such as PyTorch for deep reinforcement learning traffic control
    • The main code uxsim.py is only about 1200 lines of code. Users may easily understand and customize it
    • Dependency-free: you can use the simulator by doing pip install uxsim only
  • Provides a seamless user experience by integrating scenario construction, simulation, and data analysis into a unified, transparent Python workflow

Simulation Examples

Large-scale scenario

Below are simulation results where approximately 60000 vehicles pass through a 10km x 10km grid network in 2 hours. The computation time was about 30 seconds on a standard desktop PC.

Visualization of link traffic states (thicker lines mean more vehicles, darker colors mean slower speeds) and some vehicle trajectories:

Vehicle trajectory diagram on a corridor of the above network:

Deep reinforcement learning signal control using PyTorch

A traffic signal controller is trained by deep reinforcement learning (DRL) using PyTorch. The left (or upper) scenario shows no control with fixed signal timing; the traffic demand exceeds the network capacity with the naive signal setting, and a gridlock occurs. The right (or bottom) scenario shows DRL control, where the traffic signal can be changed by observing queue length; although the demand level is the same, traffic flows smoothly. A Jupyter Notebook of this example is available.

Install

UXsim is available for Python version 3.10 or later.

Using pip

The simplest way is to use pip to install from PyPI:

pip install uxsim
Alternative methods for advanced users (click to see)

Using conda

You can also install with conda from conda-forge channel:

conda install uxsim

For the details, please see here.

Using pip with custom configuration

You can also use pip to install the GitHub version:

pip install -U -e git+https://github.com/toruseo/uxsim@main#egg=uxsim

Or any other (development) branch on this repo or your own fork:

pip install -U -e git+https://github.com/YOUR_FORK/uxsim@YOUR_BRANCH#egg=uxsim

Manual install

Download the uxsim directory from this Github repo or the latest release and place it in your local directory as follows:

your_project_directory/
├── uxsim/ 	# The uxsim directory
│ ├── uxsim.py 	# The main code of UXsim. You can customize this as you wish
│ └── ... 	# Other files and directories in uxsim
├── your_simulation_code.py 		# Your code if necessary
├── your_simulation_notebook.ipynb 	# Your Jupyter notebook if necessary
├── ... 	# Other files if necessary

This way, you can flexibly customize UXsim on your own.

Getting Started

As a simple example, the following code will simulate traffic flow in a Y-shaped network.

from uxsim import World

# Define the main simulation
# Units are standardized to seconds (s) and meters (m)
W = World(
    name="",    # Scenario name
    deltan=5,   # Simulation aggregation unit delta n
    tmax=1200,  # Total simulation time (s)
    print_mode=1, save_mode=1, show_mode=1,    # Various options
    random_seed=0    # Set the random seed
)

# Define the scenario
# Create nodes
W.addNode(name="orig1", x=0, y=0)  #xy coords are for visualization 
W.addNode(name="orig2", x=0, y=2)
W.addNode(name="merge", x=1, y=1)
W.addNode(name="dest", x=2, y=1)

# Create links between nodes
W.addLink(name="link1", start_node="orig1", end_node="merge", length=1000, free_flow_speed=20, number_of_lanes=1)
W.addLink(name="link2", start_node="orig2", end_node="merge", length=1000, free_flow_speed=20, number_of_lanes=1)
W.addLink(name="link3", start_node="merge", end_node="dest", length=1000, free_flow_speed=20, number_of_lanes=1)

# Create OD traffic demand between nodes
W.adddemand(orig="orig1", dest="dest", t_start=0, t_end=1000, flow=0.45)
W.adddemand(orig="orig2", dest="dest", t_start=400, t_end=1000, flow=0.6)

# Run the simulation to the end
W.exec_simulation()

# Print summary of simulation result
W.analyzer.print_simple_stats()

# Visualize snapshots of network traffic state for several timesteps
W.analyzer.network(t=100, detailed=1, network_font_size=12)
W.analyzer.network(t=600, detailed=1, network_font_size=12)
W.analyzer.network(t=800, detailed=1, network_font_size=12)

It will output text to the terminal and images to the out directory like below:

simulation setting:
 scenario name:
 simulation duration:    1200 s
 number of vehicles:     810 veh
 total road length:      3000 m
 time discret. width:    5 s
 platoon size:           5 veh
 number of timesteps:    240
 number of platoons:     162
 number of links:        3
 number of nodes:        4
 setup time:             0.00 s
simulating...
      time| # of vehicles| ave speed| computation time
       0 s|        0 vehs|   0.0 m/s|     0.00 s
     600 s|      130 vehs|  13.7 m/s|     0.03 s
    1195 s|       75 vehs|  12.3 m/s|     0.06 s
 simulation finished
results:
 average speed:  11.6 m/s
 number of completed trips:      735 / 810
 average travel time of trips:   162.6 s
 average delay of trips:         62.6 s
 delay ratio:                    0.385

Further Reading

To learn more about UXsim, please see:

Terms of Use & License

UXsim is released under the MIT License. You are free to use it as long as the source is acknowledged.

When publishing works based on UXsim, please cite:

@Article{seo2025joss,
  author    = {Toru Seo},
  journal   = {Journal of Open Source Software},
  title     = {{UXsim}: lightweight mesoscopic traffic flow simulator in pure {Python}},
  year      = {2025},
  number    = {106},
  pages     = {7617},
  volume    = {10},
  doi       = {10.21105/joss.07617},
  publisher = {The Open Journal},
  url       = {https://doi.org/10.21105/joss.07617},
}

If you need more detailed information, please also cite:

Works using UXsim are summarized on the Github Wiki page. Please feel free to edit.

Contributing and Discussion

Contributions are welcome! Please see the Contributing Guideline.

If you have any questions or suggestions, please post them to the Issues or Discussions (in English or Japanese).

I (Toru Seo) work on this project in my spare time. Please understand that my response may be delayed.

Acknowledgments

UXsim is based on various works in traffic flow theory and related fields. We acknowledge the contributions of the research community in advancing this field. Specifically, UXsim directly uses the following works:

Related Links

Project details


Download files

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

Source Distribution

uxsim-1.14.0b7.tar.gz (43.7 MB view details)

Uploaded Source

Built Distributions

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

uxsim-1.14.0b7-cp314-cp314-win_amd64.whl (5.6 MB view details)

Uploaded CPython 3.14Windows x86-64

uxsim-1.14.0b7-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.5 MB view details)

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

uxsim-1.14.0b7-cp314-cp314-macosx_11_0_universal2.whl (5.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ universal2 (ARM64, x86-64)

uxsim-1.14.0b7-cp313-cp313-win_amd64.whl (5.7 MB view details)

Uploaded CPython 3.13Windows x86-64

uxsim-1.14.0b7-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.5 MB view details)

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

uxsim-1.14.0b7-cp313-cp313-macosx_11_0_universal2.whl (5.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ universal2 (ARM64, x86-64)

uxsim-1.14.0b7-cp312-cp312-win_amd64.whl (5.7 MB view details)

Uploaded CPython 3.12Windows x86-64

uxsim-1.14.0b7-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.5 MB view details)

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

uxsim-1.14.0b7-cp312-cp312-macosx_11_0_universal2.whl (5.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ universal2 (ARM64, x86-64)

uxsim-1.14.0b7-cp311-cp311-win_amd64.whl (5.7 MB view details)

Uploaded CPython 3.11Windows x86-64

uxsim-1.14.0b7-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.5 MB view details)

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

uxsim-1.14.0b7-cp311-cp311-macosx_11_0_universal2.whl (5.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ universal2 (ARM64, x86-64)

uxsim-1.14.0b7-cp310-cp310-win_amd64.whl (5.7 MB view details)

Uploaded CPython 3.10Windows x86-64

uxsim-1.14.0b7-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

uxsim-1.14.0b7-cp310-cp310-macosx_11_0_universal2.whl (5.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ universal2 (ARM64, x86-64)

File details

Details for the file uxsim-1.14.0b7.tar.gz.

File metadata

  • Download URL: uxsim-1.14.0b7.tar.gz
  • Upload date:
  • Size: 43.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 uxsim-1.14.0b7.tar.gz
Algorithm Hash digest
SHA256 ca2d22eb9335ce247f004df0d434e39ade8a4687ebd30a0cb7033a7a1ebd4fb0
MD5 ff7665a4e5e828f2393614aa9eb507c9
BLAKE2b-256 f509fedb6a2e6c592a37000b9ccc5628ec8c5047abc6bc9fe8d2f4f9580a5449

See more details on using hashes here.

File details

Details for the file uxsim-1.14.0b7-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: uxsim-1.14.0b7-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uxsim-1.14.0b7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2573fe5f981621e104779e9a06f5cfbb481c97a7e29ce6cdde2ee963c6060ea2
MD5 35a16a235b5aafc991c1cc828cc6210e
BLAKE2b-256 59b894f5289c5a79d4e206056143f904ee1336c994671d658607881b1afa94b1

See more details on using hashes here.

File details

Details for the file uxsim-1.14.0b7-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: uxsim-1.14.0b7-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.14, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 uxsim-1.14.0b7-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ae7ce4bd4bddc03667f15352ab69dae620d0e3cc3634e73e9334996ead224cc1
MD5 81524d66c71a2b6b9adedef51d273708
BLAKE2b-256 131b993764d9cfe1223ed4b19313851840a8690f85908d6ca6a2fe7127899784

See more details on using hashes here.

File details

Details for the file uxsim-1.14.0b7-cp314-cp314-macosx_11_0_universal2.whl.

File metadata

  • Download URL: uxsim-1.14.0b7-cp314-cp314-macosx_11_0_universal2.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.14, macOS 11.0+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uxsim-1.14.0b7-cp314-cp314-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 15d3f1ec408de2624cbe3347218c637a96ea8cd1e0b1ee6aa29afff60a2edbc5
MD5 fd46ad531166b3c30c984bd4ff49dde8
BLAKE2b-256 40ef0c0c28a2a542704d07b5bfe18e2dff25e7b8c71c683382ff21cd5ee4c3c0

See more details on using hashes here.

File details

Details for the file uxsim-1.14.0b7-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: uxsim-1.14.0b7-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uxsim-1.14.0b7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 edcc0cef3aa6d1e0f9bd8f0d346d8ad9d10dc5360a467710f2c4b190f50fad9e
MD5 48a379021f8c2dec7a29c9fc7de5b7a4
BLAKE2b-256 bb93204646e1f536e608cb2feb48eff0d728734ac0486a537f75d00b9f875344

See more details on using hashes here.

File details

Details for the file uxsim-1.14.0b7-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: uxsim-1.14.0b7-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.13, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 uxsim-1.14.0b7-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9eb5e5138366d4006c5ffb001087540fac9c2d951c5f5b24b8d0dbe04fad01d4
MD5 a4f9b64f277031086faaf01f3642945d
BLAKE2b-256 45a2048de1b7b40c5d385cc0c7e539b8f88acfba30c265c0d92ecb2c1149b8c0

See more details on using hashes here.

File details

Details for the file uxsim-1.14.0b7-cp313-cp313-macosx_11_0_universal2.whl.

File metadata

  • Download URL: uxsim-1.14.0b7-cp313-cp313-macosx_11_0_universal2.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.13, macOS 11.0+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uxsim-1.14.0b7-cp313-cp313-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 81127429a95db94e7aa5100cc5acb040fb22a89f71cbae72d5a6f7ebe9aae46d
MD5 ef7d07b45c9562ab83c04095416d6675
BLAKE2b-256 ededdd60cc8b8123cfa8bcc2db1d4f8751a2e67011f24f7b6479a8202eb8445b

See more details on using hashes here.

File details

Details for the file uxsim-1.14.0b7-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: uxsim-1.14.0b7-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uxsim-1.14.0b7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7b55702c24730e5a1c3f41ca0ae4d4f32171cec16b7486cbfa1c238736aa7794
MD5 be1791e2154df48b65bac29d367ec0af
BLAKE2b-256 19212dae25b0a9b2e7bf3728f774f523b40428ae410eb314d8f23ff41e23bb80

See more details on using hashes here.

File details

Details for the file uxsim-1.14.0b7-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: uxsim-1.14.0b7-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.12, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 uxsim-1.14.0b7-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f67d884f4e73ef9a753add1cb39f1eb0d3b8db7846b0cb87399d8e8db2eb8cc4
MD5 b7da938f4e17f79adddda1da2a9600b4
BLAKE2b-256 8d9594e63ab6fc0ba3892a04143adc64c54eda567eed923342b797f6166f5f9f

See more details on using hashes here.

File details

Details for the file uxsim-1.14.0b7-cp312-cp312-macosx_11_0_universal2.whl.

File metadata

  • Download URL: uxsim-1.14.0b7-cp312-cp312-macosx_11_0_universal2.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.12, macOS 11.0+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uxsim-1.14.0b7-cp312-cp312-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 a0456dcf0475228587d29d75d6f14cad7f6f8186698431c08f487a06a79328f9
MD5 df1805a592a20e8d3512d61e8760d11c
BLAKE2b-256 34d4f1e83a468b85ce2ca648408be9eda0b5d779ec87e7220b62d7345f231ca1

See more details on using hashes here.

File details

Details for the file uxsim-1.14.0b7-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: uxsim-1.14.0b7-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uxsim-1.14.0b7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 511ab7e2b8c710fbee071cd39ea3aac485e9f526f59d51a8b2b9400cf6178728
MD5 45546135eab1cee146ab3b0e67eec084
BLAKE2b-256 d5224c00f0178394c548cc4b20219a065c46741fcc580d171bd6c1a365c70f0f

See more details on using hashes here.

File details

Details for the file uxsim-1.14.0b7-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: uxsim-1.14.0b7-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.11, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 uxsim-1.14.0b7-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f5e9eb35ce874a085c768f7d5d8041bf99d8b746ddfc5a247b9f3e3fe37083b2
MD5 c07bd048fe2461924addbad8c283777b
BLAKE2b-256 1861c363ff2f385d9b7ce8619c80557e94431b2a2e955db39cfade9ec3515843

See more details on using hashes here.

File details

Details for the file uxsim-1.14.0b7-cp311-cp311-macosx_11_0_universal2.whl.

File metadata

  • Download URL: uxsim-1.14.0b7-cp311-cp311-macosx_11_0_universal2.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.11, macOS 11.0+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uxsim-1.14.0b7-cp311-cp311-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 a7cfbdd3541477045d8d6c7504396e2005e86388126356fd43946d0d840d43c3
MD5 9dc79da85d12e5eb6aba0f2061007f76
BLAKE2b-256 a9509b1ca19724989ae45a969e9cbd68acd000ce763eed6a465bc7791f2e5b61

See more details on using hashes here.

File details

Details for the file uxsim-1.14.0b7-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: uxsim-1.14.0b7-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uxsim-1.14.0b7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8a4353127ac5d4f2fb8ee69533ad67673662902b220b26e7b8e7f8c42ee8b9c7
MD5 6cb005aea360fa8ae29da7b998fdb7fc
BLAKE2b-256 f090a863f5ff87d3e830d64feb8210b36303de8d8f75ffab69d0bb96fc677111

See more details on using hashes here.

File details

Details for the file uxsim-1.14.0b7-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: uxsim-1.14.0b7-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.10, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 uxsim-1.14.0b7-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 77f9bcfe57c72e243e9abe10a47c8d8ca5cc9753f0f87d6b257011ba7b751f56
MD5 4dd39e5d6eed9388526572368766631e
BLAKE2b-256 44281a461626c7d22370e3bbcadc14d5bd2ff2f89c16b7881754a8b36ba89ffa

See more details on using hashes here.

File details

Details for the file uxsim-1.14.0b7-cp310-cp310-macosx_11_0_universal2.whl.

File metadata

  • Download URL: uxsim-1.14.0b7-cp310-cp310-macosx_11_0_universal2.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.10, macOS 11.0+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uxsim-1.14.0b7-cp310-cp310-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 72ffefe82b2d06fe45085accec4acd691f1d39f8687adb23c7f0f58439dc6638
MD5 9318b4d8d661b029c98578cea886ddc5
BLAKE2b-256 f7bfb8d746909e14e4453567b716c54089d5ea0985cdd7606d04d9991aa6a00f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page