libsonata


Namelibsonata JSON
Version 0.1.26 PyPI version JSON
download
home_pagehttps://github.com/BlueBrain/libsonata
SummarySONATA files reader
upload_time2024-04-29 12:29:17
maintainerNone
docs_urlNone
authorBlue Brain Project, EPFL
requires_python>=3.8
licenseLGPLv3
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            |banner|

|license| |coverage| |docs|

libsonata
=========

C++ / Python reader for SONATA circuit files:
`SONATA guide <https://github.com/AllenInstitute/sonata/blob/master/docs/SONATA_DEVELOPER_GUIDE.md>`__

Installation
------------

Installing from PyPI
~~~~~~~~~~~~~~~~~~~~

.. code-block:: shell

   pip install libsonata

Installing as a Python package, directly from GitHub
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. code-block:: shell

   pip install git+https://github.com/BlueBrain/libsonata

Building the C++ library
~~~~~~~~~~~~~~~~~~~~~~~~

.. code-block:: shell

   git clone git@github.com:BlueBrain/libsonata.git --recursive
   cd libsonata
   mkdir build && cd build
   cmake -DCMAKE_BUILD_TYPE=Release -DEXTLIB_FROM_SUBMODULES=ON ..
   make -j

Since `libsonata` uses backports for `std::optional` and `std::variant` which
turn into their actual STL implementation once available, it's recommended to compile
`libsonata` with the same C++ standard as the project linking to `libsonata`. This
is done by passing `-DCMAKE_CXX_STANDARD={14,17}` to the `cmake` command above.

Usage (Python)
--------------

Nodes
~~~~~

NodeStorage
+++++++++++

.. code-block:: pycon

   >>> import libsonata

   >>> nodes = libsonata.NodeStorage('path/to/H5/file')

   # list populations
   >>> nodes.population_names

   # open population
   >>> population = nodes.open_population(<name>)


NodePopulation
++++++++++++++

.. code-block:: pycon

   # total number of nodes in the population
   >>> population.size

   # attribute names
   >>> population.attribute_names

   # get attribute value for single node, say 42
   >>> population.get_attribute('mtype', 42)

   # ...or Selection of nodes (see below) => returns NumPy array with corresponding values
   >>> selection = libsonata.Selection(values=[1, 5, 9, 42])  # nodes 1, 5, 9, 42
   >>> mtypes = population.get_attribute('mtype', selection)
   >>> list(zip(selection.flatten(), mtypes))
   [(1, u'mtype_of_1'), (5, u'mtype_of_5'), (9, u'mtype_of_9'), (42, u'mtype_of_42')]


Selection
+++++++++

List of element IDs (either `node_id`, or `edge_id`) where adjacent IDs are grouped for the sake of efficient HDF5 file access.
For instance, `{1, 2, 3, 5}` sequence becomes `{[1, 4), [5, 6)}`.

`Selection` can be instantiated from:
 - a sequence of scalar values (works for NumPy arrays as well)
 - a sequence of pairs (interpreted as ranges above, works for N x 2 NumPy arrays as well)

`EdgePopulation` connectivity queries (see below) return ``Selection``\ s as well.

.. code-block:: pycon

   >>> selection = libsonata.Selection([1, 2, 3, 5])
   >>> selection.ranges
   [(1, 4), (5, 6)]


.. code-block:: pycon

   >>> selection = libsonata.Selection([(1, 4), (5, 6)])
   >>> selection.flatten()
   [1, 2, 3, 5]
   >>> selection.flat_size
   4
   >>> bool(selection)
   True


Node Sets
+++++++++

libsonata can work with the Node Set concept, as described here: `SONATA guide: Node Sets File <https://github.com/AllenInstitute/sonata/blob/master/docs/SONATA_DEVELOPER_GUIDE.md#node-sets-file>`__
This allows the definition of names for groups of cells, and a way to query them.
libsonata also allows for extended expressions, such as Regular expressions,and floating point tests, as described here: `SONATA extension: Node Sets <https://sonata-extension.readthedocs.io/en/latest/sonata_nodeset.html>`__

.. code-block:: pycon

   # load a node set JSON file
   >>> node_sets = libsonata.NodeSets.from_file('node_sets.json')

   # list node sets
   >>> node_sets.names
   {'L6_UPC', 'Layer1', 'Layer2', 'Layer3', ....}

   # get the selection of nodes that match in population
   >>> selection = node_sets.materialize('Layer1', population)

   # node sets can also be loaded from a JSON string
   >>> node_sets_manual = libsonata.NodeSets(json.dumps({"SLM_PPA_and_SP_PC": {"mtype": ["SLM_PPA", "SP_PC"]}}))
   >>> node_sets_manual.names
   {'SLM_PPA_and_SP_PC'}


Edges
~~~~~

EdgeStorage
+++++++++++

Population handling for `EdgeStorage` is analogous to `NodeStorage`:

.. code-block:: pycon

   >>> edges = libsonata.EdgeStorage('path/to/H5/file')

   # list populations
   >>> edges.population_names

   # open population
   >>> population = edges.open_population(<name>)


EdgePopulation
++++++++++++++

.. code-block:: pycon

   # total number of edges in the population
   >>> population.size

   # attribute names
   >>> population.attribute_names

   # get attribute value for single edge, say 123
   >>> population.get_attribute('delay', 123)

   # ...or Selection of edges => returns NumPy array with corresponding values
   >>> selection = libsonata.Selection([1, 5, 9])
   >>> population.get_attribute('delay', selection) # returns delays for edges 1, 5, 9


...with additional methods for querying connectivity, where the results are selections that can be applied like above

