============================
Network Evaluations Tools v2
============================
.. image:: https://img.shields.io/pypi/v/neteval.svg
:target: https://pypi.python.org/pypi/neteval
.. image:: https://readthedocs.org/projects/neteval/badge/?version=latest
:target: https://neteval.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status
Network Evaluation Tools 2 is a Python 3.10 package accompanying the manuscript:
*State of the Interactomes: an evaluation of molecular networks for generating biological insights.* Sarah N Wright et al. biorxiv.org (2024).
This repository contains all python code used in the study, as well as example usage on a small network example.
This package updates and expands the work developed as part of
`Huang and Carlin et al. 2018 <http://www.cell.com/cell-systems/fulltext/S2405-4712(18)30095-4>`_.
Installation
============
To install the package, run the following command:
.. code-block:: bash
pip install neteval
To install the package from source, clone the repository and run the following command:
.. code-block:: bash
git clone https://github.com/sarah-n-wright/Network_Evaluation_Tools
cd Network_Evaluation_Tools
make dist
pip install dist/netevalcmd*whl
For example usage of command line scripts see `Example Usage <https://github.com/sarah-n-wright/Network_Evaluation_Tools/ExampleUsage>`__.
For example usage of all other funcitonality see `State of the Interactomes Notebooks <https://github.com/sarah-n-wright/Network_Evaluation_Tools/StateOfTheInteractomes_Notebooks>`__.
Optional External Packages
--------------------------
Interaction Prediction algorithms
"""""""""""""""""""""""""""""""""
* **L3:** The L3 algorithm can be installed from `https://github.com/kpisti/L3 <https://github.com/kpisti/L3>`_. The path to the executable can then be used with `edge_prediction.py`.
* **MPS(T):** The MPS(T) algorithm can be installed from `https://github.com/spxuw/PPI-Prediction-Project <https://github.com/spxuw/PPI-Prediction-Project>`_, and should be installed and run from a separate environment.
AlphaFold Multimer
""""""""""""""""""
* **AlphaFold-Multimer** can be installed from `https://github.com/YoshitakaMo/localcolabfold <https://github.com/YoshitakaMo/localcolabfold>`_, and should be installed and run from a separate environment.
Dependencies
============
* `goatools >=1.3.1 <https://pypi.org/project/goatools>`__
* `hidef >=1.1.5 <https://pypi.org/project/hidef>`__
* `httplib2 >=0.20.2 <https://pypi.org/project/httplib2>`__
* `matplotlib >=3.5.0,<3.7 <https://pypi.org/project/matplotlib>`__
* `mygene >=3.2.2 <https://pypi.org/project/mygene>`__
* `ndex2 >=3.5.0 <https://pypi.org/project/ndex2>`__
* `networkx >=2.6.3,<3.0 <https://pypi.org/project/networkx/2.6.3>`__
* `numpy >=1.21.4,<2.0 <https://pypi.org/project/numpy>`__
* `obonet >=1.0.0 <https://pypi.org/project/obonet>`__
* `pandas >=1.3.4,<2.0 <https://pypi.org/project/pandas/1.3.4>`__
* `requests >=2.26.0 <https://pypi.org/project/requests>`__
* `scikit-learn >=1.0.1 <https://pypi.org/project/scikit-learn>`__
* `scipy >=1.7.2 <https://pypi.org/project/scipy>`__
* `seaborn >=0.13.0 <https://pypi.org/project/seaborn>`__
* `statsmodels >=0.13.5 <https://pypi.org/project/statsmodels>`__
* `tqdm >=4.62.3 <https://pypi.org/project/tqdm>`__
Modules in this package
=======================
Interactome processing, standardization and annotation
------------------------------------------------------
Modules:
* ``processing_functions``: Module utilized by process_data, contains the NetworkData class.__
* ``gene_mapper``: Includes query_hgnc, query_ensembl, query_uniprot. Modules to map identifiers to NCBI Gene IDs from a variety of identifier types including: Uniprot, Ensembl, EnsemblProtein, RefSeq, Symbol. Incorporates methods to handle out of date identifiers.
* ``node_annotation``: Module for downloading and extracting gene annotation data from HGNC, NCBI, Uniprot and Ensembl. Includes the class ExpressionData for loading and analyzing mRNA and protein expression data.
* ``network_statistics``: Module to extract summary statistics for a set of network, such as node and edge counts.
* ``gsea_functions``: Module for performing downloading, processing and analyzing Gene Ontology data.
**Script(s):**
* ``process_data.py``: Python script to process a raw interactome based on a configuration file
For detailed usage see ``ExampleUsage/NP_NetworkProcessing.README.md``
Gene set recovery performance evaluation
----------------------------------------
Evaluation data collection and processing
"""""""""""""""""""""""""""""""""""""""""
Modules:
* ``get_disgen_associations``: Module to download DisGeNET associations and generate genesets
* ``get_gwas_associations``: Module to download GWAS Catalog associations and generate genesets
**Script(s):**
* ``prepare_evaluation_data.py``: Python script to convert gene identifiers within gene sets and filter based on network coverage.
For detailed usage, see ``ExampleUsage/GSR_GeneSetRecovery.README.md``
Gene set recovery
"""""""""""""""""
Modules:
* ``network_evaluation_functions``: Module for performing and evaluating gene set recovery.
* ``network_propagation``: Underlying network propagation methodology.
* ``shuffle_networks``: Module for creating degree-matched shuffled networks
* ``gene_set_recovery_results``: Module to load, evaluate, and visualize gene set recovery results. Includes the class EvaluationResults.
**Script(s):**
* ``run_network_evaluation.py``: Python script to perform gene set recovery performance evaluation
For detailed usage, see ``ExampleUsage/GSR_GeneSetRecovery.README.md``
Parsimonious Composite Networks (PCNets)
-----------------------------------------
**Script(s):**
* ``network_constructor``: Python script to create composite networks using the *global composite* and *ranked composite* approaches. See ExampleUsage/run_composite.sh.
For detailed usage see ``ExampleUsage/PC_PCNets.README.md``
Interaction & complex prediction
--------------------------------
Modules:
* ``community_annotation``: Module for assessing the quality of gene communities in a network.
* ``edge_prediction``: Module for performing and analyzing edge prediction results.
**Script(s):**
* ``edge_prediction.py``: Script for performing edge prediciton evaluation.
* ``alphafold_results.py``: Script for parsing and analyzing AlphaFold results.
* ``complex_evaluation.py``: Script for evaluating hierarchical complex prediction results.
For detailed usage see ``ExampleUsage/IP_InteractionPrediction.README.md`` and ``ExampleUsage/AF_AlphaFold.README.md``
General utilities
-----------------
* ``data_import_export_tools``: Module of functions for importing and exporting the various data formats used by this package.
* ``Timer``: Class that measures the elapsed time of various processing steps and outputs a summary.
Provided Data and Implementation Examples
=========================================
ExampleUsage
------------
This directory contains README and bash scripts for implemenation of each stage of the network evaluation pipeline.
All examples utilize three small interactomes (DIP, PID2, and Wan). While most of the pipeline is designed to run in a
high-performance computing environment, most of these examples can be run on a local machine.
* ``NP_NetworkProcessing.README.md``
* ``GSR_GeneSetRecovery.README.md``
* ``PC_PCNets.README.md``
* ``IP_InteractionPrediction.README.md``
* ``AF_AlphaFold.README.md``
Data
----
This directory contains key data sets used for the evaluation of interactomes for prosperity, including:
* Annotation data from HGNC, Ensembl, NCBIm, and Uniprot
* Gene sets analyzed
* Gene conservation scores
* Example networks (Wan, DIP, PID2)
* CORUM and PANTHER edge lists
StateOfTheInteractomes_Notebooks
--------------------------------
This directory contains code and guidelines for reproducing data and figures contained
in the manuscript.
Notebooks
"""""""""
* 1_Statistics_and_Representation.ipynb
* 2_GO_analysis.ipynb
* 3_Gene_Set_Recovery.ipynb
* 4_Composite_networks.ipynb
* 5_Interaction_and_Complex_Prediction.ipynb
* 6_AlphaFold_Assessment.ipynb
Due to the computational requirements of the underlying analyses, these notebooks
leverage pre-computed data and example implementations with small networks. Much
of the State of the Interactomes pipeline is designed to run in a high-performance
computing environment. Please see ``ExampleUsage`` for guidelines on implementing
each stage of the pipeline.
To run the State Of the Interactomes Notebooks, install the required dependencies:
.. code-block:: bash
pip install -r requirements_stateoftheinteractomes.txt
**Inputs/Outputs**
* `StateOfTheInteractomes_Notebooks/Data/` contains pre-computed data for visualization
* Other data neccessary for analysis is contained in `Data/`
* Generated figures are saved to `StateOfTheInteractomes_Notebooks/Figures`
* Generated data is saved to `Data/example_outputs/`
StateOfTheInteractomes_Notebooks/Data
"""""""""""""""""""""""""""""""""""""
This directory contains data necessary for recreating the manuscript figures, including *Supplemental Tables 2-5,7-8*, and other precomputed results.
StateOfTheInteractomes_Notebooks/Supplemental_Code
""""""""""""""""""""""""""""""""""""""""""""""""""
This directory contains code used in the generation of the manuscript results that is not included in the primary ``neteval`` package.
This includes implementation of EGAD (Extending Guilt by Association by Degree) and HiDeF (Hierarchical community Decoding Framework), as well
as processing of PDB files and gene conservation scores.
To run Supplemental Code, see additional dependencies in the associated README files:
* Gene Function Prediction by GBA (``EGAD_README.md``)
* Processing of Gene Conservation Scores (``phyloP_README.md``)
Compatibility
=============
* Python 3.10+
Citing neteval
==============
If you use neteval in your research, please cite the following publication:
Wright, SN., et al. *State of The Interactomes: an evaluation of molecular networks for generating biological insights.*
Credits
=======
This package is built from the original `Network Evaluation Tools <https://github.com/idekerlab/Network_Evaluation_Tools>`_ developed by `Huang and Carlin et al. 2018 <http://www.cell.com/cell-systems/fulltext/S2405-4712(18)30095-4>`_.
This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.
.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage
.. _NDEx: http://www.ndexbio.org
History
=======
0.2.2 (2024-11-07)
------------------
* Final versions of notebooks associated with State of the Interactomes manuscript
* Fixed redundant python requirement in setup.py
* Updated documentation
0.2.1 (2024-10-07)
------------------
* Updated documentation
0.2.0 (2024-10-03)
------------------
* First release on PyPI.
0.1.0 (2023-03-22)
------------------
* Pre-release
Raw data
{
"_id": null,
"home_page": "https://github.com/sarah-n-wright/Network_Evaluation_Tools",
"name": "neteval",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.10",
"maintainer_email": null,
"keywords": "neteval, network, interaction, bioinformatics",
"author": "Sarah Wright",
"author_email": "snwright@ucsd.edu",
"download_url": "https://files.pythonhosted.org/packages/4e/75/7c0621bb328fd0b196d4263faa820c9ac980e450bfbc484d0b6ff53e1197/neteval-0.2.2.tar.gz",
"platform": null,
"description": "============================\nNetwork Evaluations Tools v2\n============================\n\n\n.. image:: https://img.shields.io/pypi/v/neteval.svg\n :target: https://pypi.python.org/pypi/neteval\n\n.. image:: https://readthedocs.org/projects/neteval/badge/?version=latest\n :target: https://neteval.readthedocs.io/en/latest/?badge=latest\n :alt: Documentation Status\n\n\nNetwork Evaluation Tools 2 is a Python 3.10 package accompanying the manuscript:\n*State of the Interactomes: an evaluation of molecular networks for generating biological insights.* Sarah N Wright et al. biorxiv.org (2024).\n\nThis repository contains all python code used in the study, as well as example usage on a small network example. \nThis package updates and expands the work developed as part of \n`Huang and Carlin et al. 2018 <http://www.cell.com/cell-systems/fulltext/S2405-4712(18)30095-4>`_.\n\n\nInstallation\n============\nTo install the package, run the following command:\n\n .. code-block:: bash\n\n pip install neteval\n\nTo install the package from source, clone the repository and run the following command:\n\n .. code-block:: bash\n \n git clone https://github.com/sarah-n-wright/Network_Evaluation_Tools\n cd Network_Evaluation_Tools\n make dist\n pip install dist/netevalcmd*whl\n\nFor example usage of command line scripts see `Example Usage <https://github.com/sarah-n-wright/Network_Evaluation_Tools/ExampleUsage>`__. \nFor example usage of all other funcitonality see `State of the Interactomes Notebooks <https://github.com/sarah-n-wright/Network_Evaluation_Tools/StateOfTheInteractomes_Notebooks>`__. \n\nOptional External Packages\n--------------------------\n\nInteraction Prediction algorithms\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n* **L3:** The L3 algorithm can be installed from `https://github.com/kpisti/L3 <https://github.com/kpisti/L3>`_. The path to the executable can then be used with `edge_prediction.py`.\n\n* **MPS(T):** The MPS(T) algorithm can be installed from `https://github.com/spxuw/PPI-Prediction-Project <https://github.com/spxuw/PPI-Prediction-Project>`_, and should be installed and run from a separate environment.\n\nAlphaFold Multimer\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n* **AlphaFold-Multimer** can be installed from `https://github.com/YoshitakaMo/localcolabfold <https://github.com/YoshitakaMo/localcolabfold>`_, and should be installed and run from a separate environment.\n\nDependencies\n============\n\n* `goatools >=1.3.1 <https://pypi.org/project/goatools>`__\n* `hidef >=1.1.5 <https://pypi.org/project/hidef>`__\n* `httplib2 >=0.20.2 <https://pypi.org/project/httplib2>`__\n* `matplotlib >=3.5.0,<3.7 <https://pypi.org/project/matplotlib>`__\n* `mygene >=3.2.2 <https://pypi.org/project/mygene>`__\n* `ndex2 >=3.5.0 <https://pypi.org/project/ndex2>`__\n* `networkx >=2.6.3,<3.0 <https://pypi.org/project/networkx/2.6.3>`__\n* `numpy >=1.21.4,<2.0 <https://pypi.org/project/numpy>`__\n* `obonet >=1.0.0 <https://pypi.org/project/obonet>`__\n* `pandas >=1.3.4,<2.0 <https://pypi.org/project/pandas/1.3.4>`__\n* `requests >=2.26.0 <https://pypi.org/project/requests>`__\n* `scikit-learn >=1.0.1 <https://pypi.org/project/scikit-learn>`__\n* `scipy >=1.7.2 <https://pypi.org/project/scipy>`__\n* `seaborn >=0.13.0 <https://pypi.org/project/seaborn>`__\n* `statsmodels >=0.13.5 <https://pypi.org/project/statsmodels>`__\n* `tqdm >=4.62.3 <https://pypi.org/project/tqdm>`__\n\n\nModules in this package\n=======================\n\nInteractome processing, standardization and annotation\n------------------------------------------------------\nModules:\n\n* ``processing_functions``: Module utilized by process_data, contains the NetworkData class.__\n* ``gene_mapper``: Includes query_hgnc, query_ensembl, query_uniprot. Modules to map identifiers to NCBI Gene IDs from a variety of identifier types including: Uniprot, Ensembl, EnsemblProtein, RefSeq, Symbol. Incorporates methods to handle out of date identifiers.\n* ``node_annotation``: Module for downloading and extracting gene annotation data from HGNC, NCBI, Uniprot and Ensembl. Includes the class ExpressionData for loading and analyzing mRNA and protein expression data.\n* ``network_statistics``: Module to extract summary statistics for a set of network, such as node and edge counts.\n* ``gsea_functions``: Module for performing downloading, processing and analyzing Gene Ontology data.\n\n**Script(s):**\n\n* ``process_data.py``: Python script to process a raw interactome based on a configuration file\n\nFor detailed usage see ``ExampleUsage/NP_NetworkProcessing.README.md``\n\nGene set recovery performance evaluation\n----------------------------------------\n\nEvaluation data collection and processing\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\nModules:\n\n* ``get_disgen_associations``: Module to download DisGeNET associations and generate genesets\n* ``get_gwas_associations``: Module to download GWAS Catalog associations and generate genesets\n\n**Script(s):**\n\n* ``prepare_evaluation_data.py``: Python script to convert gene identifiers within gene sets and filter based on network coverage.\n\nFor detailed usage, see ``ExampleUsage/GSR_GeneSetRecovery.README.md``\n\nGene set recovery\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\nModules:\n\n* ``network_evaluation_functions``: Module for performing and evaluating gene set recovery.\n* ``network_propagation``: Underlying network propagation methodology.\n* ``shuffle_networks``: Module for creating degree-matched shuffled networks\n* ``gene_set_recovery_results``: Module to load, evaluate, and visualize gene set recovery results. Includes the class EvaluationResults.\n\n**Script(s):**\n\n* ``run_network_evaluation.py``: Python script to perform gene set recovery performance evaluation\n\nFor detailed usage, see ``ExampleUsage/GSR_GeneSetRecovery.README.md``\n\nParsimonious Composite Networks (PCNets)\n-----------------------------------------\n\n**Script(s):**\n\n* ``network_constructor``: Python script to create composite networks using the *global composite* and *ranked composite* approaches. See ExampleUsage/run_composite.sh.\n\nFor detailed usage see ``ExampleUsage/PC_PCNets.README.md``\n\nInteraction & complex prediction\n--------------------------------\n\nModules:\n\n* ``community_annotation``: Module for assessing the quality of gene communities in a network.\n* ``edge_prediction``: Module for performing and analyzing edge prediction results.\n\n**Script(s):**\n\n* ``edge_prediction.py``: Script for performing edge prediciton evaluation.\n* ``alphafold_results.py``: Script for parsing and analyzing AlphaFold results.\n* ``complex_evaluation.py``: Script for evaluating hierarchical complex prediction results.\n\nFor detailed usage see ``ExampleUsage/IP_InteractionPrediction.README.md`` and ``ExampleUsage/AF_AlphaFold.README.md``\n\nGeneral utilities\n-----------------\n\n* ``data_import_export_tools``: Module of functions for importing and exporting the various data formats used by this package.\n* ``Timer``: Class that measures the elapsed time of various processing steps and outputs a summary.\n\n\nProvided Data and Implementation Examples\n=========================================\n\nExampleUsage\n------------\n\nThis directory contains README and bash scripts for implemenation of each stage of the network evaluation pipeline. \nAll examples utilize three small interactomes (DIP, PID2, and Wan). While most of the pipeline is designed to run in a \nhigh-performance computing environment, most of these examples can be run on a local machine.\n\n* ``NP_NetworkProcessing.README.md``\n* ``GSR_GeneSetRecovery.README.md``\n* ``PC_PCNets.README.md``\n* ``IP_InteractionPrediction.README.md``\n* ``AF_AlphaFold.README.md``\n\nData\n----\n\nThis directory contains key data sets used for the evaluation of interactomes for prosperity, including: \n\n* Annotation data from HGNC, Ensembl, NCBIm, and Uniprot\n* Gene sets analyzed\n* Gene conservation scores\n* Example networks (Wan, DIP, PID2)\n* CORUM and PANTHER edge lists\n\n\nStateOfTheInteractomes_Notebooks\n--------------------------------\n\nThis directory contains code and guidelines for reproducing data and figures contained\nin the manuscript.\n\nNotebooks\n\"\"\"\"\"\"\"\"\"\n\n* 1_Statistics_and_Representation.ipynb\n* 2_GO_analysis.ipynb\n* 3_Gene_Set_Recovery.ipynb\n* 4_Composite_networks.ipynb\n* 5_Interaction_and_Complex_Prediction.ipynb\n* 6_AlphaFold_Assessment.ipynb\n\nDue to the computational requirements of the underlying analyses, these notebooks\nleverage pre-computed data and example implementations with small networks. Much\nof the State of the Interactomes pipeline is designed to run in a high-performance\ncomputing environment. Please see ``ExampleUsage`` for guidelines on implementing\neach stage of the pipeline.\n\nTo run the State Of the Interactomes Notebooks, install the required dependencies:\n\n .. code-block:: bash\n\n pip install -r requirements_stateoftheinteractomes.txt\n\n\n**Inputs/Outputs**\n\n* `StateOfTheInteractomes_Notebooks/Data/` contains pre-computed data for visualization\n* Other data neccessary for analysis is contained in `Data/`\n* Generated figures are saved to `StateOfTheInteractomes_Notebooks/Figures`\n* Generated data is saved to `Data/example_outputs/`\n\nStateOfTheInteractomes_Notebooks/Data\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\nThis directory contains data necessary for recreating the manuscript figures, including *Supplemental Tables 2-5,7-8*, and other precomputed results.\n\nStateOfTheInteractomes_Notebooks/Supplemental_Code\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\nThis directory contains code used in the generation of the manuscript results that is not included in the primary ``neteval`` package. \nThis includes implementation of EGAD (Extending Guilt by Association by Degree) and HiDeF (Hierarchical community Decoding Framework), as well \nas processing of PDB files and gene conservation scores. \n\nTo run Supplemental Code, see additional dependencies in the associated README files:\n\n* Gene Function Prediction by GBA (``EGAD_README.md``)\n* Processing of Gene Conservation Scores (``phyloP_README.md``)\n\nCompatibility\n=============\n\n* Python 3.10+\n\n\nCiting neteval\n==============\n\nIf you use neteval in your research, please cite the following publication:\n\nWright, SN., et al. *State of The Interactomes: an evaluation of molecular networks for generating biological insights.*\n\n\nCredits\n=======\n\nThis package is built from the original `Network Evaluation Tools <https://github.com/idekerlab/Network_Evaluation_Tools>`_ developed by `Huang and Carlin et al. 2018 <http://www.cell.com/cell-systems/fulltext/S2405-4712(18)30095-4>`_.\n\n\nThis package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.\n\n.. _Cookiecutter: https://github.com/audreyr/cookiecutter\n.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage\n.. _NDEx: http://www.ndexbio.org\n\n\nHistory\n=======\n\n0.2.2 (2024-11-07)\n------------------\n* Final versions of notebooks associated with State of the Interactomes manuscript\n* Fixed redundant python requirement in setup.py\n* Updated documentation\n\n0.2.1 (2024-10-07)\n------------------\n* Updated documentation\n\n0.2.0 (2024-10-03)\n------------------\n* First release on PyPI.\n\n0.1.0 (2023-03-22)\n------------------\n* Pre-release\n\n\n",
"bugtrack_url": null,
"license": "MIT license",
"summary": "Package for standardization and evaluation of biological networks",
"version": "0.2.2",
"project_urls": {
"Homepage": "https://github.com/sarah-n-wright/Network_Evaluation_Tools"
},
"split_keywords": [
"neteval",
" network",
" interaction",
" bioinformatics"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "5c3fa19605071f1eae4123c7342cb2d053d2c4009f3ca464ed5b2d20b0490fec",
"md5": "3a597d03a6204b3415c39b15d0de9fa5",
"sha256": "6bbe1168bef7699318ae42c9ae4ee91e895bf81696fd2cc9e66003355b8c2cdb"
},
"downloads": -1,
"filename": "neteval-0.2.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "3a597d03a6204b3415c39b15d0de9fa5",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=3.10",
"size": 116556,
"upload_time": "2024-11-08T02:00:38",
"upload_time_iso_8601": "2024-11-08T02:00:38.617617Z",
"url": "https://files.pythonhosted.org/packages/5c/3f/a19605071f1eae4123c7342cb2d053d2c4009f3ca464ed5b2d20b0490fec/neteval-0.2.2-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4e757c0621bb328fd0b196d4263faa820c9ac980e450bfbc484d0b6ff53e1197",
"md5": "f4d7b7665746b13f8cdcb5627ea1f0c0",
"sha256": "d60135fa6295b07148f848aba2937e7ea68ac010ba620796c9612a8e7138a26b"
},
"downloads": -1,
"filename": "neteval-0.2.2.tar.gz",
"has_sig": false,
"md5_digest": "f4d7b7665746b13f8cdcb5627ea1f0c0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.10",
"size": 88928779,
"upload_time": "2024-11-08T02:00:43",
"upload_time_iso_8601": "2024-11-08T02:00:43.250832Z",
"url": "https://files.pythonhosted.org/packages/4e/75/7c0621bb328fd0b196d4263faa820c9ac980e450bfbc484d0b6ff53e1197/neteval-0.2.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-08 02:00:43",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "sarah-n-wright",
"github_project": "Network_Evaluation_Tools",
"travis_ci": true,
"coveralls": false,
"github_actions": false,
"requirements": [],
"tox": true,
"lcname": "neteval"
}