amygda


Nameamygda JSON
Version 1.3.2 PyPI version JSON
download
home_pagehttps://github.com/fowlerlab/amygda
SummaryMeasure the mycobacterial growth in a 96-well plate, thereby determining the MICs
upload_time2024-06-06 15:46:15
maintainerNone
docs_urlNone
authorPhilip W Fowler
requires_pythonNone
licenseUniversity of Oxford License, see LICENSE
keywords amr tb clinical microbiology minimum inhibitory concentration image processing
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![Tests](https://github.com/fowler-lab/amygda/actions/workflows/tests.yaml/badge.svg)](https://github.com/fowler-lab/amygda/actions/workflows/tests.yaml)
[![PyPI version](https://badge.fury.io/py/amygda.svg)](https://badge.fury.io/py/amygda)

# Automated Mycobacterial Growth Detection Algorithm (AMyGDA)

This is a `python3` module that takes a photograph of a 96 well plate and assesses each well for the presence of bacterial growth (here *Mycobacterial tuberculosis*). Since each well contains a different concentration of a different antibiotic, the minimum inhibitory concentration, as used in clinical microbiology, can be determined.

A [paper](https://doi.org/10.1099/mic.0.000733) describing the software and demonstrating its reproducibility and accuracy is available from Microbiology.

The development of this software was funded by the National Institute for Health Research (NIHR) Oxford Biomedical Research Centre (BRC) to aid the [CRyPTIC project](http://www.crypticproject.org).

**Philip W Fowler**

philip.fowler@ndm.ox.ac.uk

27 January 2020

## Citing

Please cite

	Automated detection of bacterial growth on 96-well plates for high-throughput drug susceptibility testing of Mycobacterium tuberculosis
	Philip W Fowler, Ana Luiza Gibertoni Cruz, Sarah J Hoosdally, Lisa Jarrett, Emanuele Borroni, Matteo Chiacchiaretta, Priti Rathod, Sarah Lehmann, Nikolay Molodtsov, Clara Grazian, Timothy M Walker, Esther Robinson, Harald Hoffmann, Timothy EA Peto, Daniela Maria M. Cirillo, E Grace Smith, Derrick W Crook
	Microbiology (2018) 164:1522-1530 doi:10.1099/mic.0.000733

## Installation

This is python3; python2 will not work. Installation is straightforward using the included `setup.py` script. First clone the repository (or download it directly from this GitHub page)

	$ git clone https://github.com/philipwfowler/amygda.git

This will download the repository, creating a folder on your computer called `amygda/`. If you only wish to install the package in your `$HOME` directory (or don't have sudo access) issue the `--user` flag

	$ cd amygda/
	$ python setup.py install --user

Alternatively, to install system-wide

	$ sudo python setup.py install

The setup.py will automatically looks for the required following python packages and, if they are not present, will install them, or if they are an old version, will update them.

The information below is only included in case this process does not work. The prerequisites are

- [`numpy`](http://www.numpy.org) and [`scipy`](https://www.scipy.org). Your python installation often includes numpy and scipy. To check, issue the following in a terminal

		$ python -c "import numpy"
		$ python -c "import scipy"

	If you see an error, indicating `numpy` and/or `scipy` is not installed, please install the scipy stack by following [these instructions](https://www.scipy.org/install.html).
-[`matplotlib`](https://matplotlib.org). If your python installation includes numpy and scipy, there is a good chance it also includes matplotlib. Again to check

		$ python -c "import matplotlib"

You can find installation instructions [here](https://matplotlib.org/2.2.2/users/installing.html).

- [`opencv-python`](https://pypi.python.org/pypi/opencv-python). This can be installed using  standard python tools, such as pip

		$ pip install opencv-python
	`AMyGDA` was developed and tested using version 3.4.0 of `OpenCV`. If you do not have `sudo` access on your machine you can install this (and any other python module) in your `$HOME` directory using the following command

		$ pip install opencv-python --user

- [`datreant`](http://datreant.readthedocs.io/en/latest/). This provides a neat way of storing and discovering metadata for each image using the native filesystem. It is not essential for the operation of `AMyGDA`, but the code would need re-factoring to remove this dependency. Again it can be installed using pip

		$ pip install datreant 

	Note that `datreant` works best if each image is containing within its own folder. `datreant` automatically stores all metadata associated with each image within two `JSON` files in a hidden `.datreant` folder in the same location as the input file.

## Tutorial

The code is structured as a python module; all files for which can be found in the `amygda/` subfolder.

	$ ls
	LICENCE.md                   amygda/                       setup.py
	README.md                    examples/

(You may see other folders like `build/` if you are run the `setup.py` script. To run the tutorial move into the `examples/` sub-folder.

	$ cd examples/
	$ ls
	analyse-plate-with-amygda.py plate-configuration/          sample-images/

`analyse-plate-with-amygda.py` is a simple python file showing how the module can be used to analyse a single image. The fifteen images shown in Figure S1 in the Supplement of the accompanying paper (see above) are provided so you can reconstruct Figures S2, S3, S4 & S12. The images are organised as follows

	$ ls sample-images/
	01 02 03 04 05 06 07 08 09 10 11 12 13 14 15

	$ ls sample-images/01/
	image-01-raw.png

To process and analyse a single image using the default settings is simply

	$ analyse-plate-with-amygda.py --image sample-images/01/image-01-raw.png

And should take no more than 10 seconds. No output is written to the terminal, instead you will find a series of new files have been written in the `samples-images/01` folder.

	$ ls -a sample-images/01/
	.datreant/
	image-01-arrays.npz
	image-01-filtered.png
	image-01-mics.txt
	image-01-processed.png
	image-01-raw.png

* The hidden `.datreant/` folder contains two `JSON` files. `categories.json` contains all the MICs and other metadata about the plate and both can be automatically discovered and read using the `datreant` module to make systematic analyses simpler.
* `image-01-mics.txt` contains the same information as the `JSON` file but in a simpler format that is easier for humans to read.
* `image-01-arrays.npz` contains a series of `numpy` arrays that specify e.g. the percentage growth in each well
* `image-01-raw.png` is the original image of the plate.
* `image-01-msf.jpg` is a JPEG of the plate following mean shift filtering
* `image-01-clahe.jpg` is a JPEG of the plate following mean shift filtering and then a Contrast Limited Adaptive Histogram Equalization filter to improve contrast and equalise the illumination across the plate.
* `image-01-final.jpg` is a JPEG of the plate following both the above filtering operations and a histogram stretch to ensure uniform brightness.
* `image-01-growth.png` adds some annotation; specifically the locations of the wells are drawn, each well is labelled with the name and concentration of drug and wells which AMyGDA has classified as containing bacterial growth are highlighted with a coloured circle.

To see the other options available for the `analyse-plate-with-amygda.py` python script

	$ analyse-plate-with-amygda.py --help
	usage: analyse-plate-with-amygda.py [-h] [--image IMAGE]
                                    [--growth_pixel_threshold GROWTH_PIXEL_THRESHOLD]
                                    [--growth_percentage GROWTH_PERCENTAGE]
                                    [--measured_region MEASURED_REGION]
                                    [--sensitivity SENSITIVITY]
                                    [--file_ending FILE_ENDING]

	optional arguments:
	  -h, --help            show this help message and exit
	  --image IMAGE         the path to the image
	  --growth_pixel_threshold GROWTH_PIXEL_THRESHOLD
				the pixel threshold, below which a pixel is considered
				to be growth (0-255, default=130)
	  --growth_percentage GROWTH_PERCENTAGE
				if the central measured region in a well has more than
				this percentage of pixels labelled as growing, then
				the well is classified as growth (default=2).
	  --measured_region MEASURED_REGION
				the radius of the central measured circle, as a
				decimal proportion of the whole well (default=0.5).
	  --sensitivity SENSITIVITY
				if the average growth in the control wells is more
				than (sensitivity x growth_percentage), then consider
				growth down to this sensitivity (default=4)
	  --file_ending FILE_ENDING
				the ending of the input file that is stripped. Default
				is '-raw'

To analyse all plates, you can either use a simple bash loop

		$ for i in 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15; do
			analyse-plate-with-amygda.py --image sample-images/$i/image-$i-raw.png
		  done;

Alternatively if you have [GNU parallel](https://www.gnu.org/software/parallel/) installed you can use all the cores on your machine to speed up the process.

		$ find sample-images/ -name '*raw.png' | parallel --bar analyse-plate-with-amygda.py --image {}

To delete all the output files, thereby returning sample-images/ to its clean state, a bash script is provided. Use with caution!

	$ cd samples-images/

	$ ls 01/
	image-01-mics.txt
	image-01-arrays.npz                                        image-01-clahe.jpg
	image-01-filtered.jpg                                      image-01-raw.png
	image-01-growth.jpg					   image-01-msf.jpg

	$ bash remove-output-images.sh

	$ ls 01/
	image-01-raw.png



## Licence

The software is available subject to the terms of the attached academic-use licence.

## Adapting for different plate designs

AMyGDA is written to be agnostic to the particular design of plate, or even the number of wells on each plate. The concentration (or dilution) of drug in each well is defined by a series of plaintext files in

	config/

For example the drugs on the UKMYC5 plate is defined within the

	config/UKMYC5-drug-matrix.txt

file and looks like.

	BDQ,KAN,KAN,KAN,KAN,KAN,ETH,ETH,ETH,ETH,ETH,ETH
	BDQ,AMI,EMB,INH,LEV,MXF,DLM,LZD,CFZ,RIF,RFB,PAS
	BDQ,AMI,EMB,INH,LEV,MXF,DLM,LZD,CFZ,RIF,RFB,PAS
	BDQ,AMI,EMB,INH,LEV,MXF,DLM,LZD,CFZ,RIF,RFB,PAS
	BDQ,AMI,EMB,INH,LEV,MXF,DLM,LZD,CFZ,RIF,RFB,PAS
	BDQ,AMI,EMB,INH,LEV,MXF,DLM,LZD,CFZ,RIF,RFB,PAS
	BDQ,AMI,EMB,INH,LEV,MXF,DLM,LZD,CFZ,RIF,RFB,PAS
	BDQ,EMB,EMB,INH,LEV,MXF,DLM,LZD,CFZ,RIF,POS,POS
	
Adding a new plate design is simply a matter of creating new files specifying the drug, concentration and dilution of each well. Note that changing the *number* of wells at present also involves specifying the well_dimensions when creating a PlateMeasurement object. Currently this defaults to (8,12) i.e. a 96-well plate in landscape orientation. As an example, the configuration files for the UKMYC6 plate, which is the successor to the UKMYC5 plate, are included although all the provided examples are of UKMYC5 plates.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/fowlerlab/amygda",
    "name": "amygda",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "AMR, TB, clinical microbiology, minimum inhibitory concentration, image processing",
    "author": "Philip W Fowler",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/35/77/2e944534b7d51287e1e5a779130587d1070eb94e73d8e8ef62095109d29f/amygda-1.3.2.tar.gz",
    "platform": null,
    "description": "[![Tests](https://github.com/fowler-lab/amygda/actions/workflows/tests.yaml/badge.svg)](https://github.com/fowler-lab/amygda/actions/workflows/tests.yaml)\n[![PyPI version](https://badge.fury.io/py/amygda.svg)](https://badge.fury.io/py/amygda)\n\n# Automated Mycobacterial Growth Detection Algorithm (AMyGDA)\n\nThis is a `python3` module that takes a photograph of a 96 well plate and assesses each well for the presence of bacterial growth (here *Mycobacterial tuberculosis*). Since each well contains a different concentration of a different antibiotic, the minimum inhibitory concentration, as used in clinical microbiology, can be determined.\n\nA [paper](https://doi.org/10.1099/mic.0.000733) describing the software and demonstrating its reproducibility and accuracy is available from Microbiology.\n\nThe development of this software was funded by the National Institute for Health Research (NIHR) Oxford Biomedical Research Centre (BRC) to aid the [CRyPTIC project](http://www.crypticproject.org).\n\n**Philip W Fowler**\n\nphilip.fowler@ndm.ox.ac.uk\n\n27 January 2020\n\n## Citing\n\nPlease cite\n\n\tAutomated detection of bacterial growth on 96-well plates for high-throughput drug susceptibility testing of Mycobacterium tuberculosis\n\tPhilip W Fowler, Ana Luiza Gibertoni Cruz, Sarah J Hoosdally, Lisa Jarrett, Emanuele Borroni, Matteo Chiacchiaretta, Priti Rathod, Sarah Lehmann, Nikolay Molodtsov, Clara Grazian, Timothy M Walker, Esther Robinson, Harald Hoffmann, Timothy EA Peto, Daniela Maria M. Cirillo, E Grace Smith, Derrick W Crook\n\tMicrobiology (2018) 164:1522-1530 doi:10.1099/mic.0.000733\n\n## Installation\n\nThis is python3; python2 will not work. Installation is straightforward using the included `setup.py` script. First clone the repository (or download it directly from this GitHub page)\n\n\t$ git clone https://github.com/philipwfowler/amygda.git\n\nThis will download the repository, creating a folder on your computer called `amygda/`. If you only wish to install the package in your `$HOME` directory (or don't have sudo access) issue the `--user` flag\n\n\t$ cd amygda/\n\t$ python setup.py install --user\n\nAlternatively, to install system-wide\n\n\t$ sudo python setup.py install\n\nThe setup.py will automatically looks for the required following python packages and, if they are not present, will install them, or if they are an old version, will update them.\n\nThe information below is only included in case this process does not work. The prerequisites are\n\n- [`numpy`](http://www.numpy.org) and [`scipy`](https://www.scipy.org). Your python installation often includes numpy and scipy. To check, issue the following in a terminal\n\n\t\t$ python -c \"import numpy\"\n\t\t$ python -c \"import scipy\"\n\n\tIf you see an error, indicating `numpy` and/or `scipy` is not installed, please install the scipy stack by following [these instructions](https://www.scipy.org/install.html).\n-[`matplotlib`](https://matplotlib.org). If your python installation includes numpy and scipy, there is a good chance it also includes matplotlib. Again to check\n\n\t\t$ python -c \"import matplotlib\"\n\nYou can find installation instructions [here](https://matplotlib.org/2.2.2/users/installing.html).\n\n- [`opencv-python`](https://pypi.python.org/pypi/opencv-python). This can be installed using  standard python tools, such as pip\n\n\t\t$ pip install opencv-python\n\t`AMyGDA` was developed and tested using version 3.4.0 of `OpenCV`. If you do not have `sudo` access on your machine you can install this (and any other python module) in your `$HOME` directory using the following command\n\n\t\t$ pip install opencv-python --user\n\n- [`datreant`](http://datreant.readthedocs.io/en/latest/). This provides a neat way of storing and discovering metadata for each image using the native filesystem. It is not essential for the operation of `AMyGDA`, but the code would need re-factoring to remove this dependency. Again it can be installed using pip\n\n\t\t$ pip install datreant \n\n\tNote that `datreant` works best if each image is containing within its own folder. `datreant` automatically stores all metadata associated with each image within two `JSON` files in a hidden `.datreant` folder in the same location as the input file.\n\n## Tutorial\n\nThe code is structured as a python module; all files for which can be found in the `amygda/` subfolder.\n\n\t$ ls\n\tLICENCE.md                   amygda/                       setup.py\n\tREADME.md                    examples/\n\n(You may see other folders like `build/` if you are run the `setup.py` script. To run the tutorial move into the `examples/` sub-folder.\n\n\t$ cd examples/\n\t$ ls\n\tanalyse-plate-with-amygda.py plate-configuration/          sample-images/\n\n`analyse-plate-with-amygda.py` is a simple python file showing how the module can be used to analyse a single image. The fifteen images shown in Figure S1 in the Supplement of the accompanying paper (see above) are provided so you can reconstruct Figures S2, S3, S4 & S12. The images are organised as follows\n\n\t$ ls sample-images/\n\t01 02 03 04 05 06 07 08 09 10 11 12 13 14 15\n\n\t$ ls sample-images/01/\n\timage-01-raw.png\n\nTo process and analyse a single image using the default settings is simply\n\n\t$ analyse-plate-with-amygda.py --image sample-images/01/image-01-raw.png\n\nAnd should take no more than 10 seconds. No output is written to the terminal, instead you will find a series of new files have been written in the `samples-images/01` folder.\n\n\t$ ls -a sample-images/01/\n\t.datreant/\n\timage-01-arrays.npz\n\timage-01-filtered.png\n\timage-01-mics.txt\n\timage-01-processed.png\n\timage-01-raw.png\n\n* The hidden `.datreant/` folder contains two `JSON` files. `categories.json` contains all the MICs and other metadata about the plate and both can be automatically discovered and read using the `datreant` module to make systematic analyses simpler.\n* `image-01-mics.txt` contains the same information as the `JSON` file but in a simpler format that is easier for humans to read.\n* `image-01-arrays.npz` contains a series of `numpy` arrays that specify e.g. the percentage growth in each well\n* `image-01-raw.png` is the original image of the plate.\n* `image-01-msf.jpg` is a JPEG of the plate following mean shift filtering\n* `image-01-clahe.jpg` is a JPEG of the plate following mean shift filtering and then a Contrast Limited Adaptive Histogram Equalization filter to improve contrast and equalise the illumination across the plate.\n* `image-01-final.jpg` is a JPEG of the plate following both the above filtering operations and a histogram stretch to ensure uniform brightness.\n* `image-01-growth.png` adds some annotation; specifically the locations of the wells are drawn, each well is labelled with the name and concentration of drug and wells which AMyGDA has classified as containing bacterial growth are highlighted with a coloured circle.\n\nTo see the other options available for the `analyse-plate-with-amygda.py` python script\n\n\t$ analyse-plate-with-amygda.py --help\n\tusage: analyse-plate-with-amygda.py [-h] [--image IMAGE]\n                                    [--growth_pixel_threshold GROWTH_PIXEL_THRESHOLD]\n                                    [--growth_percentage GROWTH_PERCENTAGE]\n                                    [--measured_region MEASURED_REGION]\n                                    [--sensitivity SENSITIVITY]\n                                    [--file_ending FILE_ENDING]\n\n\toptional arguments:\n\t  -h, --help            show this help message and exit\n\t  --image IMAGE         the path to the image\n\t  --growth_pixel_threshold GROWTH_PIXEL_THRESHOLD\n\t\t\t\tthe pixel threshold, below which a pixel is considered\n\t\t\t\tto be growth (0-255, default=130)\n\t  --growth_percentage GROWTH_PERCENTAGE\n\t\t\t\tif the central measured region in a well has more than\n\t\t\t\tthis percentage of pixels labelled as growing, then\n\t\t\t\tthe well is classified as growth (default=2).\n\t  --measured_region MEASURED_REGION\n\t\t\t\tthe radius of the central measured circle, as a\n\t\t\t\tdecimal proportion of the whole well (default=0.5).\n\t  --sensitivity SENSITIVITY\n\t\t\t\tif the average growth in the control wells is more\n\t\t\t\tthan (sensitivity x growth_percentage), then consider\n\t\t\t\tgrowth down to this sensitivity (default=4)\n\t  --file_ending FILE_ENDING\n\t\t\t\tthe ending of the input file that is stripped. Default\n\t\t\t\tis '-raw'\n\nTo analyse all plates, you can either use a simple bash loop\n\n\t\t$ for i in 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15; do\n\t\t\tanalyse-plate-with-amygda.py --image sample-images/$i/image-$i-raw.png\n\t\t  done;\n\nAlternatively if you have [GNU parallel](https://www.gnu.org/software/parallel/) installed you can use all the cores on your machine to speed up the process.\n\n\t\t$ find sample-images/ -name '*raw.png' | parallel --bar analyse-plate-with-amygda.py --image {}\n\nTo delete all the output files, thereby returning sample-images/ to its clean state, a bash script is provided. Use with caution!\n\n\t$ cd samples-images/\n\n\t$ ls 01/\n\timage-01-mics.txt\n\timage-01-arrays.npz                                        image-01-clahe.jpg\n\timage-01-filtered.jpg                                      image-01-raw.png\n\timage-01-growth.jpg\t\t\t\t\t   image-01-msf.jpg\n\n\t$ bash remove-output-images.sh\n\n\t$ ls 01/\n\timage-01-raw.png\n\n\n\n## Licence\n\nThe software is available subject to the terms of the attached academic-use licence.\n\n## Adapting for different plate designs\n\nAMyGDA is written to be agnostic to the particular design of plate, or even the number of wells on each plate. The concentration (or dilution) of drug in each well is defined by a series of plaintext files in\n\n\tconfig/\n\nFor example the drugs on the UKMYC5 plate is defined within the\n\n\tconfig/UKMYC5-drug-matrix.txt\n\nfile and looks like.\n\n\tBDQ,KAN,KAN,KAN,KAN,KAN,ETH,ETH,ETH,ETH,ETH,ETH\n\tBDQ,AMI,EMB,INH,LEV,MXF,DLM,LZD,CFZ,RIF,RFB,PAS\n\tBDQ,AMI,EMB,INH,LEV,MXF,DLM,LZD,CFZ,RIF,RFB,PAS\n\tBDQ,AMI,EMB,INH,LEV,MXF,DLM,LZD,CFZ,RIF,RFB,PAS\n\tBDQ,AMI,EMB,INH,LEV,MXF,DLM,LZD,CFZ,RIF,RFB,PAS\n\tBDQ,AMI,EMB,INH,LEV,MXF,DLM,LZD,CFZ,RIF,RFB,PAS\n\tBDQ,AMI,EMB,INH,LEV,MXF,DLM,LZD,CFZ,RIF,RFB,PAS\n\tBDQ,EMB,EMB,INH,LEV,MXF,DLM,LZD,CFZ,RIF,POS,POS\n\t\nAdding a new plate design is simply a matter of creating new files specifying the drug, concentration and dilution of each well. Note that changing the *number* of wells at present also involves specifying the well_dimensions when creating a PlateMeasurement object. Currently this defaults to (8,12) i.e. a 96-well plate in landscape orientation. As an example, the configuration files for the UKMYC6 plate, which is the successor to the UKMYC5 plate, are included although all the provided examples are of UKMYC5 plates.\n",
    "bugtrack_url": null,
    "license": "University of Oxford License, see LICENSE",
    "summary": "Measure the mycobacterial growth in a 96-well plate, thereby determining the MICs",
    "version": "1.3.2",
    "project_urls": {
        "Homepage": "https://github.com/fowlerlab/amygda"
    },
    "split_keywords": [
        "amr",
        " tb",
        " clinical microbiology",
        " minimum inhibitory concentration",
        " image processing"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "140f57644b0201af3343a150167e548f463c0c3aad24d109aed4b28259a59dee",
                "md5": "0006ac9f172f503c36d4784d0a5a8f5f",
                "sha256": "516052e0b0d2ec6a61868ed559edae8733f73c4f2288848c869fd8f5a493244f"
            },
            "downloads": -1,
            "filename": "amygda-1.3.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "0006ac9f172f503c36d4784d0a5a8f5f",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 23548,
            "upload_time": "2024-06-06T15:46:13",
            "upload_time_iso_8601": "2024-06-06T15:46:13.916338Z",
            "url": "https://files.pythonhosted.org/packages/14/0f/57644b0201af3343a150167e548f463c0c3aad24d109aed4b28259a59dee/amygda-1.3.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "35772e944534b7d51287e1e5a779130587d1070eb94e73d8e8ef62095109d29f",
                "md5": "23b83e0ea87bc7d9077a8f22c1d9cc9a",
                "sha256": "9244d21bef29ebb741c4780494e26b9c7a03729b59a63ec2977ae938bd028f41"
            },
            "downloads": -1,
            "filename": "amygda-1.3.2.tar.gz",
            "has_sig": false,
            "md5_digest": "23b83e0ea87bc7d9077a8f22c1d9cc9a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 24546,
            "upload_time": "2024-06-06T15:46:15",
            "upload_time_iso_8601": "2024-06-06T15:46:15.521350Z",
            "url": "https://files.pythonhosted.org/packages/35/77/2e944534b7d51287e1e5a779130587d1070eb94e73d8e8ef62095109d29f/amygda-1.3.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-06-06 15:46:15",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "fowlerlab",
    "github_project": "amygda",
    "github_not_found": true,
    "lcname": "amygda"
}
        
Elapsed time: 0.46049s