.. code-block:: pycon

   # get source / target node ID for the 42nd edge:
   >>> population.source_node(42)
   >>> population.target_node(42)

   # query connectivity (result is Selection object)
   >>> selection_to_1 = population.afferent_edges(1)  # all edges with target node_id 1
   >>> population.target_nodes(selection_to_1)  # since selection only contains edges
                                                # targeting node_id 1 the result will be a
                                                # numpy array of all 1's
   >>> selection_from_2 = population.efferent_edges(2)  # all edges sourced from node_id 2
   >>> selection = population.connecting_edges(2, 1)  # this selection is all edges from
                                                      # node_id 2 to node_id 1

   # ...or their vectorized analogues
   >>> selection = population.afferent_edges([1, 2, 3])
   >>> selection = population.efferent_edges([1, 2, 3])
   >>> selection = population.connecting_edges([1, 2, 3], [4, 5, 6])


Reports
~~~~~~~

SpikeReader
+++++++++++

.. code-block:: pycon

   >>> import libsonata

   >>> spikes = libsonata.SpikeReader('path/to/H5/file')

   # list populations
   >>> spikes.get_population_names()

   # open population
   >>> population = spikes['<name>']


SpikePopulation
+++++++++++++++

.. code-block:: pycon

   # get all spikes [(node_id, timestep)]
   >>> population.get()
   [(5, 0.1), (2, 0.2), (3, 0.3), (2, 0.7), (3, 1.3)]

   # get all spikes betwen tstart and tstop
   >>> population.get(tstart=0.2, tstop=1.0)
   [(2, 0.2), (3, 0.3), (2, 0.7)]

   # get spikes attribute sorting (by_time, by_id, none)
   >>> population.sorting
   'by_time'

   Pandas can be used to create a dataframe and get a better representation of the data

.. code-block:: pycon

   >>> import pandas

   data = population.get()
   df = pandas.DataFrame(data=data, columns=['ids', 'times']).set_index('times')
   print(df)
          ids
   times
   0.1      5
   0.2      2
   0.3      3
   0.7      2
   1.3      3


SomaReportReader
++++++++++++++++

.. code-block:: pycon

   >>> somas = libsonata.SomaReportReader('path/to/H5/file')

   # list populations
   >>> somas.get_population_names()

   # open population
   >>> population_somas = somas['<name>']


SomaReportPopulation
++++++++++++++++++++

.. code-block:: pycon

   # get times (tstart, tstop, dt)
   >>> population_somas.times
   (0.0, 1.0, 0.1)

   # get unit attributes
   >>> population_somas.time_units
   'ms'
   >>> population_somas.data_units
   'mV'

   # node_ids sorted?
   >>> population_somas.sorted
   True

   # get a list of all node ids in the selected population
   >>> population_somas.get_node_ids()
   [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]

   # get the DataFrame of the node_id values for the timesteps between tstart and tstop
   >>> data_frame = population_somas.get(node_ids=[13, 14], tstart=0.8, tstop=1.0)

   # get the data values
   >>> data_frame.data
   [[13.8, 14.8], [13.9, 14.9]]

   # get the list of timesteps
   >>> data_frame.times
   [0.8, 0.9]

   # get the list of node ids
   >>> data_frame.ids
   [13, 14]


Once again, pandas can be used to create a dataframe using the data, ids and times lists

.. code-block:: pycon

   >>> import pandas

   df = pandas.DataFrame(data_frame.data, columns=data_frame.ids, index=data_frame.times)
   print(df)
          13    14
   0.8  13.8  14.8
   0.9  13.9  14.9


ElementReportReader
+++++++++++++++++++

.. code-block:: pycon

   >>> elements = libsonata.ElementReportReader('path/to/H5/file')

   # list populations
   >>> elements.get_population_names()

   # open population
   >>> population_elements = elements['<name>']


ElementReportPopulation
+++++++++++++++++++++++

.. code-block:: pycon

   # get times (tstart, tstop, dt)
   >>> population_elements.times
   (0.0, 4.0, 0.2)

   >>> population_elements.get_node_ids()
   [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]

   # get the DataFrame of the node_id values for the timesteps between tstart and tstop
   >>> data_frame = population_elements.get(node_ids=[13, 14], tstart=0.8, tstop=1.0)

   # get the data values (list of list of floats with data[time_index][element_index])
   >>> data_frame.data
   [[46.0, 46.1, 46.2, 46.3, 46.4, 46.5, 46.6, 46.7, 46.8, 46.9], [56.0, 56.1, 56.2, 56.3, 56.4, 56.5, 56.6, 56.7, 56.8, 56.9]]

   # get the list of timesteps
   >>> data_frame.times
   [0.8, 1.0]

   # get the list of (node id, element_id)
   >>> data_frame.ids
   [(13, 30), (13, 30), (13, 31), (13, 31), (13, 32), (14, 32), (14, 33), (14, 33), (14, 34), (14, 34)]


The same way than with spikes and soma reports, pandas can be used to get a better representation of the data

.. code-block:: pycon

   >>> import pandas

   df = pandas.DataFrame(data_frame.data, columns=pandas.MultiIndex.from_tuples(data_frame.ids), index=data_frame.times)
   print(df)
          13                            14
          30    30    31    31    32    32    33    33    34    34
   0.8  46.0  46.1  46.2  46.3  46.4  46.5  46.6  46.7  46.8  46.9
   1.0  56.0  56.1  56.2  56.3  56.4  56.5  56.6  56.7  56.8  56.9

For big datasets, using numpy arrays could greatly improve the performance

