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.0b8.tar.gz (43.9 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.0b8-cp314-cp314-win_amd64.whl (5.8 MB view details)

Uploaded CPython 3.14Windows x86-64

uxsim-1.14.0b8-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.7 MB view details)

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

uxsim-1.14.0b8-cp314-cp314-macosx_11_0_universal2.whl (5.7 MB view details)

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

uxsim-1.14.0b8-cp313-cp313-win_amd64.whl (5.8 MB view details)

Uploaded CPython 3.13Windows x86-64

uxsim-1.14.0b8-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.7 MB view details)

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

uxsim-1.14.0b8-cp313-cp313-macosx_11_0_universal2.whl (5.7 MB view details)

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

uxsim-1.14.0b8-cp312-cp312-win_amd64.whl (5.8 MB view details)

Uploaded CPython 3.12Windows x86-64

uxsim-1.14.0b8-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.7 MB view details)

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

uxsim-1.14.0b8-cp312-cp312-macosx_11_0_universal2.whl (5.7 MB view details)

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

uxsim-1.14.0b8-cp311-cp311-win_amd64.whl (5.8 MB view details)

Uploaded CPython 3.11Windows x86-64

uxsim-1.14.0b8-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.7 MB view details)

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

uxsim-1.14.0b8-cp311-cp311-macosx_11_0_universal2.whl (5.7 MB view details)

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

uxsim-1.14.0b8-cp310-cp310-win_amd64.whl (5.8 MB view details)

Uploaded CPython 3.10Windows x86-64

uxsim-1.14.0b8-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.7 MB view details)

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

uxsim-1.14.0b8-cp310-cp310-macosx_11_0_universal2.whl (5.7 MB view details)

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

File details

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

File metadata

  • Download URL: uxsim-1.14.0b8.tar.gz
  • Upload date:
  • Size: 43.9 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.0b8.tar.gz
Algorithm Hash digest
SHA256 1f91c1bb1478ed975ac5378cb6299fe6eda771f782d6413b8e603659982dbbf4
MD5 c39cf1c7b82495ae46881b2ea8a45384
BLAKE2b-256 03b95ce5af196c37d4ab33fde9046dfc887679255556934a179bf1df355a60ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uxsim-1.14.0b8-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 5.8 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.0b8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 19f36031737c69de807e4b45b80779a9ce602b7c8db7ccfd3abc8433bde3c953
MD5 3ecefc684fe81f4ebfb6080775fef026
BLAKE2b-256 8cd3986a2fef36b661562fd28c0769cb60db163cd9b5e4e0b52bbb5f2b51e56e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uxsim-1.14.0b8-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 5.7 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.0b8-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7806495ff46fb0e90a05cb42658fef54df32fb7660577c1322e25d935df9b93c
MD5 1094c600790aab3d7d2a33662b0543c8
BLAKE2b-256 e125b24e9fbcca2ded4ab567903aefdbaa524abfca9a5a610e564d37bc376f77

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uxsim-1.14.0b8-cp314-cp314-macosx_11_0_universal2.whl
  • Upload date:
  • Size: 5.7 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.0b8-cp314-cp314-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 a3426e6c68860ff5ea9db14e8cedb35548d01c2729eaa5b770ced8300da960d3
MD5 1a69c1d83de3786819d68d4c943abc56
BLAKE2b-256 51c735a5165fb067f867987de85db8d1c0b33c1ac27978f2aea91dfe6165c532

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uxsim-1.14.0b8-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 5.8 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.0b8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a93367fdc1220cf9a2d208df14451435d77079609bf5ff6c64072db7f37b54b9
MD5 203255a05fa5370ded2c2c95b8639223
BLAKE2b-256 ca8d6a3fa5a4d6e4e82285dcfde4cd178419507acf78e72664a52d814ee0fffa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uxsim-1.14.0b8-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 5.7 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.0b8-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 569cfcac398ba7c9b1c727922ad071a6de6fd592a74143d160f487e649a11ae5
MD5 292520df7f0569cc2fd9cb9562ede46e
BLAKE2b-256 630f62bbbb6e95c374e36f6fd8f4964a2a0a7da5c50a18ce2f63c920572fcc1b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uxsim-1.14.0b8-cp313-cp313-macosx_11_0_universal2.whl
  • Upload date:
  • Size: 5.7 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.0b8-cp313-cp313-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 9dbb99fa81e3b2fc7f552e8206c719c13836bca0ca46cc165586c7d24fc90471
