Skip to main content

SimPy is a process-based discrete-event simulation framework based on standard Python. Processes in SimPy are defined by Python generator functions and can, for example, be used to model active components like customers, vehicles or agents. SimPy also provides various types of shared resources to model limited capacity congestion points (like servers, checkout counters and tunnels).

Simulations can be performed “as fast as possible”, in real time (wall clock time) or by manually stepping through the events.

Though it is theoretically possible to do continuous simulations with SimPy, it has no features that help you with that. Also, SimPy is not really required for simulations with a fixed step size and where your processes don’t interact with each other or with shared resources.

The documentation contains a tutorial, several guides explaining key concepts, a number of examples and the API reference.

SimPy is released under the MIT License. Simulation model developers are encouraged to share their SimPy modeling techniques with the SimPy community. Please post a message to the SimPy mailing list.

There is an introductory talk that explains SimPy’s concepts and provides some examples: watch the video or get the slides.

A Simple Example

One of SimPy’s main goals is to be easy to use. Here is an example for a simple SimPy simulation: a clock process that prints the current simulation time at each step:

>>> import simpy
>>>
>>> def clock(env, name, tick):
...     while True:
...         print(name, env.now)
...         yield env.timeout(tick)
...
>>> env = simpy.Environment()
>>> env.process(clock(env, 'fast', 0.5))
<Process(clock) object at 0x...>
>>> env.process(clock(env, 'slow', 1))
<Process(clock) object at 0x...>
>>> env.run(until=2)
fast 0
slow 0
fast 0.5
slow 1
fast 1.0
fast 1.5

Installation

SimPy requires Python >= 3.8, both CPython and PyPy3 are known to work.

You can install SimPy easily via pip:

$ python -m pip install simpy

You can also download and install SimPy manually:

$ cd where/you/put/simpy/
$ python -m build
$ python -m pip install dist/simpy-*.whl

To run SimPy’s test suite on your installation, execute:

$ python -m tox

Getting started

If you’ve never used SimPy before, the SimPy tutorial is a good starting point for you. You can also try out some of the Examples shipped with SimPy.

Documentation and Help

You can find a tutorial, examples, topical guides and an API reference, as well as some information about SimPy and its history in our online documentation. For more help, contact the SimPy mailing list. SimPy users are pretty helpful. You can, of course, also dig through the source code.

If you find any bugs, please post them on our issue tracker.

Enjoy simulation programming in SimPy!

Ports and comparable libraries

Re-implementations of SimPy and libraries similar to SimPy are available in the following languages:

Release files for simpy 4.1.2

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for simpy 4.1.2
File Size Uploaded
simpy-4.1.2.tar.gz 410.1 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for simpy 4.1.2
File Interpreter ABI Platform
simpy-4.1.2-py3-none-any.whl Python 3 none any Details

Total release size: 437.5 kB

Release files / simpy-4.1.2.tar.gz

Download URL simpy-4.1.2.tar.gz
Size 410.1 kB
Tags Source
SHA-256 checksum
How to use checksums
76ef36b71e0436ba94e55febc001c78879e493a323f045bbcfbb0b216e9b1fbc
BLAKE2b-256 checksum
How to use checksums
4a38fb393d1a5c2f35b65609e8d3c39d1508ada6a767c7e624ffa16ed3e84ffd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.5

Release files / simpy-4.1.2-py3-none-any.whl

Download URL simpy-4.1.2-py3-none-any.whl
Size 27.4 kB
Tags Python 3
SHA-256 checksum
How to use checksums
43071f84b6512c9b4fcb33ef057f240ccb1d1f3b263f9b4f9229d072e310b372
BLAKE2b-256 checksum
How to use checksums
eeed07a1e054922c16b2c18ca3598771936c344d52337b8aaf0f1e3ed8b223dc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.5

Release history Release notifications | RSS feed

This release

4.1.2 This release

2 release files

4.1.1

2 release files

4.1.0

2 release files

4.0.2

2 release files

4.0.1

2 release files

4.0.0

2 release files

3.0.12

2 release files

3.0.11

2 release files

3.0.10

2 release files

3.0.9

2 release files

3.0.8

2 release files

3.0.7

2 release files

3.0.6

1 release file

3.0.5

2 release files

3.0.4

2 release files

3.0.3

2 release files

3.0.2

2 release files

3.0.1

2 release files

3.0

2 release files

2.3.1

2 release files

2.3

2 release files

2.2

2 release files

2.1.0

2 release files

2.0.1

2 release 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