.. code-block:: pycon

   >>> import numpy

   np_data = numpy.asarray(data_frame.data)
   np_ids = numpy.asarray(data_frame.ids).T
   np_times = numpy.asarray(data_frame.times)

   df = pandas.DataFrame(np_data, columns=pandas.MultiIndex.from_arrays(np_ids), index=np_times)


Acknowledgements
----------------
The development of this software was supported by funding to the Blue Brain Project, a research center of the École polytechnique fédérale de Lausanne (EPFL), from the Swiss government’s ETH Board of the Swiss Federal Institutes of Technology.

This research was supported by the EBRAINS research infrastructure, funded from the European Union’s Horizon 2020 Framework Programme for Research and Innovation under the Specific Grant Agreement No. 945539 (Human Brain Project SGA3).
This project/research has received funding from the European Union’s Horizon 2020 Framework Programme for Research and Innovation under the Specific Grant Agreement No. 785907 (Human Brain Project SGA2).


License
-------

libsonata is distributed under the terms of the GNU Lesser General Public License version 3,
unless noted otherwise, for example, for external dependencies.
Refer to `COPYING.LESSER` and `COPYING` files for details.

Copyright (c) 2018-2022 Blue Brain Project/EPFL

libsonata is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License version 3
as published by the Free Software Foundation.

libsonata is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License
along with libsonata.  If not, see <https://www.gnu.org/licenses/>.


.. |license| image:: https://img.shields.io/pypi/l/libsonata
                :target: https://github.com/BlueBrain/libsonata/blob/master/COPYING.LESSER

.. |coverage| image:: https://coveralls.io/repos/github/BlueBrain/libsonata/badge.svg
                 :target: https://coveralls.io/github/BlueBrain/libsonata

.. |docs| image:: https://readthedocs.org/projects/libsonata/badge/?version=latest
             :target: https://libsonata.readthedocs.io/
             :alt: documentation status

