pybinding-dev


Namepybinding-dev JSON
Version 1.0.4 PyPI version JSON
download
home_pageNone
SummaryPackage for tight-binding calculations, Documentation: http://pybinding.site/ (c) 2015-2023
upload_time2024-06-28 22:53:39
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseCopyright (c) 2015 - 2017, Dean Moldovan All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
keywords pybinding tight-binding solid-state physics physics cmt quantum graphene tmd kpm cpgf
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            <img src="/docs/pb.png?raw=true" alt="pybinding" width=220px/>

[![DOI](https://zenodo.org/badge/20541/dean0x7d/pybinding.svg)](https://zenodo.org/badge/latestdoi/20541/dean0x7d/pybinding)
[![License](https://img.shields.io/badge/license-BSD-blue.svg?maxAge=2592000)](license.md)
[![Gitter](https://img.shields.io/gitter/room/dean0x7d/pybinding.svg?maxAge=2592000)](https://gitter.im/dean0x7d/pybinding)
[![Documentation Status](https://readthedocs.org/projects/pybinding/badge/?version=stable)](http://docs.pybinding.site/)
[![Travis Build Status](https://travis-ci.org/dean0x7d/pybinding.svg?branch=master)](https://travis-ci.org/dean0x7d/pybinding)
[![AppVeyor Build status](https://ci.appveyor.com/api/projects/status/vd84e6gxixsu9l81/branch/master?svg=true)](https://ci.appveyor.com/project/dean0x7d/pybinding)

Pybinding is a Python package for numerical tight-binding calculations in solid state physics.
The main features include:

* **Declarative model construction** - The user just needs to describe *what* the model should be,
  but not *how* to build it. Pybinding will take care of the numerical details of building the
  Hamiltonian matrix so users can concentrate on the physics, i.e. the quantum properties of the
  model.

* **Fast compute** - Pybinding's implementation of the kernel polynomial method allows for very
  fast calculation of various physical properties of tight-binding systems. Exact diagonalization
  is also available through the use of scipy's eigenvalue solvers. The framework is very flexible
  and allows the addition of user-defined computation routines.

* **Result analysis and visualization** - The package contains utility functions for post-processing
  the raw result data. The included plotting functions are tailored for tight-binding problems to
  help visualize the model structure and to make sense of the results.

The code interface is written in Python with the aim to be as user-friendly and flexible as
possible. Under the hood, C++11 is used to accelerate demanding tasks to deliver high performance
with low memory usage.

See the [documentation] for more details.

## Install

Pybinding can be installed on Windows, Linux or Mac, with the following prerequisites:

* [Python] 3.9 or newer (Python 2.x is not supported)
* The [SciPy] stack of scientific packages, with required versions:
  * numpy >= v1.12
  * scipy >= v0.19
  * matplotlib >= v2.0
* If you're using Linux, you'll also need GCC >= v5.0 (or clang >= v3.5) and CMake >= v3.5.

Detailed [install instructions] are part of the documentation, but if you already have all the
prerequisites, it's just a simple case of using `pip`, Python's usual package manager:

    pip install pybinding


## Features

The goal of the project is to develop a tight-binding code framework which is fast, flexible and
easy to use. This is just a quick overview of some of the features. See the [documentation] for
more details and a guide to get started.

* Construction of arbitrary tight-binding lattices and geometries: 1 to 3 dimensions
  (including multilayer 2D systems), periodic or finite size (with fine control of edges)
* Easy polygon shape definition for 2D systems and freeform shapes for n-dimensional systems
* Geometric deformations and defects: defined via displacement and state functions
* Fields and arbitrary effects: defined via hopping and onsite energy functions
* Kernel polynomial method: a fast way to compute Green's function, spectral densities of
  arbitrary operators, electrical conductivity, or various other user-defined KPM methods
* Exact diagonalization: standard dense and sparse eigenvalues solvers (always available)
  and the [FEAST] solver (only available when compiled with Intel's MKL)
* Transport: scattering systems with semi-infinite leads can be constructed in pybinding and then
  solved using the [Kwant compatibility] layer
* Model and result objects have builtin plotting functions for easy visualization


## Benchmarks

One of the main features of pybinding is an easy-to-use and fast model builder. This can be a
demanding task for large or complicated systems. Great care was taken to make this process fast.

The following figures compare the performance of pybinding with the [Kwant] package. They present
the time and memory required to build a Hamiltonian matrix which describes a tight-binding system.
Pybinding features good performance and a low memory footprint by using contiguous data structures
and vectorized operations.

<p align="center">
  <img src="/docs/benchmarks/system_build.png?raw=true" alt="Tight-binding model build benchmark"/>
</p>

See the [benchmarks] section of the documentation for details on the testbed hardware and software,
as well as the source code which can be used to reproduce the results.

## Citing

Pybinding is free to use under the simple conditions of the [BSD open source license](license.md).
If you wish to use results produced with this package in a scientific publication, please just
mention the package name in the text and cite the Zenodo DOI of this project:

[![DOI](https://zenodo.org/badge/20541/dean0x7d/pybinding.svg)](https://zenodo.org/badge/latestdoi/20541/dean0x7d/pybinding)

You'll find a *"Cite as"* section in the bottom right of the Zenodo page. You can select a citation
style from the dropdown menu or export the data in BibTeX and similar formats.


## Questions?

If you have any questions, feel free to join the [chat room on Gitter].
You can also open an issue at the [tracker].


[documentation]: http://docs.pybinding.site/
[install instructions]: http://docs.pybinding.site/page/install/index.html
[Python]: https://www.python.org/
[SciPy]: http://www.scipy.org/
[FEAST]: http://www.ecs.umass.edu/~polizzi/feast/index.htm
[Kwant compatibility]: http://docs.pybinding.site/page/advanced/kwant.html
[Kwant]: http://kwant-project.org/
[benchmarks]: http://docs.pybinding.site/page/benchmarks/index.html
[chat room on Gitter]: https://gitter.im/dean0x7d/pybinding
[tracker]: https://github.com/dean0x7d/pybinding/issues

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pybinding-dev",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "Bert Jorissen <info@bertjorissen.be>",
    "keywords": "pybinding, tight-binding, solid-state physics, physics, cmt, quantum, graphene, TMD, KPM, CPGF",
    "author": null,
    "author_email": "Dean Moldovan <dean0x7d@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/d5/88/7064c3ff04a3d7ef48485d2e51011908cbfdb3897a0dab1c2ee1e194f55c/pybinding_dev-1.0.4.tar.gz",
    "platform": null,
    "description": "<img src=\"/docs/pb.png?raw=true\" alt=\"pybinding\" width=220px/>\n\n[![DOI](https://zenodo.org/badge/20541/dean0x7d/pybinding.svg)](https://zenodo.org/badge/latestdoi/20541/dean0x7d/pybinding)\n[![License](https://img.shields.io/badge/license-BSD-blue.svg?maxAge=2592000)](license.md)\n[![Gitter](https://img.shields.io/gitter/room/dean0x7d/pybinding.svg?maxAge=2592000)](https://gitter.im/dean0x7d/pybinding)\n[![Documentation Status](https://readthedocs.org/projects/pybinding/badge/?version=stable)](http://docs.pybinding.site/)\n[![Travis Build Status](https://travis-ci.org/dean0x7d/pybinding.svg?branch=master)](https://travis-ci.org/dean0x7d/pybinding)\n[![AppVeyor Build status](https://ci.appveyor.com/api/projects/status/vd84e6gxixsu9l81/branch/master?svg=true)](https://ci.appveyor.com/project/dean0x7d/pybinding)\n\nPybinding is a Python package for numerical tight-binding calculations in solid state physics.\nThe main features include:\n\n* **Declarative model construction** - The user just needs to describe *what* the model should be,\n  but not *how* to build it. Pybinding will take care of the numerical details of building the\n  Hamiltonian matrix so users can concentrate on the physics, i.e. the quantum properties of the\n  model.\n\n* **Fast compute** - Pybinding's implementation of the kernel polynomial method allows for very\n  fast calculation of various physical properties of tight-binding systems. Exact diagonalization\n  is also available through the use of scipy's eigenvalue solvers. The framework is very flexible\n  and allows the addition of user-defined computation routines.\n\n* **Result analysis and visualization** - The package contains utility functions for post-processing\n  the raw result data. The included plotting functions are tailored for tight-binding problems to\n  help visualize the model structure and to make sense of the results.\n\nThe code interface is written in Python with the aim to be as user-friendly and flexible as\npossible. Under the hood, C++11 is used to accelerate demanding tasks to deliver high performance\nwith low memory usage.\n\nSee the [documentation] for more details.\n\n## Install\n\nPybinding can be installed on Windows, Linux or Mac, with the following prerequisites:\n\n* [Python] 3.9 or newer (Python 2.x is not supported)\n* The [SciPy] stack of scientific packages, with required versions:\n  * numpy >= v1.12\n  * scipy >= v0.19\n  * matplotlib >= v2.0\n* If you're using Linux, you'll also need GCC >= v5.0 (or clang >= v3.5) and CMake >= v3.5.\n\nDetailed [install instructions] are part of the documentation, but if you already have all the\nprerequisites, it's just a simple case of using `pip`, Python's usual package manager:\n\n    pip install pybinding\n\n\n## Features\n\nThe goal of the project is to develop a tight-binding code framework which is fast, flexible and\neasy to use. This is just a quick overview of some of the features. See the [documentation] for\nmore details and a guide to get started.\n\n* Construction of arbitrary tight-binding lattices and geometries: 1 to 3 dimensions\n  (including multilayer 2D systems), periodic or finite size (with fine control of edges)\n* Easy polygon shape definition for 2D systems and freeform shapes for n-dimensional systems\n* Geometric deformations and defects: defined via displacement and state functions\n* Fields and arbitrary effects: defined via hopping and onsite energy functions\n* Kernel polynomial method: a fast way to compute Green's function, spectral densities of\n  arbitrary operators, electrical conductivity, or various other user-defined KPM methods\n* Exact diagonalization: standard dense and sparse eigenvalues solvers (always available)\n  and the [FEAST] solver (only available when compiled with Intel's MKL)\n* Transport: scattering systems with semi-infinite leads can be constructed in pybinding and then\n  solved using the [Kwant compatibility] layer\n* Model and result objects have builtin plotting functions for easy visualization\n\n\n## Benchmarks\n\nOne of the main features of pybinding is an easy-to-use and fast model builder. This can be a\ndemanding task for large or complicated systems. Great care was taken to make this process fast.\n\nThe following figures compare the performance of pybinding with the [Kwant] package. They present\nthe time and memory required to build a Hamiltonian matrix which describes a tight-binding system.\nPybinding features good performance and a low memory footprint by using contiguous data structures\nand vectorized operations.\n\n<p align=\"center\">\n  <img src=\"/docs/benchmarks/system_build.png?raw=true\" alt=\"Tight-binding model build benchmark\"/>\n</p>\n\nSee the [benchmarks] section of the documentation for details on the testbed hardware and software,\nas well as the source code which can be used to reproduce the results.\n\n## Citing\n\nPybinding is free to use under the simple conditions of the [BSD open source license](license.md).\nIf you wish to use results produced with this package in a scientific publication, please just\nmention the package name in the text and cite the Zenodo DOI of this project:\n\n[![DOI](https://zenodo.org/badge/20541/dean0x7d/pybinding.svg)](https://zenodo.org/badge/latestdoi/20541/dean0x7d/pybinding)\n\nYou'll find a *\"Cite as\"* section in the bottom right of the Zenodo page. You can select a citation\nstyle from the dropdown menu or export the data in BibTeX and similar formats.\n\n\n## Questions?\n\nIf you have any questions, feel free to join the [chat room on Gitter].\nYou can also open an issue at the [tracker].\n\n\n[documentation]: http://docs.pybinding.site/\n[install instructions]: http://docs.pybinding.site/page/install/index.html\n[Python]: https://www.python.org/\n[SciPy]: http://www.scipy.org/\n[FEAST]: http://www.ecs.umass.edu/~polizzi/feast/index.htm\n[Kwant compatibility]: http://docs.pybinding.site/page/advanced/kwant.html\n[Kwant]: http://kwant-project.org/\n[benchmarks]: http://docs.pybinding.site/page/benchmarks/index.html\n[chat room on Gitter]: https://gitter.im/dean0x7d/pybinding\n[tracker]: https://github.com/dean0x7d/pybinding/issues\n",
    "bugtrack_url": null,
    "license": "Copyright (c) 2015 - 2017, Dean Moldovan  All rights reserved.  Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:  * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.  * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ",
    "summary": "Package for tight-binding calculations, Documentation: http://pybinding.site/ (c) 2015-2023",
    "version": "1.0.4",
    "project_urls": {
        "changelog": "https://github.com/dean0x7d/pybinding/blob/master/changelog.md",
        "documentation": "http://pybinding.site/",
        "repository": "https://github.com/dean0x7d/pybinding"
    },
    "split_keywords": [
        "pybinding",
        " tight-binding",
        " solid-state physics",
        " physics",
        " cmt",
        " quantum",
        " graphene",
        " tmd",
        " kpm",
        " cpgf"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "178aaebf037399f85ac10dbde8f04d8efa9cf9b9e92fd500ede2c8856876bbdd",
                "md5": "73090cadef7903684fd447c25272ce3c",
                "sha256": "077cbffe8fc9c2d23e140bc425f4d0ae106522b33d2153c160765b60b1d09c1d"
            },
            "downloads": -1,
            "filename": "pybinding_dev-1.0.4-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "73090cadef7903684fd447c25272ce3c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1150586,
            "upload_time": "2024-06-28T22:53:13",
            "upload_time_iso_8601": "2024-06-28T22:53:13.310896Z",
            "url": "https://files.pythonhosted.org/packages/17/8a/aebf037399f85ac10dbde8f04d8efa9cf9b9e92fd500ede2c8856876bbdd/pybinding_dev-1.0.4-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3ecba866bc8212b35f6304518c210bd3839896096a9d249951a9442831150799",
                "md5": "3acf98067bef7d2a3c12fdc098e7b2d1",
                "sha256": "875ce2fccac811540485bf7f8f90e4d50f9526682449e96a2b50bb5e508ad955"
            },
            "downloads": -1,
            "filename": "pybinding_dev-1.0.4-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3acf98067bef7d2a3c12fdc098e7b2d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 919116,
            "upload_time": "2024-06-28T22:53:15",
            "upload_time_iso_8601": "2024-06-28T22:53:15.589393Z",
            "url": "https://files.pythonhosted.org/packages/3e/cb/a866bc8212b35f6304518c210bd3839896096a9d249951a9442831150799/pybinding_dev-1.0.4-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "491d49e9a87f93e3bcf6990e3e69ac8d8aca809d8ead07bfeaf33581ee6b78f2",
                "md5": "0f3f8243c2fded83419f6d38f3c8918e",
                "sha256": "c967e4bf8867b32a46cc603e329f5849d5d06dc6bd5ff66542584a3f9ee1dfb1"
            },
            "downloads": -1,
            "filename": "pybinding_dev-1.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0f3f8243c2fded83419f6d38f3c8918e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1202738,
            "upload_time": "2024-06-28T22:53:16",
            "upload_time_iso_8601": "2024-06-28T22:53:16.964871Z",
            "url": "https://files.pythonhosted.org/packages/49/1d/49e9a87f93e3bcf6990e3e69ac8d8aca809d8ead07bfeaf33581ee6b78f2/pybinding_dev-1.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a755faa56acc1824e5122d7acdaabe85a5855e73202eae9f3c36be5fe74a657",
                "md5": "74dd63bb1e1c9370fdae3fbc687e521d",
                "sha256": "f022a58e33294e77901aa9a4016dca19b688b7dbe95ee32ae647123a7465e5f9"
            },
            "downloads": -1,
            "filename": "pybinding_dev-1.0.4-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "74dd63bb1e1c9370fdae3fbc687e521d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 880306,
            "upload_time": "2024-06-28T22:53:18",
            "upload_time_iso_8601": "2024-06-28T22:53:18.752399Z",
            "url": "https://files.pythonhosted.org/packages/6a/75/5faa56acc1824e5122d7acdaabe85a5855e73202eae9f3c36be5fe74a657/pybinding_dev-1.0.4-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "70b60a5f7e2423a70ff563d038d03ae40d2ab75a46bdb9316178e5f2e672613d",
                "md5": "652148c2b990aec109150ea95103316a",
                "sha256": "eb122f7ea0ee6a4d41e8fc75effce5fd2ec03001e206fb38b565d57cb67b09c9"
            },
            "downloads": -1,
            "filename": "pybinding_dev-1.0.4-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "652148c2b990aec109150ea95103316a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1151718,
            "upload_time": "2024-06-28T22:53:20",
            "upload_time_iso_8601": "2024-06-28T22:53:20.662138Z",
            "url": "https://files.pythonhosted.org/packages/70/b6/0a5f7e2423a70ff563d038d03ae40d2ab75a46bdb9316178e5f2e672613d/pybinding_dev-1.0.4-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "522b31ad9f6ac4c40a3b18c0b509f3e8a05f2552a1b5fa973b605f1ebf69935c",
                "md5": "5edc02860e9b266f2115079ce4f1c082",
                "sha256": "969d0e21955723e273726a223d2438e7267c645928963f6bc0b5e872f4091372"
            },
            "downloads": -1,
            "filename": "pybinding_dev-1.0.4-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5edc02860e9b266f2115079ce4f1c082",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 920316,
            "upload_time": "2024-06-28T22:53:21",
            "upload_time_iso_8601": "2024-06-28T22:53:21.963176Z",
            "url": "https://files.pythonhosted.org/packages/52/2b/31ad9f6ac4c40a3b18c0b509f3e8a05f2552a1b5fa973b605f1ebf69935c/pybinding_dev-1.0.4-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "47ede56117e0070aca8220b7df25ee9258c7146b9f4f2304aad269a1e972edc2",
                "md5": "82eb01c6ef12d4bdfd68b31c121de4b0",
                "sha256": "8cbc3efb79b972684c8d4e303489e4602bc12a2b71e920e74fb651ffbf72cbb0"
            },
            "downloads": -1,
            "filename": "pybinding_dev-1.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "82eb01c6ef12d4bdfd68b31c121de4b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1203088,
            "upload_time": "2024-06-28T22:53:23",
            "upload_time_iso_8601": "2024-06-28T22:53:23.374849Z",
            "url": "https://files.pythonhosted.org/packages/47/ed/e56117e0070aca8220b7df25ee9258c7146b9f4f2304aad269a1e972edc2/pybinding_dev-1.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a5dd9cffb087cc42d8f7a886e6cf76572235dbbbf63f523f3a610558c898702",
                "md5": "47d3f6d22db40ef259528561d96a8983",
                "sha256": "59b9e4a16d77f485e6365f76993f158e2b0615c8f933a7325ef6d5661a27a92f"
            },
            "downloads": -1,
            "filename": "pybinding_dev-1.0.4-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "47d3f6d22db40ef259528561d96a8983",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 881114,
            "upload_time": "2024-06-28T22:53:25",
            "upload_time_iso_8601": "2024-06-28T22:53:25.035109Z",
            "url": "https://files.pythonhosted.org/packages/7a/5d/d9cffb087cc42d8f7a886e6cf76572235dbbbf63f523f3a610558c898702/pybinding_dev-1.0.4-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0d2420ce3c111552194fc3faf8f005ef0d5d83421a58756a9d8832253ebc5070",
                "md5": "89842807da6be6fc42fa281f223e0276",
                "sha256": "508cd8feafdef2f815eb7cd4e53b292ee0ae7d63b4eb02a691a7329b62d48412"
            },
            "downloads": -1,
            "filename": "pybinding_dev-1.0.4-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "89842807da6be6fc42fa281f223e0276",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1161777,
            "upload_time": "2024-06-28T22:53:26",
            "upload_time_iso_8601": "2024-06-28T22:53:26.903984Z",
            "url": "https://files.pythonhosted.org/packages/0d/24/20ce3c111552194fc3faf8f005ef0d5d83421a58756a9d8832253ebc5070/pybinding_dev-1.0.4-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "51598f8edc2eee96a7125da67cfb79f88fb6c3deec273d12679d07db67a0a478",
                "md5": "1a462f2252b7eb7b83a2e4e182a1328d",
                "sha256": "43bbc8eccf3dd7f3032c67781853952f238da491cac32c7d4afffd85df787f38"
            },
            "downloads": -1,
            "filename": "pybinding_dev-1.0.4-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1a462f2252b7eb7b83a2e4e182a1328d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 922969,
            "upload_time": "2024-06-28T22:53:28",
            "upload_time_iso_8601": "2024-06-28T22:53:28.831696Z",
            "url": "https://files.pythonhosted.org/packages/51/59/8f8edc2eee96a7125da67cfb79f88fb6c3deec273d12679d07db67a0a478/pybinding_dev-1.0.4-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "519f6e58ca532dcea035f6c2cf64ddb2cb8514fd0270dd73ab743e38cc2765ea",
                "md5": "dfddeac374c9f5b1090c5df066ddf64d",
                "sha256": "1005eb42418062cccdba241398ff3a3a2a08e2815e5c14bd2e4ffc41f75b7e74"
            },
            "downloads": -1,
            "filename": "pybinding_dev-1.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dfddeac374c9f5b1090c5df066ddf64d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1199786,
            "upload_time": "2024-06-28T22:53:30",
            "upload_time_iso_8601": "2024-06-28T22:53:30.650460Z",
            "url": "https://files.pythonhosted.org/packages/51/9f/6e58ca532dcea035f6c2cf64ddb2cb8514fd0270dd73ab743e38cc2765ea/pybinding_dev-1.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6921e2fb8910199209aa981fa39b37f9d75291a99d417a310ad8d1ca66bd228d",
                "md5": "f175eaf562fa68be589b6fd4c22e1f4e",
                "sha256": "0328f9a00da6cfe1edd6a766f445b2fbc537bca4f2a9350b250e845e81803b77"
            },
            "downloads": -1,
            "filename": "pybinding_dev-1.0.4-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f175eaf562fa68be589b6fd4c22e1f4e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 882888,
            "upload_time": "2024-06-28T22:53:31",
            "upload_time_iso_8601": "2024-06-28T22:53:31.951117Z",
            "url": "https://files.pythonhosted.org/packages/69/21/e2fb8910199209aa981fa39b37f9d75291a99d417a310ad8d1ca66bd228d/pybinding_dev-1.0.4-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c75d656759a9fefb54967b0775f0fce7332b61546608ec672ff7815e831aef94",
                "md5": "4852018d05308bf574e3f2690dd479ee",
                "sha256": "fb2786511e9def3caf2e365ababf4d9bb39cc3af58a7d0c9ef0067a745e3ff8e"
            },
            "downloads": -1,
            "filename": "pybinding_dev-1.0.4-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4852018d05308bf574e3f2690dd479ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1150596,
            "upload_time": "2024-06-28T22:53:33",
            "upload_time_iso_8601": "2024-06-28T22:53:33.764232Z",
            "url": "https://files.pythonhosted.org/packages/c7/5d/656759a9fefb54967b0775f0fce7332b61546608ec672ff7815e831aef94/pybinding_dev-1.0.4-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4b932baeda845fe337c0c289e437b66662283c789cb7f0dfd30749d9d35cd2b0",
                "md5": "d0d9ab2a21e60ceaec3099c1b0f2d372",
                "sha256": "60c48284d2b9639ccc34aaa6c1405f2de6041abb9e654496034a7e87d3887b39"
            },
            "downloads": -1,
            "filename": "pybinding_dev-1.0.4-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d0d9ab2a21e60ceaec3099c1b0f2d372",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 919207,
            "upload_time": "2024-06-28T22:53:35",
            "upload_time_iso_8601": "2024-06-28T22:53:35.588810Z",
            "url": "https://files.pythonhosted.org/packages/4b/93/2baeda845fe337c0c289e437b66662283c789cb7f0dfd30749d9d35cd2b0/pybinding_dev-1.0.4-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "90d96ac3da7a6a0292ec92c48ab0c5d87b83adb9415f1e4c7981fee58d204dd9",
                "md5": "008926eac077c97cd53c802792b49d4a",
                "sha256": "de23b3e704d3e22361037497de451df6890997a8e0048dccd1c7d6a727f6e65d"
            },
            "downloads": -1,
            "filename": "pybinding_dev-1.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "008926eac077c97cd53c802792b49d4a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1202681,
            "upload_time": "2024-06-28T22:53:36",
            "upload_time_iso_8601": "2024-06-28T22:53:36.793086Z",
            "url": "https://files.pythonhosted.org/packages/90/d9/6ac3da7a6a0292ec92c48ab0c5d87b83adb9415f1e4c7981fee58d204dd9/pybinding_dev-1.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6e040233d6f7962ae790e9ba47b2ed64e01ae41c8668d18231501052cbc05f89",
                "md5": "dca06377391de8593f121a56f57062dd",
                "sha256": "be8642b31fbad1e6ffc28ff39d27dd5f53a4af8d5cfd000367faa6505a378a99"
            },
            "downloads": -1,
            "filename": "pybinding_dev-1.0.4-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "dca06377391de8593f121a56f57062dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 880502,
            "upload_time": "2024-06-28T22:53:38",
            "upload_time_iso_8601": "2024-06-28T22:53:38.534495Z",
            "url": "https://files.pythonhosted.org/packages/6e/04/0233d6f7962ae790e9ba47b2ed64e01ae41c8668d18231501052cbc05f89/pybinding_dev-1.0.4-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d5887064c3ff04a3d7ef48485d2e51011908cbfdb3897a0dab1c2ee1e194f55c",
                "md5": "4b9e097380b498a03468e20f8680abdb",
                "sha256": "03332fad2f4dd3e3b0701d35479b2e5a6181b900bdda4493619368bb800f5592"
            },
            "downloads": -1,
            "filename": "pybinding_dev-1.0.4.tar.gz",
            "has_sig": false,
            "md5_digest": "4b9e097380b498a03468e20f8680abdb",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 775422,
            "upload_time": "2024-06-28T22:53:39",
            "upload_time_iso_8601": "2024-06-28T22:53:39.753671Z",
            "url": "https://files.pythonhosted.org/packages/d5/88/7064c3ff04a3d7ef48485d2e51011908cbfdb3897a0dab1c2ee1e194f55c/pybinding_dev-1.0.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-06-28 22:53:39",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "dean0x7d",
    "github_project": "pybinding",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": false,
    "appveyor": true,
    "lcname": "pybinding-dev"
}
        
Elapsed time: 0.24816s