gamma-simulator


Namegamma-simulator JSON
Version 1.0.5 PyPI version JSON
download
home_pageNone
Summarya gamma simulator
upload_time2024-03-27 07:11:37
maintainerNone
docs_urlNone
authorChen_zk
requires_pythonNone
licenseBSD-3-Clause
keywords python gamma pulse simulate
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
![logo](./fig/logo.png)
# Gamma_simulator
This is a gamma pulse simulator jointly developed by [Shamoon College of Engineering(SCE)](https://en.sce.ac.il/) in Israel and [Shanghai Advanced Research Institute](http://www.sari.cas.cn/),CAS in China.Here we will give a brief introduction to our software, including the what and why. For more specific implementation steps of the software, please refer to our [paper](). Of course,**if you are a pure user, please jump directly to [Use](#Use) to see how to use it**.

## Contents

- [Introduction](#Introduction)
  - [What is Gamma Simulator](#what-is-gamma-simulator)
  - [Why do we creat it](#why-do-we-creat-it)
- [Software structure](#software-structure)
  - [Macrostructure](#macrostructure)
  - [Implementation structure](#implementation-structure)
  - [Parameter description](#parameter-description)
  - [Main function](#main-function)
- [Use](#use)
  - [Install](#install)
  - [Import](#import)
  - [Run](#run)
- [Notice](#notice)
  - [Shape parameter](#shape-parameter)
  - [Plot setting](#plot-setting)
- [Examples](#examples)
- [Contributors](#contributors)
- [Known issue](#known-issue)
- [Todo](#todo)

## Introduction
### What is Gamma Simulator?

Gamma simulator is a gamma pulse simulator with parameter customization function, you can specify the type of radioactive source and pulse count rate and other characteristics, generate pulse signals that meet the corresponding characteristics

### Why do we creat it?

The original intention of the gamma simulator was to introduce deep learning into energy spectroscopy in the later stage. The use of deep learning to process pulse signals requires that the collected pulse signals have corresponding labels, which is impossible in commercial energy spectrometer. Therefore, we used the simulator to label the pulse signals while generating them, so as to facilitate the reference of deep learning methods. At the same time, simulators can greatly reduce the manpower, material and financial resources of the signal collection process, and can be used to preliminarily test signal processing methods

## Software structure
### Macrostructure
![mainflow](./fig/mainflow.png)
### Implementation structure
 ![Flow_software](./fig/Flow_software.png)
### Parameter description
|**Setting Parameters:**||type|Default value|
| --- | -----------|-----------|-----------|
| verbose   | Whether to output detailed information   |bool|False |
| verbose_plots   | Whether images need to be output   |dict|None|
| source   | The simulated radioactive source   |str or dict |'Co-60' |
| signal_len   | Length of time to simulate sampling(s)   |int or float|1024|
| fs   | Analog sampling rate   |float |1 |
| lambda_value   | Analog pulse count rate(cps)   |float|0.1|
| dict_type    | Shape type model of the simulated pulse   |str|'gamma'|
| dict_shape_params   | dict shape params   |dict|Please see [Notice](#notice)|
| noise_unit   | Unit of noise   |str|'std'|
| noise   | The magnitude of noise in the given unit   |float|0.01|
| dict_size   | Shape dictionary size due to jitter   | int|100 |
| seed   | The simulated random number seed   |int|None|

**The above parameters can be set and customized by users. The chart shows the default values of parameters and draws discrete pulse signals. For specific parameter Settings in applications, please refer to the [example section](#examples) ,more specific parameter Settings and parameter tests are presented in the [example folder](/examples)**

|**Shape parameters:**| |type | eg |
| --- | -----------|-----------|-----------|
| t_rise   | rise time of the shape   | float |4.560e-07 |
| t_fall   | fall time of the shape   | float |6.134e-05  |
| shape_len   | length of the shape in samples   | int | 61|
| shape_len_sec   | length of the shape in seconds   | float | 6.180e-05|
|**Events parameters:**| | | |
|hist_energy|The energy contained in the spectrum (the transverse axis of the desired spectrum)| array |[0.02,0.04,0.06,... ,1667.20] |
|hist_counts|The probability of generating energy corresponding to the simulated source(vertical axis of the desired energy spectrum)|array|[0.0002,0.001,0.0015,... ,0.0001]|
| n_events   | number of events in the signal   | int | 16054|
| times   | arrival times of the events   |array |[0.7e-05,1.8e-05,... ,0.92] |
| energies   | The energy sequence of the pulses produced in this simulation|array|[223.2,453.6,889.4,... ,635.4]|
| lambda_measured   | actual event rate   | float | 13672.2 |
| shape_param1, shape_param2   | shape parameters for each event   | array |two sequences of n_event values conforming to the Gaussian distribution of the given parameter|
|**Signal parameters:**| |
| signal_len   | The number of samples at a given frequency in the simulated time  | int or float| 1e6 |
| signal_len_sec   | The length of time of the analog signal(s)   | int or float| 1 |
| duty_cycle   | The proportion of the time to detect the signal to the total analog time  |float | 0.67 |
| pile_up_stat   | number of the pile-ups in the generated signal   | int | 4302 |
| measured_snr   | measured SNR of the generated signal (dB)   |float| 66.26 |

**These values are intermediate values generated during the simulation, so there are no default values. Here are some examples of these values to give the reader an idea of what these values are**

### Main function
|**Function name**|**input**|**output**|**Function action**|
| --- | ---|-----------|-----------|
| *load_weighted_spectrum*  |source |hist_energy hist_counts|The energy spectrum of the simulated source (both elemental and mixture)|
| *generate_energy_distribution*  |seed, n_events, hist_energy, hist_counts|energies| Generate *n_event* pulses energy sequences conforming to the probability density distribution of the target energy spectrum|
| *generate_arrival_times*   | seed, lambda_value|times| Generates a Poisson process event arrival time series with a specified count rate(lambda_value) |
| *generate_all_dict_shapes*  | dict_type,dict_shape_params, dict_size| shapes | Produces a shape dictionary of the specified shapes generated by the specified parameters as a selection library of energy shapes|
| *generate_signal_without_noise*   |times, energies,shapes_len, shapes | *signal without noise*| The independent pulses and shapes that we have generated are pieced together to form an analog noiseless signal|
| *generate_signal_with_noise*  |*signal without noise*, noise_unit, noise|signal|The noiseless signal is superimposed on the specified unit and size of noise to obtain a real analog signal|

**A large number of parameters mentioned above are used in the function introduction. In our real code, there is a high degree of integration and a large number of function reuse. Some inputs are not directly called in this function, but by calling other functions, and some output intermediate outputs are directly called by another function after the result is generated, so these temporary variables are not reflected in the description. So this function introduction is not particularly strict, but it is definitely the most suitable for readers to clarify the code logic of the introduction**
## Use
### Install
Make sure you have the following libraries in your environment
* numpy
* scipy
* matplotlib
* urllib  
(It doesn't matter that you don't have these, because these dependencies will be installed when you install the gamma-simulator package)

Please use the following command to install our program
```bash
pip install gamma-simulator
```
### Import
```python
from gamma_simulator.gamma_simulator import gamma_simulator
```

### Run
Step 1.Creat an instance
```python
simulator = gamma_simulator()
```
Step 2.Define parameters
```python
simulator = gamma_simulator(verbose=True,
                            verbose_plots={'shapes': True, 'signal': True},
                            source={'name': 'Co-60', 'weights': 1},
                            signal_len=1,  # "analog" signal of 1 second that are 1e7 samples
                            fs=10e5,
                            lambda_value=1e4,
                            dict_type='gamma',
                            dict_shape_params={'mean1':  0.1,
                                               'std1': 0.001,
                                               'mean2': 1e5,
                                               'std2': 1e3},
                            noise_unit='std',
                            noise=1e-3,
                            dict_size=10,
                            seed=42)
```
Step 3.Creat the signal
```python
signal = simulator.generate_signal()
```


## Notice
### Shape parameter
If you are not familiar with shape parameters, use the following combination of parameters
```python
{dict_type='gamma',
dict_shape_params={'mean1':  0.1,
'std1': 0.001,
'mean2': 1e5,
'std2': 1e3}
```
or
```python
{dict_type='double_exponential',
dict_shape_params={'mean1': 1e-5, 
'std1': 1e-7,
'mean2': 1e-7,
'std2': 1e-9}
```
### Plot setting
Our simulator supports drawing a variety of graphs, including energy, shape, signal and spectrum.
* Energy:Ideal energy spectrum of the drawn signal source (simulator built-in database)
* Shape:Draws a dictionary set of all possible signal shapes
* Signal:When the length of the resulting signal is less than 2000, the generated signal is drawn, and when the length is greater than 2000, the first 2000 sampling points are drawn


The default option is not to draw, if you need to draw, you need to change the specified value in the parameter definition to True
```
verbose_plots={'energy':True, 'shapes': True, 'signal': True}
```
## Examples

```python
from gamma_simulator.gamma_simulator import gamma_simulator
simulator = gamma_simulator(verbose=True,
                            verbose_plots={'shapes': True, 'signal': True},
                            source={'name': 'Co-60', 'weights': 1},
                            signal_len=1,  # "analog" signal of 1 second that are 1e7 samples
                            fs=10e6,
                            lambda_value=1e4,
                            dict_type='double_exponential',
                            dict_shape_params={'mean1': 1e-5,  # continuous-time parameters measured in seconds
                                               'std1': 1e-7,
                                               'mean2': 1e-7,
                                               'std2': 1e-9},
                            noise_unit='std',
                            noise=1e-3,
                            dict_size=10,
                            seed=42)
signal = simulator.generate_signal()
```



```python
from gamma_simulator.gamma_simulator import gamma_simulator
simulator = gamma_simulator(verbose=True,
                            verbose_plots={'energy': True, 'signal': True},
                            source={'name': ['Co-60', 'I-125'], 'weights': [1, 2]},
                            signal_len=1,  # "analog" signal of 1 second that are 1e7 samples
                            fs=10e6,
                            lambda_value=1e4,
                            dict_type='gamma',
                            dict_shape_params={'mean1':  0.1,  # continuous-time parameters measured in seconds
                                               'std1': 0.001,
                                               'mean2': 1e5,
                                               'std2': 1e3},
                            noise_unit='std',
                            noise=1e-3,
                            dict_size=10,
                            seed=42)
signal = simulator.generate_signal()
```

You can see the result in [examples](./examples)
## Contributors
[Dima Bykhovsky](https://github.com/bykhov),[Tom Trigano](https://github.com/TomTrigano),[Zikang Chen](https://github.com/ZikangC)
## Known issue
  
## Todo 

## version

1.0.1 upload to pypi

1.0.2 add license and install_requires

1.0.3 can't import

1.0.4 successfully import and fix some bug about gamma.pdf and gamma.ppf parameters

1.0.5 change the bug about hist_energy

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "gamma-simulator",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "python, gamma, pulse, simulate",
    "author": "Chen_zk",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/04/d4/80e4cdf362661d650e3375ca4ee945156cd60747b6dd1f585bb8826355ef/gamma_simulator-1.0.5.tar.gz",
    "platform": null,
    "description": "\r\n![logo](./fig/logo.png)\r\n# Gamma_simulator\r\nThis is a gamma pulse simulator jointly developed by [Shamoon College of Engineering(SCE)](https://en.sce.ac.il/) in Israel and [Shanghai Advanced Research Institute](http://www.sari.cas.cn/),CAS in China.Here we will give a brief introduction to our software, including the what and why. For more specific implementation steps of the software, please refer to our [paper](). Of course,**if you are a pure user, please jump directly to [Use](#Use) to see how to use it**.\r\n\r\n## Contents\r\n\r\n- [Introduction](#Introduction)\r\n  - [What is Gamma Simulator](#what-is-gamma-simulator)\r\n  - [Why do we creat it](#why-do-we-creat-it)\r\n- [Software structure](#software-structure)\r\n  - [Macrostructure](#macrostructure)\r\n  - [Implementation structure](#implementation-structure)\r\n  - [Parameter description](#parameter-description)\r\n  - [Main function](#main-function)\r\n- [Use](#use)\r\n  - [Install](#install)\r\n  - [Import](#import)\r\n  - [Run](#run)\r\n- [Notice](#notice)\r\n  - [Shape parameter](#shape-parameter)\r\n  - [Plot setting](#plot-setting)\r\n- [Examples](#examples)\r\n- [Contributors](#contributors)\r\n- [Known issue](#known-issue)\r\n- [Todo](#todo)\r\n\r\n## Introduction\r\n### What is Gamma Simulator?\r\n\r\nGamma simulator is a gamma pulse simulator with parameter customization function, you can specify the type of radioactive source and pulse count rate and other characteristics, generate pulse signals that meet the corresponding characteristics\r\n\r\n### Why do we creat it?\r\n\r\nThe original intention of the gamma simulator was to introduce deep learning into energy spectroscopy in the later stage. The use of deep learning to process pulse signals requires that the collected pulse signals have corresponding labels, which is impossible in commercial energy spectrometer. Therefore, we used the simulator to label the pulse signals while generating them, so as to facilitate the reference of deep learning methods. At the same time, simulators can greatly reduce the manpower, material and financial resources of the signal collection process, and can be used to preliminarily test signal processing methods\r\n\r\n## Software structure\r\n### Macrostructure\r\n![mainflow](./fig/mainflow.png)\r\n### Implementation structure\r\n ![Flow_software](./fig/Flow_software.png)\r\n### Parameter description\r\n|**Setting Parameters:**||type|Default value|\r\n| --- | -----------|-----------|-----------|\r\n| verbose   | Whether to output detailed information   |bool|False |\r\n| verbose_plots   | Whether images need to be output   |dict|None|\r\n| source   | The simulated radioactive source   |str or dict |'Co-60' |\r\n| signal_len   | Length of time to simulate sampling(s)   |int or float|1024|\r\n| fs   | Analog sampling rate   |float |1 |\r\n| lambda_value   | Analog pulse count rate(cps)   |float|0.1|\r\n| dict_type    | Shape type model of the simulated pulse   |str|'gamma'|\r\n| dict_shape_params   | dict shape params   |dict|Please see [Notice](#notice)|\r\n| noise_unit   | Unit of noise   |str|'std'|\r\n| noise   | The magnitude of noise in the given unit   |float|0.01|\r\n| dict_size   | Shape dictionary size due to jitter   | int|100 |\r\n| seed   | The simulated random number seed   |int|None|\r\n\r\n**The above parameters can be set and customized by users. The chart shows the default values of parameters and draws discrete pulse signals. For specific parameter Settings in applications, please refer to the [example section](#examples) ,more specific parameter Settings and parameter tests are presented in the [example folder](/examples)**\r\n\r\n|**Shape parameters:**| |type | eg |\r\n| --- | -----------|-----------|-----------|\r\n| t_rise   | rise time of the shape   | float |4.560e-07 |\r\n| t_fall   | fall time of the shape   | float |6.134e-05  |\r\n| shape_len   | length of the shape in samples   | int | 61|\r\n| shape_len_sec   | length of the shape in seconds   | float | 6.180e-05|\r\n|**Events parameters:**| | | |\r\n|hist_energy|The energy contained in the spectrum (the transverse axis of the desired spectrum)| array |[0.02,0.04,0.06,... ,1667.20] |\r\n|hist_counts|The probability of generating energy corresponding to the simulated source(vertical axis of the desired energy spectrum)|array|[0.0002,0.001,0.0015,... ,0.0001]|\r\n| n_events   | number of events in the signal   | int | 16054|\r\n| times   | arrival times of the events   |array |[0.7e-05,1.8e-05,... ,0.92] |\r\n| energies   | The energy sequence of the pulses produced in this simulation|array|[223.2,453.6,889.4,... ,635.4]|\r\n| lambda_measured   | actual event rate   | float | 13672.2 |\r\n| shape_param1, shape_param2   | shape parameters for each event   | array |two sequences of n_event values conforming to the Gaussian distribution of the given parameter|\r\n|**Signal parameters:**| |\r\n| signal_len   | The number of samples at a given frequency in the simulated time  | int or float| 1e6 |\r\n| signal_len_sec   | The length of time of the analog signal(s)   | int or float| 1 |\r\n| duty_cycle   | The proportion of the time to detect the signal to the total analog time  |float | 0.67 |\r\n| pile_up_stat   | number of the pile-ups in the generated signal   | int | 4302 |\r\n| measured_snr   | measured SNR of the generated signal (dB)   |float| 66.26 |\r\n\r\n**These values are intermediate values generated during the simulation, so there are no default values. Here are some examples of these values to give the reader an idea of what these values are**\r\n\r\n### Main function\r\n|**Function name**|**input**|**output**|**Function action**|\r\n| --- | ---|-----------|-----------|\r\n| *load_weighted_spectrum*  |source |hist_energy hist_counts|The energy spectrum of the simulated source (both elemental and mixture)|\r\n| *generate_energy_distribution*  |seed, n_events, hist_energy, hist_counts|energies| Generate *n_event* pulses energy sequences conforming to the probability density distribution of the target energy spectrum|\r\n| *generate_arrival_times*   | seed, lambda_value|times| Generates a Poisson process event arrival time series with a specified count rate(lambda_value) |\r\n| *generate_all_dict_shapes*  | dict_type,dict_shape_params, dict_size| shapes | Produces a shape dictionary of the specified shapes generated by the specified parameters as a selection library of energy shapes|\r\n| *generate_signal_without_noise*   |times, energies,shapes_len, shapes | *signal without noise*| The independent pulses and shapes that we have generated are pieced together to form an analog noiseless signal|\r\n| *generate_signal_with_noise*  |*signal without noise*, noise_unit, noise|signal|The noiseless signal is superimposed on the specified unit and size of noise to obtain a real analog signal|\r\n\r\n**A large number of parameters mentioned above are used in the function introduction. In our real code, there is a high degree of integration and a large number of function reuse. Some inputs are not directly called in this function, but by calling other functions, and some output intermediate outputs are directly called by another function after the result is generated, so these temporary variables are not reflected in the description. So this function introduction is not particularly strict, but it is definitely the most suitable for readers to clarify the code logic of the introduction**\r\n## Use\r\n### Install\r\nMake sure you have the following libraries in your environment\r\n* numpy\r\n* scipy\r\n* matplotlib\r\n* urllib  \r\n(It doesn't matter that you don't have these, because these dependencies will be installed when you install the gamma-simulator package)\r\n\r\nPlease use the following command to install our program\r\n```bash\r\npip install gamma-simulator\r\n```\r\n### Import\r\n```python\r\nfrom gamma_simulator.gamma_simulator import gamma_simulator\r\n```\r\n\r\n### Run\r\nStep 1.Creat an instance\r\n```python\r\nsimulator = gamma_simulator()\r\n```\r\nStep 2.Define parameters\r\n```python\r\nsimulator = gamma_simulator(verbose=True,\r\n                            verbose_plots={'shapes': True, 'signal': True},\r\n                            source={'name': 'Co-60', 'weights': 1},\r\n                            signal_len=1,  # \"analog\" signal of 1 second that are 1e7 samples\r\n                            fs=10e5,\r\n                            lambda_value=1e4,\r\n                            dict_type='gamma',\r\n                            dict_shape_params={'mean1':  0.1,\r\n                                               'std1': 0.001,\r\n                                               'mean2': 1e5,\r\n                                               'std2': 1e3},\r\n                            noise_unit='std',\r\n                            noise=1e-3,\r\n                            dict_size=10,\r\n                            seed=42)\r\n```\r\nStep 3.Creat the signal\r\n```python\r\nsignal = simulator.generate_signal()\r\n```\r\n\r\n\r\n## Notice\r\n### Shape parameter\r\nIf you are not familiar with shape parameters, use the following combination of parameters\r\n```python\r\n{dict_type='gamma',\r\ndict_shape_params={'mean1':  0.1,\r\n'std1': 0.001,\r\n'mean2': 1e5,\r\n'std2': 1e3}\r\n```\r\nor\r\n```python\r\n{dict_type='double_exponential',\r\ndict_shape_params={'mean1': 1e-5, \r\n'std1': 1e-7,\r\n'mean2': 1e-7,\r\n'std2': 1e-9}\r\n```\r\n### Plot setting\r\nOur simulator supports drawing a variety of graphs, including energy, shape, signal and spectrum.\r\n* Energy\uff1aIdeal energy spectrum of the drawn signal source (simulator built-in database)\r\n* Shape\uff1aDraws a dictionary set of all possible signal shapes\r\n* Signal\uff1aWhen the length of the resulting signal is less than 2000, the generated signal is drawn, and when the length is greater than 2000, the first 2000 sampling points are drawn\r\n\r\n\r\nThe default option is not to draw, if you need to draw, you need to change the specified value in the parameter definition to True\r\n```\r\nverbose_plots={'energy':True, 'shapes': True, 'signal': True}\r\n```\r\n## Examples\r\n\r\n```python\r\nfrom gamma_simulator.gamma_simulator import gamma_simulator\r\nsimulator = gamma_simulator(verbose=True,\r\n                            verbose_plots={'shapes': True, 'signal': True},\r\n                            source={'name': 'Co-60', 'weights': 1},\r\n                            signal_len=1,  # \"analog\" signal of 1 second that are 1e7 samples\r\n                            fs=10e6,\r\n                            lambda_value=1e4,\r\n                            dict_type='double_exponential',\r\n                            dict_shape_params={'mean1': 1e-5,  # continuous-time parameters measured in seconds\r\n                                               'std1': 1e-7,\r\n                                               'mean2': 1e-7,\r\n                                               'std2': 1e-9},\r\n                            noise_unit='std',\r\n                            noise=1e-3,\r\n                            dict_size=10,\r\n                            seed=42)\r\nsignal = simulator.generate_signal()\r\n```\r\n\r\n\r\n\r\n```python\r\nfrom gamma_simulator.gamma_simulator import gamma_simulator\r\nsimulator = gamma_simulator(verbose=True,\r\n                            verbose_plots={'energy': True, 'signal': True},\r\n                            source={'name': ['Co-60', 'I-125'], 'weights': [1, 2]},\r\n                            signal_len=1,  # \"analog\" signal of 1 second that are 1e7 samples\r\n                            fs=10e6,\r\n                            lambda_value=1e4,\r\n                            dict_type='gamma',\r\n                            dict_shape_params={'mean1':  0.1,  # continuous-time parameters measured in seconds\r\n                                               'std1': 0.001,\r\n                                               'mean2': 1e5,\r\n                                               'std2': 1e3},\r\n                            noise_unit='std',\r\n                            noise=1e-3,\r\n                            dict_size=10,\r\n                            seed=42)\r\nsignal = simulator.generate_signal()\r\n```\r\n\r\nYou can see the result in [examples](./examples)\r\n## Contributors\r\n[Dima Bykhovsky](https://github.com/bykhov),[Tom Trigano](https://github.com/TomTrigano),[Zikang Chen](https://github.com/ZikangC)\r\n## Known issue\r\n  \r\n## Todo \r\n\r\n## version\r\n\r\n1.0.1 upload to pypi\r\n\r\n1.0.2 add license and install_requires\r\n\r\n1.0.3 can't import\r\n\r\n1.0.4 successfully import and fix some bug about gamma.pdf and gamma.ppf parameters\r\n\r\n1.0.5 change the bug about hist_energy\r\n",
    "bugtrack_url": null,
    "license": "BSD-3-Clause",
    "summary": "a gamma simulator",
    "version": "1.0.5",
    "project_urls": null,
    "split_keywords": [
        "python",
        " gamma",
        " pulse",
        " simulate"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04d480e4cdf362661d650e3375ca4ee945156cd60747b6dd1f585bb8826355ef",
                "md5": "66e3055bc1a80af6fd2537ea3091e420",
                "sha256": "ab8c7fbcc38fc3f9f75b143601e736a6d902390ac86aa2f15e3dcbd9120c8de7"
            },
            "downloads": -1,
            "filename": "gamma_simulator-1.0.5.tar.gz",
            "has_sig": false,
            "md5_digest": "66e3055bc1a80af6fd2537ea3091e420",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 18298,
            "upload_time": "2024-03-27T07:11:37",
            "upload_time_iso_8601": "2024-03-27T07:11:37.228166Z",
            "url": "https://files.pythonhosted.org/packages/04/d4/80e4cdf362661d650e3375ca4ee945156cd60747b6dd1f585bb8826355ef/gamma_simulator-1.0.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-27 07:11:37",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "gamma-simulator"
}
        
Elapsed time: 0.24137s