.. substitutions
.. |banner| image:: docs/source/_images/libSonataLogo.jpg

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/BlueBrain/libsonata",
    "name": "libsonata",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": "Blue Brain Project, EPFL",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/43/29/0ed25f6980108c3f5c06b585745eb0a2a73f24653049b856c47ab861d56b/libsonata-0.1.26.tar.gz",
    "platform": null,
    "description": "|banner|\n\n|license| |coverage| |docs|\n\nlibsonata\n=========\n\nC++ / Python reader for SONATA circuit files:\n`SONATA guide <https://github.com/AllenInstitute/sonata/blob/master/docs/SONATA_DEVELOPER_GUIDE.md>`__\n\nInstallation\n------------\n\nInstalling from PyPI\n~~~~~~~~~~~~~~~~~~~~\n\n.. code-block:: shell\n\n   pip install libsonata\n\nInstalling as a Python package, directly from GitHub\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n.. code-block:: shell\n\n   pip install git+https://github.com/BlueBrain/libsonata\n\nBuilding the C++ library\n~~~~~~~~~~~~~~~~~~~~~~~~\n\n.. code-block:: shell\n\n   git clone git@github.com:BlueBrain/libsonata.git --recursive\n   cd libsonata\n   mkdir build && cd build\n   cmake -DCMAKE_BUILD_TYPE=Release -DEXTLIB_FROM_SUBMODULES=ON ..\n   make -j\n\nSince `libsonata` uses backports for `std::optional` and `std::variant` which\nturn into their actual STL implementation once available, it's recommended to compile\n`libsonata` with the same C++ standard as the project linking to `libsonata`. This\nis done by passing `-DCMAKE_CXX_STANDARD={14,17}` to the `cmake` command above.\n\nUsage (Python)\n--------------\n\nNodes\n~~~~~\n\nNodeStorage\n+++++++++++\n\n.. code-block:: pycon\n\n   >>> import libsonata\n\n   >>> nodes = libsonata.NodeStorage('path/to/H5/file')\n\n   # list populations\n   >>> nodes.population_names\n\n   # open population\n   >>> population = nodes.open_population(<name>)\n\n\nNodePopulation\n++++++++++++++\n\n.. code-block:: pycon\n\n   # total number of nodes in the population\n   >>> population.size\n\n   # attribute names\n   >>> population.attribute_names\n\n   # get attribute value for single node, say 42\n   >>> population.get_attribute('mtype', 42)\n\n   # ...or Selection of nodes (see below) => returns NumPy array with corresponding values\n   >>> selection = libsonata.Selection(values=[1, 5, 9, 42])  # nodes 1, 5, 9, 42\n   >>> mtypes = population.get_attribute('mtype', selection)\n   >>> list(zip(selection.flatten(), mtypes))\n   [(1, u'mtype_of_1'), (5, u'mtype_of_5'), (9, u'mtype_of_9'), (42, u'mtype_of_42')]\n\n\nSelection\n+++++++++\n\nList of element IDs (either `node_id`, or `edge_id`) where adjacent IDs are grouped for the sake of efficient HDF5 file access.\nFor instance, `{1, 2, 3, 5}` sequence becomes `{[1, 4), [5, 6)}`.\n\n`Selection` can be instantiated from:\n - a sequence of scalar values (works for NumPy arrays as well)\n - a sequence of pairs (interpreted as ranges above, works for N x 2 NumPy arrays as well)\n\n`EdgePopulation` connectivity queries (see below) return ``Selection``\\ s as well.\n\n.. code-block:: pycon\n\n   >>> selection = libsonata.Selection([1, 2, 3, 5])\n   >>> selection.ranges\n   [(1, 4), (5, 6)]\n\n\n.. code-block:: pycon\n\n   >>> selection = libsonata.Selection([(1, 4), (5, 6)])\n   >>> selection.flatten()\n   [1, 2, 3, 5]\n   >>> selection.flat_size\n   4\n   >>> bool(selection)\n   True\n\n\nNode Sets\n+++++++++\n\nlibsonata can work with the Node Set concept, as described here: `SONATA guide: Node Sets File <https://github.com/AllenInstitute/sonata/blob/master/docs/SONATA_DEVELOPER_GUIDE.md#node-sets-file>`__\nThis allows the definition of names for groups of cells, and a way to query them.\nlibsonata also allows for extended expressions, such as Regular expressions,and floating point tests, as described here: `SONATA extension: Node Sets <https://sonata-extension.readthedocs.io/en/latest/sonata_nodeset.html>`__\n\n.. code-block:: pycon\n\n   # load a node set JSON file\n   >>> node_sets = libsonata.NodeSets.from_file('node_sets.json')\n\n   # list node sets\n   >>> node_sets.names\n   {'L6_UPC', 'Layer1', 'Layer2', 'Layer3', ....}\n\n   # get the selection of nodes that match in population\n   >>> selection = node_sets.materialize('Layer1', population)\n\n   # node sets can also be loaded from a JSON string\n   >>> node_sets_manual = libsonata.NodeSets(json.dumps({\"SLM_PPA_and_SP_PC\": {\"mtype\": [\"SLM_PPA\", \"SP_PC\"]}}))\n   >>> node_sets_manual.names\n   {'SLM_PPA_and_SP_PC'}\n\n\nEdges\n~~~~~\n\nEdgeStorage\n+++++++++++\n\nPopulation handling for `EdgeStorage` is analogous to `NodeStorage`:\n\n.. code-block:: pycon\n\n   >>> edges = libsonata.EdgeStorage('path/to/H5/file')\n\n   # list populations\n   >>> edges.population_names\n\n   # open population\n   >>> population = edges.open_population(<name>)\n\n\nEdgePopulation\n++++++++++++++\n\n.. code-block:: pycon\n\n   # total number of edges in the population\n   >>> population.size\n\n   # attribute names\n   >>> population.attribute_names\n\n   # get attribute value for single edge, say 123\n   >>> population.get_attribute('delay', 123)\n\n   # ...or Selection of edges => returns NumPy array with corresponding values\n   >>> selection = libsonata.Selection([1, 5, 9])\n   >>> population.get_attribute('delay', selection) # returns delays for edges 1, 5, 9\n\n\n...with additional methods for querying connectivity, where the results are selections that can be applied like above\n\n.. code-block:: pycon\n\n   # get source / target node ID for the 42nd edge:\n   >>> population.source_node(42)\n   >>> population.target_node(42)\n\n   # query connectivity (result is Selection object)\n   >>> selection_to_1 = population.afferent_edges(1)  # all edges with target node_id 1\n   >>> population.target_nodes(selection_to_1)  # since selection only contains edges\n                                                # targeting node_id 1 the result will be a\n                                                # numpy array of all 1's\n   >>> selection_from_2 = population.efferent_edges(2)  # all edges sourced from node_id 2\n   >>> selection = population.connecting_edges(2, 1)  # this selection is all edges from\n                                                      # node_id 2 to node_id 1\n\n   # ...or their vectorized analogues\n   >>> selection = population.afferent_edges([1, 2, 3])\n   >>> selection = population.efferent_edges([1, 2, 3])\n   >>> selection = population.connecting_edges([1, 2, 3], [4, 5, 6])\n\n\nReports\n~~~~~~~\n\nSpikeReader\n+++++++++++\n\n.. code-block:: pycon\n\n   >>> import libsonata\n\n   >>> spikes = libsonata.SpikeReader('path/to/H5/file')\n\n   # list populations\n   >>> spikes.get_population_names()\n\n   # open population\n   >>> population = spikes['<name>']\n\n\nSpikePopulation\n+++++++++++++++\n\n.. code-block:: pycon\n\n   # get all spikes [(node_id, timestep)]\n   >>> population.get()\n   [(5, 0.1), (2, 0.2), (3, 0.3), (2, 0.7), (3, 1.3)]\n\n   # get all spikes betwen tstart and tstop\n   >>> population.get(tstart=0.2, tstop=1.0)\n   [(2, 0.2), (3, 0.3), (2, 0.7)]\n\n   # get spikes attribute sorting (by_time, by_id, none)\n   >>> population.sorting\n   'by_time'\n\n   Pandas can be used to create a dataframe and get a better representation of the data\n\n.. code-block:: pycon\n\n   >>> import pandas\n\n   data = population.get()\n   df = pandas.DataFrame(data=data, columns=['ids', 'times']).set_index('times')\n   print(df)\n          ids\n   times\n   0.1      5\n   0.2      2\n   0.3      3\n   0.7      2\n   1.3      3\n\n\nSomaReportReader\n++++++++++++++++\n\n.. code-block:: pycon\n\n   >>> somas = libsonata.SomaReportReader('path/to/H5/file')\n\n   # list populations\n   >>> somas.get_population_names()\n\n   # open population\n   >>> population_somas = somas['<name>']\n\n\nSomaReportPopulation\n++++++++++++++++++++\n\n.. code-block:: pycon\n\n   # get times (tstart, tstop, dt)\n   >>> population_somas.times\n   (0.0, 1.0, 0.1)\n\n   # get unit attributes\n   >>> population_somas.time_units\n   'ms'\n   >>> population_somas.data_units\n   'mV'\n\n   # node_ids sorted?\n   >>> population_somas.sorted\n   True\n\n   # get a list of all node ids in the selected population\n   >>> population_somas.get_node_ids()\n   [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]\n\n   # get the DataFrame of the node_id values for the timesteps between tstart and tstop\n   >>> data_frame = population_somas.get(node_ids=[13, 14], tstart=0.8, tstop=1.0)\n\n   # get the data values\n   >>> data_frame.data\n   [[13.8, 14.8], [13.9, 14.9]]\n\n   # get the list of timesteps\n   >>> data_frame.times\n   [0.8, 0.9]\n\n   # get the list of node ids\n   >>> data_frame.ids\n   [13, 14]\n\n\nOnce again, pandas can be used to create a dataframe using the data, ids and times lists\n\n.. code-block:: pycon\n\n   >>> import pandas\n\n   df = pandas.DataFrame(data_frame.data, columns=data_frame.ids, index=data_frame.times)\n   print(df)\n          13    14\n   0.8  13.8  14.8\n   0.9  13.9  14.9\n\n\nElementReportReader\n+++++++++++++++++++\n\n.. code-block:: pycon\n\n   >>> elements = libsonata.ElementReportReader('path/to/H5/file')\n\n   # list populations\n   >>> elements.get_population_names()\n\n   # open population\n   >>> population_elements = elements['<name>']\n\n\nElementReportPopulation\n+++++++++++++++++++++++\n\n.. code-block:: pycon\n\n   # get times (tstart, tstop, dt)\n   >>> population_elements.times\n   (0.0, 4.0, 0.2)\n\n   >>> population_elements.get_node_ids()\n   [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]\n\n   # get the DataFrame of the node_id values for the timesteps between tstart and tstop\n   >>> data_frame = population_elements.get(node_ids=[13, 14], tstart=0.8, tstop=1.0)\n\n   # get the data values (list of list of floats with data[time_index][element_index])\n   >>> data_frame.data\n   [[46.0, 46.1, 46.2, 46.3, 46.4, 46.5, 46.6, 46.7, 46.8, 46.9], [56.0, 56.1, 56.2, 56.3, 56.4, 56.5, 56.6, 56.7, 56.8, 56.9]]\n\n   # get the list of timesteps\n   >>> data_frame.times\n   [0.8, 1.0]\n\n   # get the list of (node id, element_id)\n   >>> data_frame.ids\n   [(13, 30), (13, 30), (13, 31), (13, 31), (13, 32), (14, 32), (14, 33), (14, 33), (14, 34), (14, 34)]\n\n\nThe same way than with spikes and soma reports, pandas can be used to get a better representation of the data\n\n.. code-block:: pycon\n\n   >>> import pandas\n\n   df = pandas.DataFrame(data_frame.data, columns=pandas.MultiIndex.from_tuples(data_frame.ids), index=data_frame.times)\n   print(df)\n          13                            14\n          30    30    31    31    32    32    33    33    34    34\n   0.8  46.0  46.1  46.2  46.3  46.4  46.5  46.6  46.7  46.8  46.9\n   1.0  56.0  56.1  56.2  56.3  56.4  56.5  56.6  56.7  56.8  56.9\n\nFor big datasets, using numpy arrays could greatly improve the performance\n\n.. code-block:: pycon\n\n   >>> import numpy\n\n   np_data = numpy.asarray(data_frame.data)\n   np_ids = numpy.asarray(data_frame.ids).T\n   np_times = numpy.asarray(data_frame.times)\n\n   df = pandas.DataFrame(np_data, columns=pandas.MultiIndex.from_arrays(np_ids), index=np_times)\n\n\nAcknowledgements\n----------------\nThe development of this software was supported by funding to the Blue Brain Project, a research center of the \u00c9cole polytechnique f\u00e9d\u00e9rale de Lausanne (EPFL), from the Swiss government\u2019s ETH Board of the Swiss Federal Institutes of Technology.\n\nThis research was supported by the EBRAINS research infrastructure, funded from the European Union\u2019s Horizon 2020 Framework Programme for Research and Innovation under the Specific Grant Agreement No. 945539 (Human Brain Project SGA3).\nThis project/research has received funding from the European Union\u2019s Horizon 2020 Framework Programme for Research and Innovation under the Specific Grant Agreement No. 785907 (Human Brain Project SGA2).\n\n\nLicense\n-------\n\nlibsonata is distributed under the terms of the GNU Lesser General Public License version 3,\nunless noted otherwise, for example, for external dependencies.\nRefer to `COPYING.LESSER` and `COPYING` files for details.\n\nCopyright (c) 2018-2022 Blue Brain Project/EPFL\n\nlibsonata is free software: you can redistribute it and/or modify\nit under the terms of the GNU Lesser General Public License version 3\nas published by the Free Software Foundation.\n\nlibsonata is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU Lesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with libsonata.  If not, see <https://www.gnu.org/licenses/>.\n\n\n.. |license| image:: https://img.shields.io/pypi/l/libsonata\n                :target: https://github.com/BlueBrain/libsonata/blob/master/COPYING.LESSER\n\n.. |coverage| image:: https://coveralls.io/repos/github/BlueBrain/libsonata/badge.svg\n                 :target: https://coveralls.io/github/BlueBrain/libsonata\n\n.. |docs| image:: https://readthedocs.org/projects/libsonata/badge/?version=latest\n             :target: https://libsonata.readthedocs.io/\n             :alt: documentation status\n\n.. substitutions\n.. |banner| image:: docs/source/_images/libSonataLogo.jpg\n",
    "bugtrack_url": null,
    "license": "LGPLv3",
    "summary": "SONATA files reader",
    "version": "0.1.26",
    "project_urls": {
        "Homepage": "https://github.com/BlueBrain/libsonata"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a9e6c553179d225c3131e4d64d202986c62da8e31848959bb3e92d6aed0e4ca2",
                "md5": "7827fdce96e29cc5cd585f87abb87dd8",
                "sha256": "d77dc1ecdc9bed447656e217a5d093bee5b54b6836fabf4c3659930983966ded"
            },
            "downloads": -1,
            "filename": "libsonata-0.1.26-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7827fdce96e29cc5cd585f87abb87dd8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2026393,
            "upload_time": "2024-04-29T12:28:38",
            "upload_time_iso_8601": "2024-04-29T12:28:38.005275Z",
            "url": "https://files.pythonhosted.org/packages/a9/e6/c553179d225c3131e4d64d202986c62da8e31848959bb3e92d6aed0e4ca2/libsonata-0.1.26-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "45e083f280846fb99b32155ee3a57c28768377a8ec990be28c0738f84daef4e2",
                "md5": "a4a99b66f971550ca7a484b137a0f3b2",
                "sha256": "2fb754066d319b4e0bf93cbcaf3147e75cc0ae7b39129bdd1059db62a52facf8"
            },
            "downloads": -1,
            "filename": "libsonata-0.1.26-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a4a99b66f971550ca7a484b137a0f3b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1683549,
            "upload_time": "2024-04-29T12:28:40",
            "upload_time_iso_8601": "2024-04-29T12:28:40.355525Z",
            "url": "https://files.pythonhosted.org/packages/45/e0/83f280846fb99b32155ee3a57c28768377a8ec990be28c0738f84daef4e2/libsonata-0.1.26-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c1a5f88c08245350ccbaeea220d89d22e3743d005aeaa83532f02c719efbc5f",
                "md5": "415a9160dbe55ccae43f5e2eb6501992",
                "sha256": "987b96bf1d6e62d638e8cd02862f6ec0ba24342f4b4da875db8c37390f81baaa"
            },
            "downloads": -1,
            "filename": "libsonata-0.1.26-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "415a9160dbe55ccae43f5e2eb6501992",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2322406,
            "upload_time": "2024-04-29T12:28:41",
            "upload_time_iso_8601": "2024-04-29T12:28:41.996279Z",
            "url": "https://files.pythonhosted.org/packages/2c/1a/5f88c08245350ccbaeea220d89d22e3743d005aeaa83532f02c719efbc5f/libsonata-0.1.26-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab20a40814a924548f318bc400b50c7132a8182ec0c52efa548ca1397a172855",
                "md5": "e2a2d4ddd08a8fbd3b952dd84a0b34ac",
                "sha256": "7dcf12d519b68deab4dd8dc63824f90afedb03a3ed3fa09a38a80a47019f77db"
            },
            "downloads": -1,
            "filename": "libsonata-0.1.26-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e2a2d4ddd08a8fbd3b952dd84a0b34ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2269482,
            "upload_time": "2024-04-29T12:28:44",
            "upload_time_iso_8601": "2024-04-29T12:28:44.051737Z",
            "url": "https://files.pythonhosted.org/packages/ab/20/a40814a924548f318bc400b50c7132a8182ec0c52efa548ca1397a172855/libsonata-0.1.26-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "13a5547a4f8d8be086f364a29c93577b3ca8dad682ca1f9f06db3778c84059cf",
                "md5": "07514653986ddc4cce447e39f39b3642",
                "sha256": "cdf5bdd4a0d2f966993ff0d917f9b54b3d314b26a901d00a544c0db75560a981"
            },
            "downloads": -1,
            "filename": "libsonata-0.1.26-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "07514653986ddc4cce447e39f39b3642",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2028553,
            "upload_time": "2024-04-29T12:28:46",
            "upload_time_iso_8601": "2024-04-29T12:28:46.056493Z",
            "url": "https://files.pythonhosted.org/packages/13/a5/547a4f8d8be086f364a29c93577b3ca8dad682ca1f9f06db3778c84059cf/libsonata-0.1.26-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f0b8395ac01061386a09a348ee1b7dd77ddcfb4e05f97175851192cc3de4b45f",
                "md5": "89c91ccf19511bfebed507f3c1a58db8",
                "sha256": "b98aacc8131920c43ebff5e66ea81b61c432bb8e08516a46470e7b8049897ccd"
            },
            "downloads": -1,
            "filename": "libsonata-0.1.26-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "89c91ccf19511bfebed507f3c1a58db8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1684817,
            "upload_time": "2024-04-29T12:28:47",
            "upload_time_iso_8601": "2024-04-29T12:28:47.496957Z",
            "url": "https://files.pythonhosted.org/packages/f0/b8/395ac01061386a09a348ee1b7dd77ddcfb4e05f97175851192cc3de4b45f/libsonata-0.1.26-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "08d6368290a705f8d50c5be869bec4970c66c0c93e4185a5039f5309d650fdd0",
                "md5": "1afe0506164b72dd3e052c76ce024f5a",
                "sha256": "8dd06bca6e8d4e92f68263e7a3641abd87fd52cd542adddcb58b013681a52cd2"
            },
            "downloads": -1,
            "filename": "libsonata-0.1.26-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1afe0506164b72dd3e052c76ce024f5a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2324067,
            "upload_time": "2024-04-29T12:28:49",
            "upload_time_iso_8601": "2024-04-29T12:28:49.539471Z",
            "url": "https://files.pythonhosted.org/packages/08/d6/368290a705f8d50c5be869bec4970c66c0c93e4185a5039f5309d650fdd0/libsonata-0.1.26-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "36cfff59b00af317c25bf5d24eb3b926b939b9ffbf5c7ad6e157e49212304528",
                "md5": "b751d7c6d49cc97dec7b81ccca3b541e",
                "sha256": "11aeb802e98babc0d8eb8caed022fab78b9fadd47b2960bc0d95ebee346425ad"
            },
            "downloads": -1,
            "filename": "libsonata-0.1.26-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b751d7c6d49cc97dec7b81ccca3b541e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2271024,
            "upload_time": "2024-04-29T12:28:51",
            "upload_time_iso_8601": "2024-04-29T12:28:51.568381Z",
            "url": "https://files.pythonhosted.org/packages/36/cf/ff59b00af317c25bf5d24eb3b926b939b9ffbf5c7ad6e157e49212304528/libsonata-0.1.26-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "90a2ae0c6e46585a87a50498b28346e527052714b1791b14dcc3d154d2a26e4a",
                "md5": "c2d4b56428ea9a296ddacc57e0a80211",
                "sha256": "5720092fd46407ed1a28ca28f0f359d499f6d8d65700f2f64afa0e17ad9bf90a"
            },
            "downloads": -1,
            "filename": "libsonata-0.1.26-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c2d4b56428ea9a296ddacc57e0a80211",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2033353,
            "upload_time": "2024-04-29T12:28:53",
            "upload_time_iso_8601": "2024-04-29T12:28:53.724803Z",
            "url": "https://files.pythonhosted.org/packages/90/a2/ae0c6e46585a87a50498b28346e527052714b1791b14dcc3d154d2a26e4a/libsonata-0.1.26-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1ac7626dcd25c62d0d6dee58ffbc32dfe8a1b7d25540f9c0f756a0f822a5c5a4",
                "md5": "c0f242abbec98116fb5b8a7ba7346788",
                "sha256": "73d8852dbdc0fc4cd4567662d12e58bd83e5823a438e1b1f19142a4d654c9ac8"
            },
            "downloads": -1,
            "filename": "libsonata-0.1.26-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c0f242abbec98116fb5b8a7ba7346788",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1688258,
            "upload_time": "2024-04-29T12:28:56",
            "upload_time_iso_8601": "2024-04-29T12:28:56.263461Z",
            "url": "https://files.pythonhosted.org/packages/1a/c7/626dcd25c62d0d6dee58ffbc32dfe8a1b7d25540f9c0f756a0f822a5c5a4/libsonata-0.1.26-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8d2e7491076e29fe86bf31dd780caf5030f2c5970964c21c0ae32d457c8bf080",
                "md5": "eec87c243d95f0f0d78c947f044fb975",
                "sha256": "b1b3a7f0072bc6eff81c4cde55ce8005a484f46fe0c20144f2a270e88bec7f6c"
            },
            "downloads": -1,
            "filename": "libsonata-0.1.26-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eec87c243d95f0f0d78c947f044fb975",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2318563,
            "upload_time": "2024-04-29T12:28:58",
            "upload_time_iso_8601": "2024-04-29T12:28:58.310871Z",
            "url": "https://files.pythonhosted.org/packages/8d/2e/7491076e29fe86bf31dd780caf5030f2c5970964c21c0ae32d457c8bf080/libsonata-0.1.26-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b2adb6ac287f8c3f683ed8857047859486208ec4de1e01cb704d25d90c4bece",
                "md5": "900f3aec0e6f25f479cb5a7c968fb52d",
                "sha256": "2fa61e9b6039af4aa572c0346e1ff2d1a3e319edde1fcb55841f93751a7f46cd"
            },
            "downloads": -1,
            "filename": "libsonata-0.1.26-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "900f3aec0e6f25f479cb5a7c968fb52d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2272086,
            "upload_time": "2024-04-29T12:29:00",
            "upload_time_iso_8601": "2024-04-29T12:29:00.292615Z",
            "url": "https://files.pythonhosted.org/packages/2b/2a/db6ac287f8c3f683ed8857047859486208ec4de1e01cb704d25d90c4bece/libsonata-0.1.26-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cfe8cbed28017ad3a1e6400998389ce620447c8453623a9c510eab427b574e8c",
                "md5": "6099db083992548655a5d7bc494b0b9e",
                "sha256": "059b320b89047e0e4992f10438a5194475386ae87288393aebc9f8ebf3be3c48"
            },
            "downloads": -1,
            "filename": "libsonata-0.1.26-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6099db083992548655a5d7bc494b0b9e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2026606,
            "upload_time": "2024-04-29T12:29:02",
            "upload_time_iso_8601": "2024-04-29T12:29:02.045631Z",
            "url": "https://files.pythonhosted.org/packages/cf/e8/cbed28017ad3a1e6400998389ce620447c8453623a9c510eab427b574e8c/libsonata-0.1.26-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "61513873692120d3e05e0517af64049e51b341fcebb667fee1d2a2766ed082d1",
                "md5": "07fe89bbcd5a5b8b80f5270d52d00009",
                "sha256": "fad72f72199cc2b6ca737b684dc88b3e984d5aa87786bd565d6fd4242235e487"
            },
            "downloads": -1,
            "filename": "libsonata-0.1.26-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "07fe89bbcd5a5b8b80f5270d52d00009",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1683455,
            "upload_time": "2024-04-29T12:29:04",
            "upload_time_iso_8601": "2024-04-29T12:29:04.140677Z",
            "url": "https://files.pythonhosted.org/packages/61/51/3873692120d3e05e0517af64049e51b341fcebb667fee1d2a2766ed082d1/libsonata-0.1.26-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7b484e7162e271b0b569a401b7f1b7f8de56362a09ca9d0526b79f1ed4a0efe",
                "md5": "d43ba20fb832aba667be0b27748e532f",
                "sha256": "7457b68768d322e4340756091de0fefc984e51c3a5dc808811b424e11335dfc9"
            },
            "downloads": -1,
            "filename": "libsonata-0.1.26-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d43ba20fb832aba667be0b27748e532f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2322866,
            "upload_time": "2024-04-29T12:29:05",
            "upload_time_iso_8601": "2024-04-29T12:29:05.701606Z",
            "url": "https://files.pythonhosted.org/packages/a7/b4/84e7162e271b0b569a401b7f1b7f8de56362a09ca9d0526b79f1ed4a0efe/libsonata-0.1.26-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "724062bc37a8285d522c72a545fe3c5bbf8650067c931f0f945f1fec91c3fec6",
                "md5": "77c2053c53b0a8ebc1148d916298d7ab",
                "sha256": "47cd673416008507ddb9c5e28fa752274ff6b1dd744f8ac780ac3ca6e1290f2a"
            },
            "downloads": -1,
            "filename": "libsonata-0.1.26-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "77c2053c53b0a8ebc1148d916298d7ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2271073,
            "upload_time": "2024-04-29T12:29:08",
            "upload_time_iso_8601": "2024-04-29T12:29:08.496758Z",
            "url": "https://files.pythonhosted.org/packages/72/40/62bc37a8285d522c72a545fe3c5bbf8650067c931f0f945f1fec91c3fec6/libsonata-0.1.26-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "466e4bda655825ec53a8c343e322d2a6a6e735f43ebfbdf552fb004eed4a9b5b",
                "md5": "aef084eef8f3a3dc33e484874802fc6c",
                "sha256": "2aaf9df4391e3a2b3109f8b46ecc7e0df1320b5fa8ee7a7cbe2fad4f19b6c949"
            },
            "downloads": -1,
            "filename": "libsonata-0.1.26-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aef084eef8f3a3dc33e484874802fc6c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2026569,
            "upload_time": "2024-04-29T12:29:10",
            "upload_time_iso_8601": "2024-04-29T12:29:10.155588Z",
            "url": "https://files.pythonhosted.org/packages/46/6e/4bda655825ec53a8c343e322d2a6a6e735f43ebfbdf552fb004eed4a9b5b/libsonata-0.1.26-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3209a77a39136984820b6d0f15ceb9cbc2bb6ba8ea21e90094d73a7fca46ef86",
                "md5": "7a5367d982a990cb2aed110de3a82bb3",
                "sha256": "ac305535490f3739984afa0481b9f44df9f480bad0cf2e6ecc2705ae22eb6b0b"
            },
            "downloads": -1,
            "filename": "libsonata-0.1.26-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7a5367d982a990cb2aed110de3a82bb3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1683648,
            "upload_time": "2024-04-29T12:29:11",
            "upload_time_iso_8601": "2024-04-29T12:29:11.764481Z",
            "url": "https://files.pythonhosted.org/packages/32/09/a77a39136984820b6d0f15ceb9cbc2bb6ba8ea21e90094d73a7fca46ef86/libsonata-0.1.26-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d22fd7efbfe69ee521a3f7021534a30a36e8c9ad78223509c38d4e90c9c9c4e1",
                "md5": "6d947bb59b346edc0a60c5124481c952",
                "sha256": "8fb8e2f7debdfbfb59095d5c860161698ba400a7b58c0179990e6f118f16b9d1"
            },
            "downloads": -1,
            "filename": "libsonata-0.1.26-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6d947bb59b346edc0a60c5124481c952",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2322659,
            "upload_time": "2024-04-29T12:29:13",
            "upload_time_iso_8601": "2024-04-29T12:29:13.571245Z",
            "url": "https://files.pythonhosted.org/packages/d2/2f/d7efbfe69ee521a3f7021534a30a36e8c9ad78223509c38d4e90c9c9c4e1/libsonata-0.1.26-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ccdd8f6e2d38c56f1f5f0e41e87117657e9e08024712958e840940a3fee6b1a2",
                "md5": "2a75f6538d64f8aa0a7a948b4ed1c563",
                "sha256": "afada4fe47bd0c24525d91a93a54a7fe08b4a2deae19061a2240af968fbfa2bd"
            },
            "downloads": -1,
            "filename": "libsonata-0.1.26-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2a75f6538d64f8aa0a7a948b4ed1c563",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2271355,
            "upload_time": "2024-04-29T12:29:15",
            "upload_time_iso_8601": "2024-04-29T12:29:15.755743Z",
            "url": "https://files.pythonhosted.org/packages/cc/dd/8f6e2d38c56f1f5f0e41e87117657e9e08024712958e840940a3fee6b1a2/libsonata-0.1.26-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "43290ed25f6980108c3f5c06b585745eb0a2a73f24653049b856c47ab861d56b",
                "md5": "408bd40e12462eeb876857c0471a4923",
                "sha256": "b653cbefbc511fe24ccf5cce7d80253954ec280800af5fd33700f0faea93fd4c"
            },
            "downloads": -1,
            "filename": "libsonata-0.1.26.tar.gz",
            "has_sig": false,
            "md5_digest": "408bd40e12462eeb876857c0471a4923",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 1082797,
            "upload_time": "2024-04-29T12:29:17",
            "upload_time_iso_8601": "2024-04-29T12:29:17.681576Z",
            "url": "https://files.pythonhosted.org/packages/43/29/0ed25f6980108c3f5c06b585745eb0a2a73f24653049b856c47ab861d56b/libsonata-0.1.26.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-29 12:29:17",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "BlueBrain",
    "github_project": "libsonata",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "libsonata"
}
        
Elapsed time: 0.24602s