
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
A tool for generating time series data related to energy systems and building operations
A simple tool for generating time series data related to energy systems and building operations.
.. list-table:: :widths: auto
.. contents:: :depth: 1 :local: :backlinks: top
EnTiSe (En-ergy Ti-me Se-ries) is a Python package designed to generate realistic time series data for various energy systems and building operations. It provides a flexible, pipeline- and strategy-based approach to create time series for different applications including HVAC, domestic hot water, electricity, mobility, and occupancy patterns.
To get started, follow these steps:
Python <https://www.python.org/>
_ (3.10 or newer)Git <https://git-scm.com/>
_ for version control (optional, only for development)EnTiSe can be installed directly from PyPI:
.. code-block:: bash
pip install entise
For faster installation, you can use uv <https://github.com/astral-sh/uv>
_:
.. code-block:: bash
pip install uv uv pip install entise
For development or the latest features, you can install directly from the repository:
.. code-block:: bash
pip install git+https://github.com/tum-ens/need/entise.git
Or clone the repository and install in development mode:
.. code-block:: bash
git clone https://github.com/tum-ens/need/entise.git cd entise pip install -e ".[dev]"
Now you're ready to use EnTiSe! Check the examples directory for usage examples.
entise/: Main project code organized in a Python package.
tests/: Folder for tests; structured by functionality.
docs/: Documentation source files.
examples/: Example scripts demonstrating usage of the package.
EnTiSe provides two flexible ways to generate time series data:
Batch Processing
For generating multiple time series at once:
.. code-block:: python
from entise.core.generator import TimeSeriesGenerator
# Initialize the generator
gen = TimeSeriesGenerator()
# Add objects (e.g., buildings)
gen.add_objects({
"id": "building1",
"hvac": "1R1C",
"resistance": 2.0,
"capacitance": 1e5,
"temp_min": 20.0,
"temp_max": 24.0,
})
# Prepare input data (e.g., weather)
data = {
"weather": pd.DataFrame({
"temp_out": [0.0] * 24,
}, index=pd.date_range("2025-01-01", periods=24, freq="h"))
}
# Generate time series
summary, df = gen.generate(data)
Direct Method Access
For working with individual methods directly:
.. code-block:: python
from entise.methods.pv import PVLib
pvlib = PVLib()
result = pvlib.generate( latitude=48.1, longitude=11.6, power=5000, weather=weather_df )
summary = result["summary"] timeseries = result["timeseries"]
For more detailed examples, check the examples
directory.
EnTiSe supports generating time series for the following types:
Integrated:
Planned:
Please see the documentation <https://entise.readthedocs.io>
_ for further information.
Everyone is invited to develop this repository.
Please follow the workflow described in the CONTRIBUTING.md <CONTRIBUTING.md>
_.
This repository follows consistent coding styles. Refer to CONTRIBUTING.md <CONTRIBUTING.md>
_ for detailed standards.
The changelog is maintained in the CHANGELOG.md <CHANGELOG.md>
_ file.
It lists all changes made to the repository.
Follow instructions there to document any updates.
| The code of this repository is licensed under the MIT License (MIT).
| See LICENSE <LICENSE>
_ for rights and obligations.
| See CITATION.cff <CITATION.cff>
_ for citation of this repository.
| Copyright: EnTiSe <https://gitlab.lrz.de/tum-ens/need/entise>
_ (c) TU Munich - ENS <https://www.epe.ed.tum.de/en/ens/homepage/>
_ | MIT <LICENSE>
_
.. |badge_license| image:: https://img.shields.io/badge/license-MIT-blue :target: LICENSE :alt: License
.. |badge_documentation| image:: https://img.shields.io/badge/docs-available-brightgreen :target: https://gitlab.lrz.de/tum-ens/need/entise :alt: Documentation
.. |badge_contributing| image:: https://img.shields.io/badge/contributions-welcome-brightgreen :target: CONTRIBUTING.md :alt: contributions
.. |badge_contributors| image:: https://img.shields.io/badge/contributors-0-orange :alt: contributors
.. |badge_repo_counts| image:: https://img.shields.io/badge/repo-count-brightgreen :alt: repository counter
.. |badge_issue_open| image:: https://img.shields.io/badge/issues-open-blue :target: https://gitlab.lrz.de/tum-ens/need/entise/-/issues :alt: open issues
.. |badge_issue_closes| image:: https://img.shields.io/badge/issues-closed-green :target: https://gitlab.lrz.de/tum-ens/need/entise/-/issues :alt: closed issues
.. |badge_pr_open| image:: https://img.shields.io/badge/merge_requests-open-blue :target: https://gitlab.lrz.de/tum-ens/need/entise/-/merge_requests :alt: open merge requests
.. |badge_pr_closes| image:: https://img.shields.io/badge/merge_requests-closed-green :target: https://gitlab.lrz.de/tum-ens/need/entise/-/merge_requests :alt: closed merge requests
.. |badge_pypi| image:: https://img.shields.io/pypi/v/entise :target: https://pypi.org/project/entise/ :alt: PyPI
.. |badge_python| image:: https://img.shields.io/pypi/pyversions/entise :target: https://pypi.org/project/entise/ :alt: Python Version
.. |badge_github_actions| image:: https://github.com/tum-ens/need/entise/actions/workflows/python-package.yml/badge.svg :target: https://github.com/tum-ens/need/entise/actions/workflows/python-package.yml :alt: GitHub Actions
.. |badge_gitlab_ci| image:: https://gitlab.lrz.de/tum-ens/need/entise/badges/main/pipeline.svg :target: https://gitlab.lrz.de/tum-ens/need/entise/-/pipelines :alt: GitLab CI
FAQs
A tool for generating time series data related to energy systems and building operations
We found that entise demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.