fastsim


Namefastsim JSON
Version 2.1.3 PyPI version JSON
download
home_pagehttps://www.nrel.gov/transportation/fastsim.html
SummaryTool for modeling vehicle powertrains
upload_time2024-12-17 23:26:41
maintainerNone
docs_urlNone
authorNREL/MTES/CIMS/MBAP Group <fastsim@nrel.gov>
requires_python<3.11,>=3.8
licenseApache-2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # FASTSim

<img src="https://raw.githubusercontent.com/NREL/fastsim/refs/heads/fastsim-2/docs/assets/fastsim-icon.svg" height="200">

[![homepage](https://img.shields.io/badge/homepage-fastsim-blue)](https://www.nrel.gov/transportation/fastsim.html) [![tests](https://github.com/NREL/fastsim/actions/workflows/tests.yaml/badge.svg)](https://github.com/NREL/fastsim/actions/workflows/tests.yaml) [![wheels](https://github.com/NREL/fastsim/actions/workflows/wheels.yaml/badge.svg)](https://github.com/NREL/fastsim/actions/workflows/wheels.yaml?event=release) [![python](https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10-blue)](https://pypi.org/project/fastsim/) [![documentation](https://img.shields.io/badge/documentation-book-blue.svg)](https://nrel.github.io/fastsim/) [![github](https://img.shields.io/badge/github-fastsim-blue.svg)](https://github.com/NREL/fastsim)

## Description

This is the python/rust flavor of [NREL's FASTSim<sup>TM</sup>](https://www.nrel.gov/transportation/fastsim.html), which is based on the original Excel implementation. Effort will be made to keep the core methodology between this software and the Excel flavor in line with one another.

All classes and methods are self-documented.  

## Installation

### Python

Set up and activate a python environment (compatible with Python 3.8 - 3.10; we recommend Python 3.10) with the following steps.

#### [Anaconda](https://www.anaconda.com/)

1. Create: `conda create -n fastsim python=3.10`
1. Activate: `conda activate fastsim`

#### [venv](https://docs.python.org/3/library/venv.html)

There is some variation based on your Operating System:  

- PowerShell (windows):
    1. Create: `python -m venv fastsim-venv` -- name is user decision
    1. Activate: `fastsim-venv/Scripts/Activate.ps1`

- Bash (i.e. unix/linux/mac):
    1. Create: `python -m venv fastsim-venv` -- name is user decision
    1. Activate: `source fastsim-venv/bin/activate`

- Command Prompt (windows):
    1. Create: `python -m venv fastsim-venv` -- name is user decision
    1. Activate: `fastsim-venv/Scripts/activate.bat`

### FASTSim

#### Via PyPI

In an active Python environment created above, run `pip install fastsim`.

#### Building from Scratch

Developers might want to install the code in place so that FASTSim files can be editable (the `-e` flag for pip provides this behavior). This option can be handy since FASTSim will be installed in place from the installation location and any updates will be propagated each time FASTSim is freshly imported.  To do this, you'll need to have the [Rust toolchain](https://www.rust-lang.org/tools/install) installed.

- Option 1: run `sh build_and_test.sh` in root folder.  
- Option 2:  
    1. Run `pip install -e ".[dev]"`  
    Optional testing steps:
    1. Run `cd rust/ && cargo test`
    1. Run `pytest -v python/fastsim/tests/`

## Usage

To see and run examples, download the FASTSim demo files using the following code (with your Python environment activated and FASTSim installed):
```python
from fastsim import utils  
utils.copy_demo_files()
```
This code downloads demo files into a specified local directory (if no directory is specified, it will create a `\demos` folder in the current working directory). WARNING: If you download the demo files to a location where files of the same name already exist, the original files will be overwritten.  

## Adding FASTSim as a Dependency in Rust

### Via GitHub

Add this line:

```
fastsim-core = { git = "https://github.com/NREL/fastsim/", branch = "fastsim-2" }
```

to your Cargo.toml file, modifying the `branch` key as appropriate.  

### Via Cargo

FASTSim is [available as a Rust crate](https://crates.io/crates/fastsim-core), which can be added to your dependencies via the following command:

```
cargo add fastsim-core
```

## List of Abbreviations

cur = current time step  
prev = previous time step  
cyc = drive cycle  
secs = seconds  
mps = meters per second  
mph = miles per hour  
kw = kilowatts, unit of power  
kwh = kilowatt-hour, unit of energy  
kg = kilograms, unit of mass  
max = maximum  
min = minimum  
avg = average  
fs = fuel storage (eg. gasoline/diesel tank, pressurized hydrogen tank)  
fc = fuel converter (eg. internal combustion engine, fuel cell)  
mc = electric motor/generator and controller  
ess = energy storage system (eg. high voltage traction battery)  
chg = charging of a component  
dis = discharging of a component  
lim = limit of a component  
regen = associated with regenerative braking  
des = desired value  
ach = achieved value  
in = component input  
out = component output  

## Contributors  

Chad Baker -- <Chad.Baker@nrel.gov>  
Aaron Brooker -- <Aaron.Brooker@nrel.gov>  
Kyle Carow -- <Kyle.Carow@nrel.gov>  
Robin Steuteville -- <Robin.Steuteville@nrel.gov>  
Jeffrey Gonder -- <Jeff.Gonder@nrel.gov>  
Jacob Holden -- <Jacob.Holden@nrel.gov>  
Jinghu Hu -- <Jinghu.Hu@nrel.gov>  
Jason Lustbader -- <Jason.Lustbader@nrel.gov>  
Sean Lopp -- <sean@rstudio.com>  
Matthew Moniot -- <Matthew.Moniot@nrel.gov>  
Grant Payne -- <Grant.Payne@nrel.gov>  
Laurie Ramroth -- <lramroth@ford.com>  
Eric Wood -- <Eric.Wood@nrel.gov>  


            

Raw data

            {
    "_id": null,
    "home_page": "https://www.nrel.gov/transportation/fastsim.html",
    "name": "fastsim",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<3.11,>=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": "NREL/MTES/CIMS/MBAP Group <fastsim@nrel.gov>",
    "author_email": "NREL/MTES/CIMS/MBAP Group <fastsim@nrel.gov>",
    "download_url": null,
    "platform": null,
    "description": "# FASTSim\n\n<img src=\"https://raw.githubusercontent.com/NREL/fastsim/refs/heads/fastsim-2/docs/assets/fastsim-icon.svg\" height=\"200\">\n\n[![homepage](https://img.shields.io/badge/homepage-fastsim-blue)](https://www.nrel.gov/transportation/fastsim.html) [![tests](https://github.com/NREL/fastsim/actions/workflows/tests.yaml/badge.svg)](https://github.com/NREL/fastsim/actions/workflows/tests.yaml) [![wheels](https://github.com/NREL/fastsim/actions/workflows/wheels.yaml/badge.svg)](https://github.com/NREL/fastsim/actions/workflows/wheels.yaml?event=release) [![python](https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10-blue)](https://pypi.org/project/fastsim/) [![documentation](https://img.shields.io/badge/documentation-book-blue.svg)](https://nrel.github.io/fastsim/) [![github](https://img.shields.io/badge/github-fastsim-blue.svg)](https://github.com/NREL/fastsim)\n\n## Description\n\nThis is the python/rust flavor of [NREL's FASTSim<sup>TM</sup>](https://www.nrel.gov/transportation/fastsim.html), which is based on the original Excel implementation. Effort will be made to keep the core methodology between this software and the Excel flavor in line with one another.\n\nAll classes and methods are self-documented.  \n\n## Installation\n\n### Python\n\nSet up and activate a python environment (compatible with Python 3.8 - 3.10; we recommend Python 3.10) with the following steps.\n\n#### [Anaconda](https://www.anaconda.com/)\n\n1. Create: `conda create -n fastsim python=3.10`\n1. Activate: `conda activate fastsim`\n\n#### [venv](https://docs.python.org/3/library/venv.html)\n\nThere is some variation based on your Operating System:  \n\n- PowerShell (windows):\n    1. Create: `python -m venv fastsim-venv` -- name is user decision\n    1. Activate: `fastsim-venv/Scripts/Activate.ps1`\n\n- Bash (i.e. unix/linux/mac):\n    1. Create: `python -m venv fastsim-venv` -- name is user decision\n    1. Activate: `source fastsim-venv/bin/activate`\n\n- Command Prompt (windows):\n    1. Create: `python -m venv fastsim-venv` -- name is user decision\n    1. Activate: `fastsim-venv/Scripts/activate.bat`\n\n### FASTSim\n\n#### Via PyPI\n\nIn an active Python environment created above, run `pip install fastsim`.\n\n#### Building from Scratch\n\nDevelopers might want to install the code in place so that FASTSim files can be editable (the `-e` flag for pip provides this behavior). This option can be handy since FASTSim will be installed in place from the installation location and any updates will be propagated each time FASTSim is freshly imported.  To do this, you'll need to have the [Rust toolchain](https://www.rust-lang.org/tools/install) installed.\n\n- Option 1: run `sh build_and_test.sh` in root folder.  \n- Option 2:  \n    1. Run `pip install -e \".[dev]\"`  \n    Optional testing steps:\n    1. Run `cd rust/ && cargo test`\n    1. Run `pytest -v python/fastsim/tests/`\n\n## Usage\n\nTo see and run examples, download the FASTSim demo files using the following code (with your Python environment activated and FASTSim installed):\n```python\nfrom fastsim import utils  \nutils.copy_demo_files()\n```\nThis code downloads demo files into a specified local directory (if no directory is specified, it will create a `\\demos` folder in the current working directory). WARNING: If you download the demo files to a location where files of the same name already exist, the original files will be overwritten.  \n\n## Adding FASTSim as a Dependency in Rust\n\n### Via GitHub\n\nAdd this line:\n\n```\nfastsim-core = { git = \"https://github.com/NREL/fastsim/\", branch = \"fastsim-2\" }\n```\n\nto your Cargo.toml file, modifying the `branch` key as appropriate.  \n\n### Via Cargo\n\nFASTSim is [available as a Rust crate](https://crates.io/crates/fastsim-core), which can be added to your dependencies via the following command:\n\n```\ncargo add fastsim-core\n```\n\n## List of Abbreviations\n\ncur = current time step  \nprev = previous time step  \ncyc = drive cycle  \nsecs = seconds  \nmps = meters per second  \nmph = miles per hour  \nkw = kilowatts, unit of power  \nkwh = kilowatt-hour, unit of energy  \nkg = kilograms, unit of mass  \nmax = maximum  \nmin = minimum  \navg = average  \nfs = fuel storage (eg. gasoline/diesel tank, pressurized hydrogen tank)  \nfc = fuel converter (eg. internal combustion engine, fuel cell)  \nmc = electric motor/generator and controller  \ness = energy storage system (eg. high voltage traction battery)  \nchg = charging of a component  \ndis = discharging of a component  \nlim = limit of a component  \nregen = associated with regenerative braking  \ndes = desired value  \nach = achieved value  \nin = component input  \nout = component output  \n\n## Contributors  \n\nChad Baker -- <Chad.Baker@nrel.gov>  \nAaron Brooker -- <Aaron.Brooker@nrel.gov>  \nKyle Carow -- <Kyle.Carow@nrel.gov>  \nRobin Steuteville -- <Robin.Steuteville@nrel.gov>  \nJeffrey Gonder -- <Jeff.Gonder@nrel.gov>  \nJacob Holden -- <Jacob.Holden@nrel.gov>  \nJinghu Hu -- <Jinghu.Hu@nrel.gov>  \nJason Lustbader -- <Jason.Lustbader@nrel.gov>  \nSean Lopp -- <sean@rstudio.com>  \nMatthew Moniot -- <Matthew.Moniot@nrel.gov>  \nGrant Payne -- <Grant.Payne@nrel.gov>  \nLaurie Ramroth -- <lramroth@ford.com>  \nEric Wood -- <Eric.Wood@nrel.gov>  \n\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "Tool for modeling vehicle powertrains",
    "version": "2.1.3",
    "project_urls": {
        "Homepage": "https://www.nrel.gov/transportation/fastsim.html"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "344dd7718fd9a718fc4cd9cc64bec07fd16119d97dc6e158f1a4801b5f32564c",
                "md5": "dfdf27ac5fac9e8994090851c7fa0421",
                "sha256": "e8538b31304b4d77fc006168b764e6141aa628f17d300470a2f940dd974eaec2"
            },
            "downloads": -1,
            "filename": "fastsim-2.1.3-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dfdf27ac5fac9e8994090851c7fa0421",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.11,>=3.8",
            "size": 9680945,
            "upload_time": "2024-12-17T23:26:41",
            "upload_time_iso_8601": "2024-12-17T23:26:41.517064Z",
            "url": "https://files.pythonhosted.org/packages/34/4d/d7718fd9a718fc4cd9cc64bec07fd16119d97dc6e158f1a4801b5f32564c/fastsim-2.1.3-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7ee642a514db0bdae7e936ad7371a327c7a214c0f381e08a70ccc4bbfb81e7ea",
                "md5": "fe808322717f5ec455b5f0405b86a51e",
                "sha256": "8044c2ed27a262bb72000ba88668ff49f08a7e1c9362692962d6e85e52573ffa"
            },
            "downloads": -1,
            "filename": "fastsim-2.1.3-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fe808322717f5ec455b5f0405b86a51e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.11,>=3.8",
            "size": 9399887,
            "upload_time": "2024-12-17T23:26:44",
            "upload_time_iso_8601": "2024-12-17T23:26:44.366028Z",
            "url": "https://files.pythonhosted.org/packages/7e/e6/42a514db0bdae7e936ad7371a327c7a214c0f381e08a70ccc4bbfb81e7ea/fastsim-2.1.3-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "671461259cd721a7e2b2c81310b3021acf4115fcae4c8fdcebc7f5f9934e9d0a",
                "md5": "8e2a4d0047ae47535c776159422355d0",
                "sha256": "d861ac7a386ac2a1cee5cca19e219b1b03ace5c5eb64742c60ae0aa8965af291"
            },
            "downloads": -1,
            "filename": "fastsim-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8e2a4d0047ae47535c776159422355d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.11,>=3.8",
            "size": 12088539,
            "upload_time": "2024-12-17T23:26:47",
            "upload_time_iso_8601": "2024-12-17T23:26:47.305173Z",
            "url": "https://files.pythonhosted.org/packages/67/14/61259cd721a7e2b2c81310b3021acf4115fcae4c8fdcebc7f5f9934e9d0a/fastsim-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f594887a6a73de31dbaefd059c72cefd2b09ab74b23bcc6832d20dabd8302f6a",
                "md5": "9429464b4311066acc5a054127651824",
                "sha256": "eb8ce5c7de7dec3b8536be860361eb3d832083798f1726881096ba773bc61c54"
            },
            "downloads": -1,
            "filename": "fastsim-2.1.3-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9429464b4311066acc5a054127651824",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.11,>=3.8",
            "size": 10620109,
            "upload_time": "2024-12-17T23:26:53",
            "upload_time_iso_8601": "2024-12-17T23:26:53.026700Z",
            "url": "https://files.pythonhosted.org/packages/f5/94/887a6a73de31dbaefd059c72cefd2b09ab74b23bcc6832d20dabd8302f6a/fastsim-2.1.3-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a2795699aeb81c8e4a10fa2967875b7089bf2a886770b05cc01f52c7d2c996e6",
                "md5": "71dbc38560fcc556cd3fb0a2e9a87343",
                "sha256": "bd26b945d104b2f2faf45ba317be6f16b09753a264620bee826789435069f61c"
            },
            "downloads": -1,
            "filename": "fastsim-2.1.3-cp38-cp38-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "71dbc38560fcc556cd3fb0a2e9a87343",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.11,>=3.8",
            "size": 9681310,
            "upload_time": "2024-12-17T23:26:55",
            "upload_time_iso_8601": "2024-12-17T23:26:55.716741Z",
            "url": "https://files.pythonhosted.org/packages/a2/79/5699aeb81c8e4a10fa2967875b7089bf2a886770b05cc01f52c7d2c996e6/fastsim-2.1.3-cp38-cp38-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b027dba6325a4ea4f3ef847d336bc8324bb854f12a6f6d4322a5c312e28ed359",
                "md5": "84553865c57c7484b38aa177e35795e0",
                "sha256": "390193291464cf7b38c33c965d0c027b8884ba6599b7e8d228240644640a353b"
            },
            "downloads": -1,
            "filename": "fastsim-2.1.3-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "84553865c57c7484b38aa177e35795e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.11,>=3.8",
            "size": 9399795,
            "upload_time": "2024-12-17T23:26:59",
            "upload_time_iso_8601": "2024-12-17T23:26:59.799863Z",
            "url": "https://files.pythonhosted.org/packages/b0/27/dba6325a4ea4f3ef847d336bc8324bb854f12a6f6d4322a5c312e28ed359/fastsim-2.1.3-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ff9f37ad3c60df8c4081c9b7d2dbf6ae56218556fcfd092143bb6bbcf2c9c4d9",
                "md5": "5e3ff2dc0b4d3c1f95556277c824814c",
                "sha256": "c486def999b6e78e9449f42d2e636bf63036baf28fd99bdc75b97906cc95e2e0"
            },
            "downloads": -1,
            "filename": "fastsim-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5e3ff2dc0b4d3c1f95556277c824814c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.11,>=3.8",
            "size": 12088775,
            "upload_time": "2024-12-17T23:27:02",
            "upload_time_iso_8601": "2024-12-17T23:27:02.620075Z",
            "url": "https://files.pythonhosted.org/packages/ff/9f/37ad3c60df8c4081c9b7d2dbf6ae56218556fcfd092143bb6bbcf2c9c4d9/fastsim-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe0a0005ef51001e22b499418bdf6c4ce024a9265480ad73c50629238c714186",
                "md5": "f7b1a8edf284f9d02e4c033248067e3d",
                "sha256": "5fe2092ddff7ea4bc518fcc0467a006ca49756c2683e26bfb218a5aa4c746d24"
            },
            "downloads": -1,
            "filename": "fastsim-2.1.3-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f7b1a8edf284f9d02e4c033248067e3d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.11,>=3.8",
            "size": 10617213,
            "upload_time": "2024-12-17T23:27:05",
            "upload_time_iso_8601": "2024-12-17T23:27:05.267333Z",
            "url": "https://files.pythonhosted.org/packages/fe/0a/0005ef51001e22b499418bdf6c4ce024a9265480ad73c50629238c714186/fastsim-2.1.3-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b908b68e62ae7cff72a0c56d147c28027027f94f2377c812ff3d82892d761364",
                "md5": "f4f583772ab7f4c06ee78306c19a4527",
                "sha256": "b0300ea77a707919751bea89fd108979ef58220896391ee48a9953545516bc34"
            },
            "downloads": -1,
            "filename": "fastsim-2.1.3-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f4f583772ab7f4c06ee78306c19a4527",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.11,>=3.8",
            "size": 9680237,
            "upload_time": "2024-12-17T23:27:09",
            "upload_time_iso_8601": "2024-12-17T23:27:09.060155Z",
            "url": "https://files.pythonhosted.org/packages/b9/08/b68e62ae7cff72a0c56d147c28027027f94f2377c812ff3d82892d761364/fastsim-2.1.3-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0e7cfb68d1f288d988aabcd5431d6eda94a8559e43aa338ffa20b3101eb2143f",
                "md5": "fe8c3e6403f6e6a15e4634abafe80a96",
                "sha256": "d5953e32396379f0a631e84fcb48ee825374312b4088af5f618cc993c92bb075"
            },
            "downloads": -1,
            "filename": "fastsim-2.1.3-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fe8c3e6403f6e6a15e4634abafe80a96",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.11,>=3.8",
            "size": 9399401,
            "upload_time": "2024-12-17T23:27:12",
            "upload_time_iso_8601": "2024-12-17T23:27:12.954234Z",
            "url": "https://files.pythonhosted.org/packages/0e/7c/fb68d1f288d988aabcd5431d6eda94a8559e43aa338ffa20b3101eb2143f/fastsim-2.1.3-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b735989acfad4c85f1fff279b0bbc69160987cd26e4d23758bd907279cfc399d",
                "md5": "a6e6b857db6714fe2252ecaf5b8f64c7",
                "sha256": "cbecb62571c73ebdb1cac40d0ddb39d13e59bc5a2f53b3db3c87c7a4fb153244"
            },
            "downloads": -1,
            "filename": "fastsim-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a6e6b857db6714fe2252ecaf5b8f64c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.11,>=3.8",
            "size": 12087044,
            "upload_time": "2024-12-17T23:27:17",
            "upload_time_iso_8601": "2024-12-17T23:27:17.087422Z",
            "url": "https://files.pythonhosted.org/packages/b7/35/989acfad4c85f1fff279b0bbc69160987cd26e4d23758bd907279cfc399d/fastsim-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "39653c22952213b7ea3926605f4a42acaeaca304daf52e19a1cece34f91c50df",
                "md5": "31cfcd5a144544135effb9845ff4c605",
                "sha256": "e610c3e43038609c16539a818ec826801b47b77d48375e74855f821565c4e3f8"
            },
            "downloads": -1,
            "filename": "fastsim-2.1.3-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "31cfcd5a144544135effb9845ff4c605",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.11,>=3.8",
            "size": 10618192,
            "upload_time": "2024-12-17T23:27:21",
            "upload_time_iso_8601": "2024-12-17T23:27:21.965497Z",
            "url": "https://files.pythonhosted.org/packages/39/65/3c22952213b7ea3926605f4a42acaeaca304daf52e19a1cece34f91c50df/fastsim-2.1.3-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-17 23:26:41",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "fastsim"
}
        
Elapsed time: 1.43522s