MD5 82b63eef0a34beab9ed8aea603857d4b
BLAKE2b-256 fc5b1fdfb17771171e3d9f975f68d4809d2c86b0ee4ad9111e7a7f93b58a8cb3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uxsim-1.14.0b8-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 5.8 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.0b8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 15bf849915bae398591b218cff69a13fa544bba6413ec14b47457bd1c97a3d80
MD5 0c8affcc2a2811ed7ba18fb62278a6b5
BLAKE2b-256 3e915765320b6b382928425a76ccfbb468c398b337d637ce0e108d502db3d00b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uxsim-1.14.0b8-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 5.7 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.0b8-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2324f86537b40511f145fa27299d1fe4f4428a049d3520a5d6ad74a8ac310d15
MD5 65e661b9dc15559bfc1e725864bb84c1
BLAKE2b-256 077c8a210207119801b5d7d77a5c597abc577f90d2045ff122ac7bb7e236a1a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uxsim-1.14.0b8-cp312-cp312-macosx_11_0_universal2.whl
  • Upload date:
  • Size: 5.7 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.0b8-cp312-cp312-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 4e5394be5f11e0ab206210964b362612938e5dc069065c6b63da80a63be4f10b
MD5 0bbb58b2b78ec1af49ed5899f30394eb
BLAKE2b-256 aecad7047fa26505894575383446f4c5b3b11873cd996744cedc920a98e575d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uxsim-1.14.0b8-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 5.8 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.0b8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 aa67cfd8202257a01eae35bf11d1c0b82885de910c45108f8c4e47fb9512fd2d
MD5 797386f7431bed5b23d74048a2e51575
BLAKE2b-256 22688e8ad1b59835e1ee5882f1939d2a454ab88d0afc7c5516fdf9615865d4e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uxsim-1.14.0b8-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 5.7 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.0b8-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 710b6d7a0471c305db9564a7fe1a3444af4ac11f26e058e6a4dce77f2748773c
MD5 8e2c8f92d40aeea1c090c3222490fc84
BLAKE2b-256 d6f0dca9e0c14eaa4b17dbcec898d60d7c2a32ca7a27551063fd409646b3bc0e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uxsim-1.14.0b8-cp311-cp311-macosx_11_0_universal2.whl
  • Upload date:
  • Size: 5.7 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.0b8-cp311-cp311-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 ac954f7f27e512a09027421ed4238ec654554fbdd79ed5802132506558c0e71f
MD5 5d641d356162566ee9ace569acd69455
BLAKE2b-256 e385c36b4384276fc2849b644c442498804b95752c13feb34a607eac9df51b7c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uxsim-1.14.0b8-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 5.8 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.0b8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 90301946aafaf8eb1d8f5adc2885c3158ef0cf7141c8cc72d36d06cfced1b11c
MD5 f5d3a6da5987a91129416ca3dbf28e41
BLAKE2b-256 96c6ce6eea85416d857b8624849d5cc9e02090e5e4d9e360d2e75134281d1e8f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uxsim-1.14.0b8-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 5.7 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.0b8-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bda1e2875d6bc15f6703a036039d7cf55cc442c4ae3b059e6ddbf298bdd3ba3e
MD5 b55137e327d44f7088c65b082fe6c63c
BLAKE2b-256 c3e923a7379cc0a28df20e702f7b847a032908e5a9e57720b6dbef63498e66af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uxsim-1.14.0b8-cp310-cp310-macosx_11_0_universal2.whl
  • Upload date:
  • Size: 5.7 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.0b8-cp310-cp310-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 074ee9e613793df96f334303991a9910091bb99c2096d4fd3e720930113e75bc
MD5 44c75f9b0c0e24798e305661f7226182
BLAKE2b-256 bf1870472cbf77d60182bc719bc821c553d95f9993ccfa017f1abd2d3ecf47d0

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