pyspa


Namepyspa JSON
Version 2.4 PyPI version JSON
download
home_pagehttps://github.com/hybridlca/pyspa
SummaryAn object-oriented python package for advanced structural path analysis
upload_time2023-03-17 11:23:46
maintainer
docs_urlNone
authorAndré Stephan & Paul-Antoine Bontinck
requires_python
licenseGNU General Public License v3.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![pyspa banner](https://github.com/hybridlca/pyspa/blob/master/banner.png?raw=true)

__pyspa__ is an object-oriented __python__ package which enables you to conduct a parametric structural path analysis on square A matrices (process or input-output) for any number of environmental, social or economic satellites/flows and for any number of stages upstream in your supply chain (as long you have enough RAM). The package produces a SupplyChain object which includes Pathway and Node objects (among others). Results can be exported to the csv format with a single line of code.

The concept behind __pyspa__ was driven by the lack of open source code to conduct structural path analysis in a robust and object-oriented manner.

## Getting Started

### Prerequisites

You will need __python__ to run this package as well as the following python packages:
1. [numpy](https://www.numpy.org/)
2. [pandas](https://pandas.pydata.org/)
3. [scipy](https://scipy.org/) - To support the use of sparse A matrices

### Installing
Download and install the package from pip

```
pip install pyspa
```

## Testing pyspa

Identify the template files in the installed directory, or download them directly from the [github repository](https://github.com/hybridlca/pyspa/). The template files include:

1. A_matrix_template.csv
2. Infosheet_template.csv
3. Thresholds_template.csv
4. Thresholds_template_perc.csv

Once you have located these files, __you need to run a single function__ that will read the data, conduct the structural path analysis and return a SupplyChain object, as per the following code.

```
sc = pyspa.get_spa(target_ID = 70, max_stage = 10, a_matrix ='A_matrix_template.csv', infosheet='Infosheet_template.csv', thresholds='Thresholds_template.csv')
```

This will return your SupplyChain object which has numerous methods. Read the [documentation](http://htmlpreview.github.io/?https://github.com/hybridlca/pyspa/blob/master/pyspa.html) for more information.

Note that from pyspa 2.0 forward, this will also, by default, breakdown the remainder of the supply chain (not covered by your spa) into remainder pathways.
You can also provide the thresholds as percentages of the total value, which is more convenient. To do so, simply use the call:

```
sc = pyspa.get_spa(target_ID = 70, max_stage = 10, a_matrix ='A_matrix_template.csv', infosheet='Infosheet_template.csv', thresholds='Thresholds_template_perc.csv', thresholds_as_percentages=True)
```

To export the structural path analysis to a __csv__ file, use the built-in method.

```
sc.export_to_csv('spa_results.csv')
```

To __save__ your SupplyChain object and avoid having to recalculate everything (this uses pickle):

```
sc.save('supply_chain.sc')
```

To __load__ a previously saved SupplyChain object:

```
loaded_sc = pyspa.load_instance_from_file('supply_chain.sc', pyspa.SupplyChain)
```

We have developped the required python methods on each object so that you can __compare__ them. Thus,

```
sc == loaded_sc
```
or
```
sc.pathways_list[-1] == loaded_sc.pathways_list[-1]
```
or
```
sc.root_node == loaded_sc.root_node
```

will return _True_.

The __detailed documentation__ is available [here](http://htmlpreview.github.io/?https://github.com/hybridlca/pyspa/blob/master/pyspa.html)

## Input files

### Description
The package requires three csv files to be able to conduct a structural path analysis:
1. A __square__ technological matrix, aka an A matrix
2. An infosheet listing all sectors or processes, along with the direct and total intensities/multipliers/requirements for any number of environmental/economic/social satellites, and their metadata
3. The cut-off thresholds used to trim the supply chain branches for each satellite. These can be provided either as absolute values or as percentages of the total intensity of the target sector/process.

These csv files must be formatted in a certain way for the code to work. The formatting requirements are described below.

### Formatting

#### Square technological matrix (A matrix)
The A matrix should be provided in a single csv file, regardless of its size (we have tried the code on 15k×15k matrix so far, and it works fine). It must be formatted as follows:

+ The top row must be the indexes of the sectors/processes, numbered from 1 to n.
+ The rest of the matrix comes underneath that row.
+ No text headers nor text content

_Preview of A matrix csv layout ↓_

| 1                                 | ...                                 | n                                 |
| :-------------------------------: |:-----------------------------------:| :--------------------------------:|
| <A matrix: input from 1 into 1>   | <A matrix: input from 1 into ...>   | <A matrix: input from 1 into n>   |
| <A matrix: input from ... into 1> | <A matrix: input from ... into ...> | <A matrix: input from ... into n> |
| <A matrix: input from n into 1>   | <A matrix: input from n into ...>   | <A matrix: input from n into n&gt;   |


#### Infosheet

The infosheet must contain mandatory columns and at least one environmental/social/economic satellite/flow. It must be formatted as follows (all headers are case sensitive):

+ The __first column__ has a header called __"Sector ID"__ and contains the IDs of each sector/process from 1 to n. These IDs match those included as a header in the __A matrix__.
+ The __second column__ has a header called __"Name"__ and contains the name of each sector/process. It is highly recommended to have unique names as the csv output of the package uses names (not IDs).
+ The __third column__ has a header called __"Unit"__ and contains the functional unit of each sector/process. It is usually a financial currency for input-output sectors (e.g. AUD, USD, EUR, YEN, etc.) and can be a physical unit for processes (e.g. kg, m³, tkm, etc.).
+ The __fourth column__ has a header called __"Region"__ and contains the region of each sector processs. If you are not working with multiregional data, simply populate this column with the name of the region for your data (for instance in the template file, the region for all sectors is _"Australia"_.
+ From the __fifth column__ onwards you need to include at least one satellite/flow. Satellites/flows are included using __two columns__:
  +The first column contains the direct intensity/multiplier/requirement for your satellite/flow and has a header in the following format: 
  __DR\_<satellite/flow_name>\_(<satellite/flow_unit>)__
  For example, for greenhouse gas emissions, you can write: __DR\_GHGe\_(kgCO<sub>2</sub>e)__
  +The second column contains the total intensity/multiplier/requirement for your satellite/flow and has a header in the following format: 
  __TR\_<satellite/flow_name>\_(<satellite/flow_unit>)__
  For example, for greenhouse gas emissions, you can write: __TR\_GHGe\_(kgCO<sub>2</sub>e)__
  
You can add as many satellites as you need to the infosheet. The code will detect them automatically, as long as their headers are formatted as above.
You can also add any other metadata column for your sectors/processes, and then access them through manual coding using the predefined method on your _Node_ objects: _get\_node\_attribute_. See the [__detailed documentation__](http://htmlpreview.github.io/?https://github.com/hybridlca/pyspa/blob/master/pyspa_v1.0_documentation.html) for more details.

#### Thresholds

The thresholds csv is by far the simplest csv file to provide. It contains only __two columns__ and must be formatted as below:

+ The __first column__ has a header called __"Flow"__ which contains the name of each satellite/flow that you are using, e.g. GHGe. The name of the satellite/flow must be exactly the same as what is contained in the DR and TR headers of the infosheet, but without the __DR/TR\___ prefix and without the __\_(<satellite/flow_unit>)__ suffix.
+ The __second column__ has a header called __"Value"__ which contains the threshold value of each satellite/flow that you are using, e.g. GHGe.
Two options are available for the __"Value"__ field:
1. If you use absolute values is usually very low. For common environmental satellites/flows, such as water(kL), energy(GJ) and greenhouse gas emissions(kgCO<sub>2</sub>e), we use threshold values for input-output data in the range of 0.000 1 and 0.000 000 000 1. The lower the threshold, the more supply chain nodes you consider, the longer the structural path analysis will take.
2. If you use relative values (i.e. percentages of the total intensity of you target sector/process), you simply enter the percentage to be used, e.g. for 0.1%, enter 0.1.

## CSV output file

The csv output file contains some metadata on the structural path analysis itself and then lists, for each satellite/flow, the pathways extracted, by order of significance in terms of the direct intensity/multiplier/requirement of the last node in that pathway. The columns for these listing are:
+ The percentage of contribution of that last node in that pathway, to the total intensity/multiplier/requirement of the selected sector/process is provided
+ The value of the corresponding direct intensity/multiplier/requirement
+ The value of the corresponding total intensity/multiplier/requirement
+ The name of each node in the pathway, for each stage of the supply chain (1 to n).

The direct intensity/multiplier/requirement of the selected sector/process is referred to as _DIRECT (Stage 0)_. _Stage 1_ refers to the first stage upstream in the supply chain, _Stage 2_ the following stage, all the way to _Stage m_ as selected at the start. We recommend using around __10 stages__ upstream for process data, and __8 stages__ upstream for input-output data, based on our experience. But these values might differ.
Remainder pathways are appended at the end of the spa and broken down across the supply chain, identifying clearly where the thresholds were used to cut-off pathways that did not meet the threshold criteria.

__Note__: The results for each satellite/flow are listed on the same csv sheet, in the order the appear in the infosheet. You will need to scroll down to identify where each new satellite/flow results starts, which is indicated by a header and an empty row. For those using Windows, you can click on any pathway for any given satellite/flow and press: "Ctrl + Shift + ↓". This will take you to the last pathway for this satellite/flow.


## Other ways to call pyspa.get_spa()

You can also call pyspa.get_spa using objects in the RAM instead of csv files. That is, a numpy array or scipy sparse array for the A matrix, and dictionaries for the infosheet and thresholds. You can also mix and match between objects in the RAM and csv files, for addtitional flexibility.

## Built with:

+ [pycharm](https://www.jetbrains.com/pycharm/)
+ [sourcetree](https://www.sourcetreeapp.com/)
+ Sweat, tears, Belgian beers, and coffee from Castro's

## Authors and contributors

### Authors
+ [André Stephan](https://github.com/andrestephan1) - _overall design, implementation, testing and debugging_ - [ORCID](https://orcid.org/0000-0001-9538-3830)
+ [Paul-Antoine Bontinck](https://github.com/pa-bontinck) - _optimisation, implementation, testing and debugging_ - [ORCID](https://orcid.org/0000-0002-4072-1334)
### Contributors
+ [Robert H Crawford](https://github.com/rhcr) - _project leader and theoretical guidance_ - [ORCID](https://orcid.org/0000-0002-0189-3221)
+ [Fabian Prideaux](https://github.com/fabianpx) - _proof reading documentation, testing package installation_

## License
This project is shared under a GNU General Public License v3.0. See the [LICENSE](../master/LICENSE) file for more information.

## Acknowledgments

This project was originally funded by the __Australian Research Council Discovery Project DP150100962__ at the [University of Melbourne](https://unimelb.edu.au/), Australia. As such, we are endebted to Australian taxpayers for making this work possible and to the University of Melbourne for providing the facilities and intellectual space to conduct this research. The code for the base method for conducting the structural path analysis is inspired from the code of late __[A/Prof Graham Treloar](https://new.gbca.org.au/news/gbca-news/how-legacy-late-green-building-researcher-lives/)__ at the University of Melbourne, who pioneered a Visual Basic Script in his [PhD thesis](https://dro.deakin.edu.au/eserv/DU:30023444/treloar-comprehensiveembodied-1998.pdf) to conduct a structural path analysis in 1997.








            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/hybridlca/pyspa",
    "name": "pyspa",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Andr\u00e9 Stephan & Paul-Antoine Bontinck",
    "author_email": "stephan.andre@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/20/46/d7a2b901c5b87918761be5e661a1188ded09aa46cd83d0564471286bed3d/pyspa-2.4.tar.gz",
    "platform": null,
    "description": "![pyspa banner](https://github.com/hybridlca/pyspa/blob/master/banner.png?raw=true)\r\n\r\n__pyspa__ is an object-oriented __python__ package which enables you to conduct a parametric structural path analysis on square A matrices (process or input-output) for any number of environmental, social or economic satellites/flows and for any number of stages upstream in your supply chain (as long you have enough RAM). The package produces a SupplyChain object which includes Pathway and Node objects (among others). Results can be exported to the csv format with a single line of code.\r\n\r\nThe concept behind __pyspa__ was driven by the lack of open source code to conduct structural path analysis in a robust and object-oriented manner.\r\n\r\n## Getting Started\r\n\r\n### Prerequisites\r\n\r\nYou will need __python__ to run this package as well as the following python packages:\r\n1. [numpy](https://www.numpy.org/)\r\n2. [pandas](https://pandas.pydata.org/)\r\n3. [scipy](https://scipy.org/) - To support the use of sparse A matrices\r\n\r\n### Installing\r\nDownload and install the package from pip\r\n\r\n```\r\npip install pyspa\r\n```\r\n\r\n## Testing pyspa\r\n\r\nIdentify the template files in the installed directory, or download them directly from the [github repository](https://github.com/hybridlca/pyspa/). The template files include:\r\n\r\n1. A_matrix_template.csv\r\n2. Infosheet_template.csv\r\n3. Thresholds_template.csv\r\n4. Thresholds_template_perc.csv\r\n\r\nOnce you have located these files, __you need to run a single function__ that will read the data, conduct the structural path analysis and return a SupplyChain object, as per the following code.\r\n\r\n```\r\nsc = pyspa.get_spa(target_ID = 70, max_stage = 10, a_matrix ='A_matrix_template.csv', infosheet='Infosheet_template.csv', thresholds='Thresholds_template.csv')\r\n```\r\n\r\nThis will return your SupplyChain object which has numerous methods. Read the [documentation](http://htmlpreview.github.io/?https://github.com/hybridlca/pyspa/blob/master/pyspa.html) for more information.\r\n\r\nNote that from pyspa 2.0 forward, this will also, by default, breakdown the remainder of the supply chain (not covered by your spa) into remainder pathways.\r\nYou can also provide the thresholds as percentages of the total value, which is more convenient. To do so, simply use the call:\r\n\r\n```\r\nsc = pyspa.get_spa(target_ID = 70, max_stage = 10, a_matrix ='A_matrix_template.csv', infosheet='Infosheet_template.csv', thresholds='Thresholds_template_perc.csv', thresholds_as_percentages=True)\r\n```\r\n\r\nTo export the structural path analysis to a __csv__ file, use the built-in method.\r\n\r\n```\r\nsc.export_to_csv('spa_results.csv')\r\n```\r\n\r\nTo __save__ your SupplyChain object and avoid having to recalculate everything (this uses pickle):\r\n\r\n```\r\nsc.save('supply_chain.sc')\r\n```\r\n\r\nTo __load__ a previously saved SupplyChain object:\r\n\r\n```\r\nloaded_sc = pyspa.load_instance_from_file('supply_chain.sc', pyspa.SupplyChain)\r\n```\r\n\r\nWe have developped the required python methods on each object so that you can __compare__ them. Thus,\r\n\r\n```\r\nsc == loaded_sc\r\n```\r\nor\r\n```\r\nsc.pathways_list[-1] == loaded_sc.pathways_list[-1]\r\n```\r\nor\r\n```\r\nsc.root_node == loaded_sc.root_node\r\n```\r\n\r\nwill return _True_.\r\n\r\nThe __detailed documentation__ is available [here](http://htmlpreview.github.io/?https://github.com/hybridlca/pyspa/blob/master/pyspa.html)\r\n\r\n## Input files\r\n\r\n### Description\r\nThe package requires three csv files to be able to conduct a structural path analysis:\r\n1. A __square__ technological matrix, aka an A matrix\r\n2. An infosheet listing all sectors or processes, along with the direct and total intensities/multipliers/requirements for any number of environmental/economic/social satellites, and their metadata\r\n3. The cut-off thresholds used to trim the supply chain branches for each satellite. These can be provided either as absolute values or as percentages of the total intensity of the target sector/process.\r\n\r\nThese csv files must be formatted in a certain way for the code to work. The formatting requirements are described below.\r\n\r\n### Formatting\r\n\r\n#### Square technological matrix (A matrix)\r\nThe A matrix should be provided in a single csv file, regardless of its size (we have tried the code on 15k\u00c3\u201415k matrix so far, and it works fine). It must be formatted as follows:\r\n\r\n+ The top row must be the indexes of the sectors/processes, numbered from 1 to n.\r\n+ The rest of the matrix comes underneath that row.\r\n+ No text headers nor text content\r\n\r\n_Preview of A matrix csv layout \u00e2\u2020\u201c_\r\n\r\n| 1                                 | ...                                 | n                                 |\r\n| :-------------------------------: |:-----------------------------------:| :--------------------------------:|\r\n| <A matrix: input from 1 into 1>   | <A matrix: input from 1 into ...>   | <A matrix: input from 1 into n>   |\r\n| <A matrix: input from ... into 1> | <A matrix: input from ... into ...> | <A matrix: input from ... into n> |\r\n| <A matrix: input from n into 1>   | <A matrix: input from n into ...>   | <A matrix: input from n into n&gt;   |\r\n\r\n\r\n#### Infosheet\r\n\r\nThe infosheet must contain mandatory columns and at least one environmental/social/economic satellite/flow. It must be formatted as follows (all headers are case sensitive):\r\n\r\n+ The __first column__ has a header called __\"Sector ID\"__ and contains the IDs of each sector/process from 1 to n. These IDs match those included as a header in the __A matrix__.\r\n+ The __second column__ has a header called __\"Name\"__ and contains the name of each sector/process. It is highly recommended to have unique names as the csv output of the package uses names (not IDs).\r\n+ The __third column__ has a header called __\"Unit\"__ and contains the functional unit of each sector/process. It is usually a financial currency for input-output sectors (e.g. AUD, USD, EUR, YEN, etc.) and can be a physical unit for processes (e.g. kg, m\u00c2\u00b3, tkm, etc.).\r\n+ The __fourth column__ has a header called __\"Region\"__ and contains the region of each sector processs. If you are not working with multiregional data, simply populate this column with the name of the region for your data (for instance in the template file, the region for all sectors is _\"Australia\"_.\r\n+ From the __fifth column__ onwards you need to include at least one satellite/flow. Satellites/flows are included using __two columns__:\r\n  +The first column contains the direct intensity/multiplier/requirement for your satellite/flow and has a header in the following format: \r\n  __DR\\_<satellite/flow_name>\\_(<satellite/flow_unit>)__\r\n  For example, for greenhouse gas emissions, you can write: __DR\\_GHGe\\_(kgCO<sub>2</sub>e)__\r\n  +The second column contains the total intensity/multiplier/requirement for your satellite/flow and has a header in the following format: \r\n  __TR\\_<satellite/flow_name>\\_(<satellite/flow_unit>)__\r\n  For example, for greenhouse gas emissions, you can write: __TR\\_GHGe\\_(kgCO<sub>2</sub>e)__\r\n  \r\nYou can add as many satellites as you need to the infosheet. The code will detect them automatically, as long as their headers are formatted as above.\r\nYou can also add any other metadata column for your sectors/processes, and then access them through manual coding using the predefined method on your _Node_ objects: _get\\_node\\_attribute_. See the [__detailed documentation__](http://htmlpreview.github.io/?https://github.com/hybridlca/pyspa/blob/master/pyspa_v1.0_documentation.html) for more details.\r\n\r\n#### Thresholds\r\n\r\nThe thresholds csv is by far the simplest csv file to provide. It contains only __two columns__ and must be formatted as below:\r\n\r\n+ The __first column__ has a header called __\"Flow\"__ which contains the name of each satellite/flow that you are using, e.g. GHGe. The name of the satellite/flow must be exactly the same as what is contained in the DR and TR headers of the infosheet, but without the __DR/TR\\___ prefix and without the __\\_(<satellite/flow_unit>)__ suffix.\r\n+ The __second column__ has a header called __\"Value\"__ which contains the threshold value of each satellite/flow that you are using, e.g. GHGe.\r\nTwo options are available for the __\"Value\"__ field:\r\n1. If you use absolute values is usually very low. For common environmental satellites/flows, such as water(kL), energy(GJ) and greenhouse gas emissions(kgCO<sub>2</sub>e), we use threshold values for input-output data in the range of 0.000 1 and 0.000 000 000 1. The lower the threshold, the more supply chain nodes you consider, the longer the structural path analysis will take.\r\n2. If you use relative values (i.e. percentages of the total intensity of you target sector/process), you simply enter the percentage to be used, e.g. for 0.1%, enter 0.1.\r\n\r\n## CSV output file\r\n\r\nThe csv output file contains some metadata on the structural path analysis itself and then lists, for each satellite/flow, the pathways extracted, by order of significance in terms of the direct intensity/multiplier/requirement of the last node in that pathway. The columns for these listing are:\r\n+ The percentage of contribution of that last node in that pathway, to the total intensity/multiplier/requirement of the selected sector/process is provided\r\n+ The value of the corresponding direct intensity/multiplier/requirement\r\n+ The value of the corresponding total intensity/multiplier/requirement\r\n+ The name of each node in the pathway, for each stage of the supply chain (1 to n).\r\n\r\nThe direct intensity/multiplier/requirement of the selected sector/process is referred to as _DIRECT (Stage 0)_. _Stage 1_ refers to the first stage upstream in the supply chain, _Stage 2_ the following stage, all the way to _Stage m_ as selected at the start. We recommend using around __10 stages__ upstream for process data, and __8 stages__ upstream for input-output data, based on our experience. But these values might differ.\r\nRemainder pathways are appended at the end of the spa and broken down across the supply chain, identifying clearly where the thresholds were used to cut-off pathways that did not meet the threshold criteria.\r\n\r\n__Note__: The results for each satellite/flow are listed on the same csv sheet, in the order the appear in the infosheet. You will need to scroll down to identify where each new satellite/flow results starts, which is indicated by a header and an empty row. For those using Windows, you can click on any pathway for any given satellite/flow and press: \"Ctrl + Shift + \u00e2\u2020\u201c\". This will take you to the last pathway for this satellite/flow.\r\n\r\n\r\n## Other ways to call pyspa.get_spa()\r\n\r\nYou can also call pyspa.get_spa using objects in the RAM instead of csv files. That is, a numpy array or scipy sparse array for the A matrix, and dictionaries for the infosheet and thresholds. You can also mix and match between objects in the RAM and csv files, for addtitional flexibility.\r\n\r\n## Built with:\r\n\r\n+ [pycharm](https://www.jetbrains.com/pycharm/)\r\n+ [sourcetree](https://www.sourcetreeapp.com/)\r\n+ Sweat, tears, Belgian beers, and coffee from Castro's\r\n\r\n## Authors and contributors\r\n\r\n### Authors\r\n+ [Andr\u00c3\u00a9 Stephan](https://github.com/andrestephan1) - _overall design, implementation, testing and debugging_ - [ORCID](https://orcid.org/0000-0001-9538-3830)\r\n+ [Paul-Antoine Bontinck](https://github.com/pa-bontinck) - _optimisation, implementation, testing and debugging_ - [ORCID](https://orcid.org/0000-0002-4072-1334)\r\n### Contributors\r\n+ [Robert H Crawford](https://github.com/rhcr) - _project leader and theoretical guidance_ - [ORCID](https://orcid.org/0000-0002-0189-3221)\r\n+ [Fabian Prideaux](https://github.com/fabianpx) - _proof reading documentation, testing package installation_\r\n\r\n## License\r\nThis project is shared under a GNU General Public License v3.0. See the [LICENSE](../master/LICENSE) file for more information.\r\n\r\n## Acknowledgments\r\n\r\nThis project was originally funded by the __Australian Research Council Discovery Project DP150100962__ at the [University of Melbourne](https://unimelb.edu.au/), Australia. As such, we are endebted to Australian taxpayers for making this work possible and to the University of Melbourne for providing the facilities and intellectual space to conduct this research. The code for the base method for conducting the structural path analysis is inspired from the code of late __[A/Prof Graham Treloar](https://new.gbca.org.au/news/gbca-news/how-legacy-late-green-building-researcher-lives/)__ at the University of Melbourne, who pioneered a Visual Basic Script in his [PhD thesis](https://dro.deakin.edu.au/eserv/DU:30023444/treloar-comprehensiveembodied-1998.pdf) to conduct a structural path analysis in 1997.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n",
    "bugtrack_url": null,
    "license": "GNU General Public License v3.0",
    "summary": "An object-oriented python package for advanced structural path analysis",
    "version": "2.4",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b6feb18a630dcaf03acdb61ae4a2522bc42a66c5260aabf05c723f82ae213312",
                "md5": "fae0c84fcbfa90ab9b2a13d414827bf4",
                "sha256": "152e84660d8aa5fb33ccf022137b25b12ee65d01c208647d4fdd4c9ebc8651da"
            },
            "downloads": -1,
            "filename": "pyspa-2.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "fae0c84fcbfa90ab9b2a13d414827bf4",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 105127,
            "upload_time": "2023-03-17T11:23:44",
            "upload_time_iso_8601": "2023-03-17T11:23:44.449349Z",
            "url": "https://files.pythonhosted.org/packages/b6/fe/b18a630dcaf03acdb61ae4a2522bc42a66c5260aabf05c723f82ae213312/pyspa-2.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2046d7a2b901c5b87918761be5e661a1188ded09aa46cd83d0564471286bed3d",
                "md5": "32600c0832346a9740807ebbb331c70b",
                "sha256": "53a7ccf41c6200ec0cf795e51b2aaf43a694c068c4c1fa18e407505a3d9fe636"
            },
            "downloads": -1,
            "filename": "pyspa-2.4.tar.gz",
            "has_sig": false,
            "md5_digest": "32600c0832346a9740807ebbb331c70b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 108374,
            "upload_time": "2023-03-17T11:23:46",
            "upload_time_iso_8601": "2023-03-17T11:23:46.070232Z",
            "url": "https://files.pythonhosted.org/packages/20/46/d7a2b901c5b87918761be5e661a1188ded09aa46cd83d0564471286bed3d/pyspa-2.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-03-17 11:23:46",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "hybridlca",
    "github_project": "pyspa",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "pyspa"
}
        
Elapsed time: 0.04843s