licaplot


Namelicaplot JSON
Version 0.2.10 PyPI version JSON
download
home_pageNone
SummaryPlotting tools to analyze sensors and filters from LICA Optical Bench
upload_time2025-01-30 13:43:44
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseGPL-3.0 license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # licaplot
 
 Collection of processing and plotting commands to analyze sensors and filters using the LICA Optical Test Bench.

 This is a counterpart for sensors of [rawplot](https://guaix.ucm.es/rawplot).

 # Installation

```bash
pip install licaplot
```

# Available utilities

* `licaplot-filters`. Process filter data from LICA optical test bench.
* `licaplot-tessw`. Process TESS-W data from LICA optical test bench.
* `licaplot-photod`. Plot and export LICA photodiodes spectral response curves.
* `licaplot-hama`. Build LICA's Hamamtsu S2281-04 photodiode spectral response curve in ECSV format to be used for other calibration purposes elsewhere.
* `licaplot-osi` = Build LICA's OSI PIN-10D photodiode spectral response curve un ECSV format to be used for other calibration purposes elsewhere.
 `licaplot-csv`. Very simple plot utility to plot CSV files.

Every command listed (and subcommands) con be described with `-h | --help`

Examples:

```bash
licaplot-filters -h
licaplot-filters classif -h
licaplot-filters classif photod -h
```

# Usage examples

## Reducing Filters data (licaplot-filters)

### Simple case

In the simple case, we hace one filter CSV and one clear photodiode CSV. Setting the wavelength limits is optional.
Setting the photodiode model is optional unless you are using the Hamamatsu S2281-01. The column in the ECSV file containing the transmission is column number 4.

```bash
licaplot-filters --console one -l Green -p data/filters/photodiode.txt -m PIN-10D -i data/filters/green.txt

licaplot-csv --console single -i data/filters/green.ecsv --title Green filter -yc 4 --label G --lines --filters
```

### More complex case

In this case, an RGB filter set was measured with a single clear photodiode reading, thus sharing the same photodiode file. The photodiode model used was the OSI PIN-10D.

1. First we tag all the clear photodiode readings. The tag is a string (i.e. `X`) we use to match which filters are being paired with this clear photodiode reading.

If we need to trim the bandwith of the whole set (photodiode + associated filter readings) *this is the time to do it*. The bandwith trimming will be carried over from the photodiode to the associated filters.

```bash
licaplot-filters --console classif photod --tag X -p data/filters/photodiode.txt
```

The output of this command is an ECSV file with the same information plus metadata needed for further processing.

2. Tag all filter files.

Tag them with the same tag as chosen by the photodiode file (`X`), as they share the same photodiode file.

```bash
licaplot-filters --console classif filter --tag X -i data/filters/green.txt -l Green
licaplot-filters --console classif filter --tag X -i data/filters/red.txt -l Red
licaplot-filters --console classif filter --tag X -i data/filters/blue.txt -l Blue
```

The output of these commands are the ECSV files with the same data but additional metadata for further processing

3. Review the process 

Just to make sure everything is ok.

```bash
licaplot-filters --console classif review -d data/filters/
```

4. Data reduction. 

The optional `--save` flag allows to control the overriting of the input ECSV files with more columns and metadata.

```bash
licaplot-filters --console process -d data/filters --save
```

After this step both filter ECSV files contains additional columns with the clear photodiode readings, the photodiode model QE and the final transmission curve as the last column.

5. Plot the result

Plot generated ECSV files using `licaplot-csv`. The column to be plotted is the fourth column (transmission) against the wavelenght column which happens to be the first one and thus no need to specify it.

```bash
licaplot-csv --console multi -i data/filters/blue.ecsv data/filters/red.ecsv data/filters/green.ecsv --overlap -wc 1 -yc 4  --filters --lines
```

![RGB Filter Set Tranmsission curves](doc/image/plot_rgb_filters.png)


## Measuring TESS-W spectral response (licaplot-tessw)

Process the input files obtained at LICA for TESS-W measurements. For each device, we need a CSV file with the frequencies at a given wavelength and the corresponsing reference photodiode (OSI PIN-10D) current measurements.

1. Classify the files and assign the sensor readings to photodiode readings

```bash
licaplot-tessw --console classif photod -p data/tessw/stars1277-photodiode.csv --tag A
licaplot-tessw --console classif sensor -i data/tessw/stars1277-frequencies.csv -l TSL237 --tag A

licaplot-tessw --console classif photod -p data/tessw/stars6502-photodiode.csv --tag B
licaplot-tessw --console classif sensor -i data/tessw/stars6502-frequencies.csv -l OTHER --tag B
```

2. Review the configuration

```bash
licaplot-tessw --console classif review  -d data/tessw/
```

```bash
2024-12-08 13:07:23,214 [INFO] [root] ============== licaplot.tessw 0.1.dev100+g51c6aa2.d20241208 ==============
2024-12-08 13:07:23,214 [INFO] [licaplot.tessw] Reviewing files in directory data/tessw/
2024-12-08 13:07:23,270 [INFO] [licaplot.utils.processing] Returning stars6502-frequencies
2024-12-08 13:07:23,270 [INFO] [licaplot.utils.processing] Returning stars1277-frequencies
2024-12-08 13:07:23,271 [INFO] [licaplot.utils.processing] [tag=B] (PIN-10D) stars6502-photodiode, used by ['stars6502-frequencies']
2024-12-08 13:07:23,271 [INFO] [licaplot.utils.processing] [tag=A] (PIN-10D) stars1277-photodiode, used by ['stars1277-frequencies']
2024-12-08 13:07:23,271 [INFO] [licaplot.utils.processing] Review step ok.
```

3. Data reduction

```bash
licaplot-tessw --console process  -d data/tessw/ --save
```

```bash
2024-12-08 13:10:08,476 [INFO] [root] ============== licaplot.tessw 0.1.dev100+g51c6aa2.d20241208 ==============
2024-12-08 13:10:08,476 [INFO] [licaplot.tessw] Classifying files in directory data/tessw/
2024-12-08 13:10:08,534 [INFO] [licaplot.utils.processing] Returning stars6502-frequencies
2024-12-08 13:10:08,534 [INFO] [licaplot.utils.processing] Returning stars1277-frequencies
2024-12-08 13:10:08,534 [INFO] [lica.photodiode] Loading Responsivity & QE data from PIN-10D-Responsivity-Cross-Calibrated@1nm.ecsv
2024-12-08 13:10:08,546 [INFO] [licaplot.utils.processing] Processing stars6502-frequencies with photodidode PIN-10D
2024-12-08 13:10:08,546 [INFO] [lica.photodiode] Loading Responsivity & QE data from PIN-10D-Responsivity-Cross-Calibrated@1nm.ecsv
2024-12-08 13:10:08,557 [INFO] [licaplot.utils.processing] Processing stars1277-frequencies with photodidode PIN-10D
2024-12-08 13:10:08,558 [INFO] [licaplot.utils.processing] Updating ECSV file data/tessw/stars6502-frequencies.ecsv
2024-12-08 13:10:08,562 [INFO] [licaplot.utils.processing] Updating ECSV file data/tessw/stars1277-frequencies.ecsv
```

4. Plot the result

the `-yc 0` denotes the last column

```bash
licaplot-csv --console multi -i data/tessw/stars1277-frequencies.ecsv  data/tessw/stars6502-frequencies.ecsv  --overlap -wc 1 -yc 0  --filters --lines
```

![Sensor comparison](doc/image/sensor_comparison.png)

## Comparing measured TESS-W response with manufactured datasheet

There is a separate Jupyter notebook on this.

## Generating LICA photodiodes reference

This is a quick reference of commands and procedure. There is a separate LICA report on the process.

### Hamamatsu S2281-01 diode (licaplot-hama)

#### Stage 1

Convert NPL CSV data into a ECSV file with added metadata and plot it.

```bash
licaplot-hama --console stage1 --plot -i data/hamamatsu/S2281-01-Responsivity-NPL.csv
```
It produces a file with the same name as the input file with `.ecsv` extension

#### Stage 2

Plot and merge NPL data with S2281-04 (yes, -04!) datasheet points.

With no alignment

```bash
licaplot-hama --console stage2 --plot --save -i data/hamamatsu/S2281-01-Responsivity-NPL.ecsv -d data/hamamatsu/S2281-04-Responsivity-Datasheet.csv
```

With good alignment (x = 16, y = 0.009)

```bash
licaplot-hama --console stage2 --plot --save -i data/hamamatsu/S2281-01-Responsivity-NPL.ecsv -d data/hamamatsu/S2281-04-Responsivity-Datasheet.csv -x 16 -y 0.009
```
It produces a file whose name is the same as the input file plus "+Datasheet.ecsv" appended, in the same folder.
(i.e `S2281-01-Responsivity-NPL+Datasheet.ecsv`)

#### Stage 3

Interpolates input ECSV file to a 1 nm resolution with cubic interpolator.

```bash
licaplot-hama --console stage3 --plot -i data/hamamatsu/S2281-01-Responsivity-NPL+Datasheet.ecsv -m cubic -r 1 --revision 2024-12
```

#### Pipeline

The complete pipeline in one command

```bash
licaplot-hama --console pipeline --plot -i data/hamamatsu/S2281-01-Responsivity-NPL.csv -d data/hamamatsu/S2281-04-Responsivity-Datasheet.csv -x 16 -y 0.009 -m cubic -r 1
```
### OSI PIN-10D photodiode (licaplot-osi)

By using the scanned datasheet
```bash
licaplot-osi --console datasheet -i data/osi/PIN-10D-Responsivity-Datasheet.csv -m cubic -r 1 --plot --save --revision 2024-12
```
By using a cross calibration with the Hamamatsu photodiode. The Hamamtsu ECSV file is the one obtained in the section above. It does nota appear in the command line as it is embedded in a Python package that automatically retrieves it.

```bash
licaplot-osi --console cross --osi data/osi/QEdata_PIN-10D.txt --hama data/osi/QEdata_S2201-01.txt --plot --save --revision 2024-12
```

Compare both methods
```bash
licaplot-osi --console compare -c data/osi/OSI\ PIN-10D+Cross-Calibrated@1nm.ecsv -d data/osi/OSI\ PIN-10D-Responsivity-Datasheet+Interpolated@1nm.ecsv --plot
```

***NOTE: We recomemnd using the cross-calibrated method.***

### Plot the packaged ECSV file (licaplot-photod)

```bash
licaplot-photod --console plot -m S2281-01
licaplot-photod --console plot -m PIN-10D
```

![Hamamatsu SS2281-01](doc/image/S2281-01.png)
![OSI PIN-10D](doc/image/PIN-10D.png)

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "licaplot",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": null,
    "author": null,
    "author_email": "Rafael Gonz\u00e1lez <rafael08@ucm.es>, Jaime Zamorano <jzamoran@ucm.es>",
    "download_url": "https://files.pythonhosted.org/packages/19/cf/a38c0436a330a9e7232be919aa4a79d4a8bc693c9f7b6a010d27689ca3cf/licaplot-0.2.10.tar.gz",
    "platform": null,
    "description": "# licaplot\n \n Collection of processing and plotting commands to analyze sensors and filters using the LICA Optical Test Bench.\n\n This is a counterpart for sensors of [rawplot](https://guaix.ucm.es/rawplot).\n\n # Installation\n\n```bash\npip install licaplot\n```\n\n# Available utilities\n\n* `licaplot-filters`. Process filter data from LICA optical test bench.\n* `licaplot-tessw`. Process TESS-W data from LICA optical test bench.\n* `licaplot-photod`. Plot and export LICA photodiodes spectral response curves.\n* `licaplot-hama`. Build LICA's Hamamtsu S2281-04 photodiode spectral response curve in ECSV format to be used for other calibration purposes elsewhere.\n* `licaplot-osi` = Build LICA's OSI PIN-10D photodiode spectral response curve un ECSV format to be used for other calibration purposes elsewhere.\n `licaplot-csv`. Very simple plot utility to plot CSV files.\n\nEvery command listed (and subcommands) con be described with `-h | --help`\n\nExamples:\n\n```bash\nlicaplot-filters -h\nlicaplot-filters classif -h\nlicaplot-filters classif photod -h\n```\n\n# Usage examples\n\n## Reducing Filters data (licaplot-filters)\n\n### Simple case\n\nIn the simple case, we hace one filter CSV and one clear photodiode CSV. Setting the wavelength limits is optional.\nSetting the photodiode model is optional unless you are using the Hamamatsu S2281-01. The column in the ECSV file containing the transmission is column number 4.\n\n```bash\nlicaplot-filters --console one -l Green -p data/filters/photodiode.txt -m PIN-10D -i data/filters/green.txt\n\nlicaplot-csv --console single -i data/filters/green.ecsv --title Green filter -yc 4 --label G --lines --filters\n```\n\n### More complex case\n\nIn this case, an RGB filter set was measured with a single clear photodiode reading, thus sharing the same photodiode file. The photodiode model used was the OSI PIN-10D.\n\n1. First we tag all the clear photodiode readings. The tag is a string (i.e. `X`) we use to match which filters are being paired with this clear photodiode reading.\n\nIf we need to trim the bandwith of the whole set (photodiode + associated filter readings) *this is the time to do it*. The bandwith trimming will be carried over from the photodiode to the associated filters.\n\n```bash\nlicaplot-filters --console classif photod --tag X -p data/filters/photodiode.txt\n```\n\nThe output of this command is an ECSV file with the same information plus metadata needed for further processing.\n\n2. Tag all filter files.\n\nTag them with the same tag as chosen by the photodiode file (`X`), as they share the same photodiode file.\n\n```bash\nlicaplot-filters --console classif filter --tag X -i data/filters/green.txt -l Green\nlicaplot-filters --console classif filter --tag X -i data/filters/red.txt -l Red\nlicaplot-filters --console classif filter --tag X -i data/filters/blue.txt -l Blue\n```\n\nThe output of these commands are the ECSV files with the same data but additional metadata for further processing\n\n3. Review the process \n\nJust to make sure everything is ok.\n\n```bash\nlicaplot-filters --console classif review -d data/filters/\n```\n\n4. Data reduction. \n\nThe optional `--save` flag allows to control the overriting of the input ECSV files with more columns and metadata.\n\n```bash\nlicaplot-filters --console process -d data/filters --save\n```\n\nAfter this step both filter ECSV files contains additional columns with the clear photodiode readings, the photodiode model QE and the final transmission curve as the last column.\n\n5. Plot the result\n\nPlot generated ECSV files using `licaplot-csv`. The column to be plotted is the fourth column (transmission) against the wavelenght column which happens to be the first one and thus no need to specify it.\n\n```bash\nlicaplot-csv --console multi -i data/filters/blue.ecsv data/filters/red.ecsv data/filters/green.ecsv --overlap -wc 1 -yc 4  --filters --lines\n```\n\n![RGB Filter Set Tranmsission curves](doc/image/plot_rgb_filters.png)\n\n\n## Measuring TESS-W spectral response (licaplot-tessw)\n\nProcess the input files obtained at LICA for TESS-W measurements. For each device, we need a CSV file with the frequencies at a given wavelength and the corresponsing reference photodiode (OSI PIN-10D) current measurements.\n\n1. Classify the files and assign the sensor readings to photodiode readings\n\n```bash\nlicaplot-tessw --console classif photod -p data/tessw/stars1277-photodiode.csv --tag A\nlicaplot-tessw --console classif sensor -i data/tessw/stars1277-frequencies.csv -l TSL237 --tag A\n\nlicaplot-tessw --console classif photod -p data/tessw/stars6502-photodiode.csv --tag B\nlicaplot-tessw --console classif sensor -i data/tessw/stars6502-frequencies.csv -l OTHER --tag B\n```\n\n2. Review the configuration\n\n```bash\nlicaplot-tessw --console classif review  -d data/tessw/\n```\n\n```bash\n2024-12-08 13:07:23,214 [INFO] [root] ============== licaplot.tessw 0.1.dev100+g51c6aa2.d20241208 ==============\n2024-12-08 13:07:23,214 [INFO] [licaplot.tessw] Reviewing files in directory data/tessw/\n2024-12-08 13:07:23,270 [INFO] [licaplot.utils.processing] Returning stars6502-frequencies\n2024-12-08 13:07:23,270 [INFO] [licaplot.utils.processing] Returning stars1277-frequencies\n2024-12-08 13:07:23,271 [INFO] [licaplot.utils.processing] [tag=B] (PIN-10D) stars6502-photodiode, used by ['stars6502-frequencies']\n2024-12-08 13:07:23,271 [INFO] [licaplot.utils.processing] [tag=A] (PIN-10D) stars1277-photodiode, used by ['stars1277-frequencies']\n2024-12-08 13:07:23,271 [INFO] [licaplot.utils.processing] Review step ok.\n```\n\n3. Data reduction\n\n```bash\nlicaplot-tessw --console process  -d data/tessw/ --save\n```\n\n```bash\n2024-12-08 13:10:08,476 [INFO] [root] ============== licaplot.tessw 0.1.dev100+g51c6aa2.d20241208 ==============\n2024-12-08 13:10:08,476 [INFO] [licaplot.tessw] Classifying files in directory data/tessw/\n2024-12-08 13:10:08,534 [INFO] [licaplot.utils.processing] Returning stars6502-frequencies\n2024-12-08 13:10:08,534 [INFO] [licaplot.utils.processing] Returning stars1277-frequencies\n2024-12-08 13:10:08,534 [INFO] [lica.photodiode] Loading Responsivity & QE data from PIN-10D-Responsivity-Cross-Calibrated@1nm.ecsv\n2024-12-08 13:10:08,546 [INFO] [licaplot.utils.processing] Processing stars6502-frequencies with photodidode PIN-10D\n2024-12-08 13:10:08,546 [INFO] [lica.photodiode] Loading Responsivity & QE data from PIN-10D-Responsivity-Cross-Calibrated@1nm.ecsv\n2024-12-08 13:10:08,557 [INFO] [licaplot.utils.processing] Processing stars1277-frequencies with photodidode PIN-10D\n2024-12-08 13:10:08,558 [INFO] [licaplot.utils.processing] Updating ECSV file data/tessw/stars6502-frequencies.ecsv\n2024-12-08 13:10:08,562 [INFO] [licaplot.utils.processing] Updating ECSV file data/tessw/stars1277-frequencies.ecsv\n```\n\n4. Plot the result\n\nthe `-yc 0` denotes the last column\n\n```bash\nlicaplot-csv --console multi -i data/tessw/stars1277-frequencies.ecsv  data/tessw/stars6502-frequencies.ecsv  --overlap -wc 1 -yc 0  --filters --lines\n```\n\n![Sensor comparison](doc/image/sensor_comparison.png)\n\n## Comparing measured TESS-W response with manufactured datasheet\n\nThere is a separate Jupyter notebook on this.\n\n## Generating LICA photodiodes reference\n\nThis is a quick reference of commands and procedure. There is a separate LICA report on the process.\n\n### Hamamatsu S2281-01 diode (licaplot-hama)\n\n#### Stage 1\n\nConvert NPL CSV data into a ECSV file with added metadata and plot it.\n\n```bash\nlicaplot-hama --console stage1 --plot -i data/hamamatsu/S2281-01-Responsivity-NPL.csv\n```\nIt produces a file with the same name as the input file with `.ecsv` extension\n\n#### Stage 2\n\nPlot and merge NPL data with S2281-04 (yes, -04!) datasheet points.\n\nWith no alignment\n\n```bash\nlicaplot-hama --console stage2 --plot --save -i data/hamamatsu/S2281-01-Responsivity-NPL.ecsv -d data/hamamatsu/S2281-04-Responsivity-Datasheet.csv\n```\n\nWith good alignment (x = 16, y = 0.009)\n\n```bash\nlicaplot-hama --console stage2 --plot --save -i data/hamamatsu/S2281-01-Responsivity-NPL.ecsv -d data/hamamatsu/S2281-04-Responsivity-Datasheet.csv -x 16 -y 0.009\n```\nIt produces a file whose name is the same as the input file plus \"+Datasheet.ecsv\" appended, in the same folder.\n(i.e `S2281-01-Responsivity-NPL+Datasheet.ecsv`)\n\n#### Stage 3\n\nInterpolates input ECSV file to a 1 nm resolution with cubic interpolator.\n\n```bash\nlicaplot-hama --console stage3 --plot -i data/hamamatsu/S2281-01-Responsivity-NPL+Datasheet.ecsv -m cubic -r 1 --revision 2024-12\n```\n\n#### Pipeline\n\nThe complete pipeline in one command\n\n```bash\nlicaplot-hama --console pipeline --plot -i data/hamamatsu/S2281-01-Responsivity-NPL.csv -d data/hamamatsu/S2281-04-Responsivity-Datasheet.csv -x 16 -y 0.009 -m cubic -r 1\n```\n### OSI PIN-10D photodiode (licaplot-osi)\n\nBy using the scanned datasheet\n```bash\nlicaplot-osi --console datasheet -i data/osi/PIN-10D-Responsivity-Datasheet.csv -m cubic -r 1 --plot --save --revision 2024-12\n```\nBy using a cross calibration with the Hamamatsu photodiode. The Hamamtsu ECSV file is the one obtained in the section above. It does nota appear in the command line as it is embedded in a Python package that automatically retrieves it.\n\n```bash\nlicaplot-osi --console cross --osi data/osi/QEdata_PIN-10D.txt --hama data/osi/QEdata_S2201-01.txt --plot --save --revision 2024-12\n```\n\nCompare both methods\n```bash\nlicaplot-osi --console compare -c data/osi/OSI\\ PIN-10D+Cross-Calibrated@1nm.ecsv -d data/osi/OSI\\ PIN-10D-Responsivity-Datasheet+Interpolated@1nm.ecsv --plot\n```\n\n***NOTE: We recomemnd using the cross-calibrated method.***\n\n### Plot the packaged ECSV file (licaplot-photod)\n\n```bash\nlicaplot-photod --console plot -m S2281-01\nlicaplot-photod --console plot -m PIN-10D\n```\n\n![Hamamatsu SS2281-01](doc/image/S2281-01.png)\n![OSI PIN-10D](doc/image/PIN-10D.png)\n",
    "bugtrack_url": null,
    "license": "GPL-3.0 license",
    "summary": "Plotting tools to analyze sensors and filters from LICA Optical Bench",
    "version": "0.2.10",
    "project_urls": {
        "Homepage": "https://github.com/guaix-ucm/licaplot",
        "Repository": "https://github.com/guaix-ucm/licaplot.git"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1b51ff0cfc82c1522a6763dd263309460153a33736cbe1d6940484c8f84df99b",
                "md5": "99c8e244fccba11b67eaa4b74f216144",
                "sha256": "ace97651117c485026ed6418fccc0df45adeddceceed8422387c96f8c6dd851c"
            },
            "downloads": -1,
            "filename": "licaplot-0.2.10-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "99c8e244fccba11b67eaa4b74f216144",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 42800,
            "upload_time": "2025-01-30T13:43:40",
            "upload_time_iso_8601": "2025-01-30T13:43:40.137116Z",
            "url": "https://files.pythonhosted.org/packages/1b/51/ff0cfc82c1522a6763dd263309460153a33736cbe1d6940484c8f84df99b/licaplot-0.2.10-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "19cfa38c0436a330a9e7232be919aa4a79d4a8bc693c9f7b6a010d27689ca3cf",
                "md5": "982c90b7ba8692a6e20eddf0a8eb062b",
                "sha256": "1c3e1db45adafb3c30804a4df7d4201c69d2744356d1ffb83f208db53c52ec80"
            },
            "downloads": -1,
            "filename": "licaplot-0.2.10.tar.gz",
            "has_sig": false,
            "md5_digest": "982c90b7ba8692a6e20eddf0a8eb062b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 886852,
            "upload_time": "2025-01-30T13:43:44",
            "upload_time_iso_8601": "2025-01-30T13:43:44.081301Z",
            "url": "https://files.pythonhosted.org/packages/19/cf/a38c0436a330a9e7232be919aa4a79d4a8bc693c9f7b6a010d27689ca3cf/licaplot-0.2.10.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-01-30 13:43:44",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "guaix-ucm",
    "github_project": "licaplot",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "licaplot"
}
        
Elapsed time: 0.51178s