Skip to main content

Event discrete, process based simulation for Python.

Project description

Project logo

ci pypi read-the-docs

Welcome to Py-DES

py-des is a Python package designed to simplify the process of discrete event simulation, providing users with an intuitive and efficient framework for modeling and analyzing complex systems. Built upon the principles of simplicity, flexibility, and performance, py-des aims to offer a streamlined solution for simulation tasks across various domains, including operations research, computer science, and manufacturing.

Key Principles

  • Simplicity: py-des prioritizes ease of use, allowing users to quickly define simulation models and scenarios without unnecessary complexity.

  • Flexibility: With py-des, users have the flexibility to customize simulation through the usage of predefined and custom Components. From simple simulations to complex scenarios involving multiple entities and interactions, py-des adapts to diverse use cases with ease.

Getting Started

To begin using py-des, simply install the package via pip (coming soon):

pip install py-des-lib

First define your main process extending the Component and defining a main method. First define your main process extending the Component and defining a main method.

from pydes import Component, Simulator

class Process(Component):
    def __init__(self, sim: Simulator):
        self.sim = sim

    def main(self):
        for _ in range(10):
            self.sim.record(self.id, "start waiting")
            self.sim.record(self.id, "start waiting")
            self.sim.sleep(2)
            self.sim.record(self.id, "end waiting")
            self.sim.record(self.id, "end waiting")

Now schedule the main process object and run simulation

sim = Simulator()
p = Process(sim)
sim.schedule(p)
sim.run()

Start your journey looking at the documentation in the quick-start section or check out the examples for guidance on how to create simulation environments, schedule events, and analyze simulation outcomes. Start your journey looking at the documentation in the quick-start section or check out the examples for guidance on how to create simulation environments, schedule events, and analyze simulation outcomes.

Feedback and Support

If you have any questions, suggestions, or feedback regarding py-des, feel free to reach out via GitHub issues or the official communication channels. Your input is invaluable in shaping the future development of the library and ensuring that it meets the needs of its users.

Todos/Ideas

  • more docs
  • add simulation speed
  • add predefined records on components
  • add components: Server, Source, Sink ...
  • add a Network module with nodes and 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

py_des_lib-0.1.3.tar.gz (10.2 kB view details)

Uploaded Source

Built Distribution

py_des_lib-0.1.3-py3-none-any.whl (10.6 kB view details)

Uploaded Python 3

File details

Details for the file py_des_lib-0.1.3.tar.gz.

File metadata

  • Download URL: py_des_lib-0.1.3.tar.gz
  • Upload date:
  • Size: 10.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for py_des_lib-0.1.3.tar.gz
Algorithm Hash digest
SHA256 650b94d21ce09054cef98ce0d0af69e4977288849159372c85b1d2df2b857c41
MD5 1d4981e207ce39344a964f6a71fa87b9
BLAKE2b-256 e6ce0ffb7b36b79ec551cc6318c48d68222b244d13d118bdbc3069b1c52a67c9

See more details on using hashes here.

File details

Details for the file py_des_lib-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: py_des_lib-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 10.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for py_des_lib-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 f62e9249a55f45ae4e93f82374b2260db294dc7696dc330c27d97c13725ad6e4
MD5 984f40513537b572c100b019daccaf12
BLAKE2b-256 0ac69ac2482b1e79a79622765708436b0f90e40f30e7274441f1e5694662a2ad

See more details on using hashes here.

Supported by

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