{ "info": { "author": "", "author_email": "", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Physics", "Topic :: Software Development", "Topic :: Utilities" ], "description": "# sisl #\n\n[![Install sisl using PyPI](https://badge.fury.io/py/sisl.svg)](https://badge.fury.io/py/sisl)\n[![Install sisl using conda](https://anaconda.org/conda-forge/sisl/badges/version.svg)](https://anaconda.org/conda-forge/sisl)\n[![DOI for citation](https://zenodo.org/badge/doi/10.5281/zenodo.597181.svg)](http://dx.doi.org/10.5281/zenodo.597181)\n[![Join the chat at https://gitter.im/sisl-tool/Lobby](https://img.shields.io/gitter/room/nwjs/nw.js.svg)](https://gitter.im/sisl-tool/Lobby)\n\n[![License: LGPL v3](https://img.shields.io/badge/License-LGPL%20v3-blue.svg)](https://www.gnu.org/licenses/lgpl-3.0)\n[![Build Status](https://travis-ci.org/zerothi/sisl.svg?branch=master)](https://travis-ci.org/zerothi/sisl)\n[![Checkout sisl code coverage](https://codecov.io/gh/zerothi/sisl/branch/master/graph/badge.svg)](https://codecov.io/gh/zerothi/sisl)\n[![Donate money to support development of sisl](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=NGNU2AA3JXX94&lc=DK&item_name=Papior%2dCodes&item_number=codes¤cy_code=EUR&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted)\n\n## Why sisl ##\n\nThe Python library sisl was born out of a need to handle(create and read), manipulate and analyse output from DFT programs.\nIt was initially developed by Nick Papior (co-developer of [Siesta][siesta]) as a side-project to TranSiesta\nand TBtrans to efficiently analyse TBtrans output for N-electrode calculations. \nSince then it has expanded to accommodate a rich set of DFT code input/outputs such as (but not limited to)\nVASP, OpenMX, BigDFT, Wannier90.\n\nA great deal of codes are implementing, roughly, the same thing.\nHowever, every code implements their own analysis and post-processing utilities which typically\nturns out to be equivalent utilities only having the interface differently.\n\nsisl tries to solve some of the analysis issues by creating a unified scripting approach\nin Python which does analysis using the same interface, regardless of code being used.\nFor instance one may read the Kohn-Sham eigenvalue spectrum from various codes and return them\nin a consistent manner so the post-processing is the same, regardless of code being used.\n\nsisl is also part of the training material for a series of workshops hosted [here][workshop].\n\nIn some regards it has overlap with [ASE][ase] and sisl also interfaces with ASE.\n\n### Example use ###\n\nHere we show 2 examples of using sisl together with [Siesta][siesta].\n\nTo read in a Hamiltonian from a Siesta calculation and calculate the DOS for a given Monkhorst-Pack grid\none would do:\n\n import numpy as np\n import sisl\n H = sisl.get_sile('RUN.fdf').read_hamiltonian()\n mp = sisl.MonkhorstPack(H, [13, 13, 13])\n E = np.linspace(-4, 4, 500)\n DOS = mp.asaverage().DOS(E)\n from matplotlib import pyplot as plt\n plt.plot(E, DOS)\n\nWhich calculates the DOS for a 13x13x13 Monkhorst-Pack grid.\n\nAnother common analysis is real-space charge analysis, the following command line subtracts two real-space\ncharge grids and writes them to a CUBE file:\n\n sgrid reference/Rho.grid.nc --diff Rho.grid.nc --geometry RUN.fdf --out diff.cube\n\nwhich may be analysed using VMD, XCrySDen or other tools.\n\n\n## Installation ##\n\nInstalling sisl using PyPi or Conda is the easiest:\n\n pip3 install sisl\n pip3 install sisl[analysis] # also installs tqdm and xarray\n # or\n conda install -c conda-forge sisl\n\nIf performing a manual installation, these packages are required:\n\n - A C- and fortran-compiler\n - __six__\n - __numpy__ (1.13 or later)\n - __scipy__ (0.18 or later)\n - __netCDF4__\n - __setuptools__\n - __pyparsing__ (1.5.7 or later)\n - __pytest__, optional dependency for running the tests\n - __matplotlib__, encouraged optional dependency\n - __tqdm__, encouraged optional dependency\n - __xarray__, optional dependency\n\nSubsequently manual installation may be done using this command:\n\n python3 setup.py install --prefix=\n\nIf trying to install without root access, you may be required to use this command:\n\n python3 setup.py install --user --prefix=\n\n\nOnce installed, the installation can be tested by executing the following:\n\n pytest --pyargs sisl\n\n## Everyday use of sisl ##\n\nThere are different places for getting information on using sisl, here is a short list\nof places to search/ask for answers:\n\n- [Documentation][sisl-api], recommended reference page\n- [Workshop][workshop] examples showing different uses\n- Ask questions on the Github [issue page][issue]\n- Ask questions on the [Gitter page][sisl-gitter]\n\nIf sisl was used to produce scientific contributions, please use this [DOI][doi] for citation.\nWe recommend to specify the version of sisl in combination of this citation:\n\n @misc{zerothi_sisl,\n author = {Papior, Nick},\n title = {sisl: v},\n year = {2019},\n doi = {10.5281/zenodo.597181},\n url = {https://doi.org/10.5281/zenodo.597181}\n }\n\nTo get the BibTeX entry easily you may issue the following command:\n\n sdata --cite\n\nwhich fills in the version number.\n\n## Help sisl help you! ##\n\n- If you've ideas of missing features\n- If you've ideas for improving documentation\n- If you've found a bug\n- If you've found a documentation error\n- If you've created a tutorial\n\nThen please share them [here][issue]!\n\nAll of the above may be done via a [pull-request][pr] or by opening\nan [issue].\n\nRemember:\n\n> No contribution is too small!\n\n\n\n[sisl@git]: https://github.com/zerothi/sisl\n[sisl-api]: https://zerothi.github.io/sisl\n[sisl-gitter]: https://gitter.im/sisl-tool/Lobby\n[issue]: https://github.com/zerothi/sisl/issues\n[pr]: https://github.com/zerothi/sisl/pulls\n[siesta]: https://launchpad.net/siesta\n[tbtrans]: https://launchpad.net/siesta\n[workshop]: https://github.com/zerothi/ts-tbt-sisl-tutorial\n[doi]: http://dx.doi.org/10.5281/zenodo.597181\n[lgpl]: http://www.gnu.org/licenses/lgpl.html\n[ase]: https://wiki.fysik.dtu.dk/ase/\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "http://github.com/zerothi/sisl/releases", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/zerothi/sisl", "keywords": "", "license": "LGPLv3", "maintainer": "Nick Papior", "maintainer_email": "nickpapior@gmail.com", "name": "sisl", "package_url": "https://pypi.org/project/sisl/", "platform": "Unix", "project_url": "https://pypi.org/project/sisl/", "project_urls": { "Download": "http://github.com/zerothi/sisl/releases", "Homepage": "http://github.com/zerothi/sisl" }, "release_url": "https://pypi.org/project/sisl/0.9.7/", "requires_dist": null, "requires_python": "", "summary": "Python interface for tight-binding model creation and analysis of DFT output. Input mechanism for large scale transport calculations using NEGF TBtrans (TranSiesta)", "version": "0.9.7" }, "last_serial": 5890132, "releases": { "0.6.1": [ { "comment_text": "", "digests": { "md5": "7f87027332a569e4e4c67aa199b87ff3", "sha256": "55cbfa251d78ac0945ae3e78ad3d3c6f28ef4a68675f6cc88c0da32b6dd04a09" }, "downloads": -1, "filename": "sisl-0.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7f87027332a569e4e4c67aa199b87ff3", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 8082, "upload_time": "2016-05-10T10:37:57", "url": "https://files.pythonhosted.org/packages/db/a8/0c60153b4d742561e19cf5fdeb4ab223e46b5474d78b1422df7a3d4a9432/sisl-0.6.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4388d0a373468953237521bf9f42205e", "sha256": "b34ccfc6b20aaa613a25ae3b08ab1be0702076bc0518e1978d37be0d70409adb" }, "downloads": -1, "filename": "sisl-0.6.1.tar.gz", "has_sig": false, "md5_digest": "4388d0a373468953237521bf9f42205e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78263, "upload_time": "2016-05-10T10:37:50", "url": "https://files.pythonhosted.org/packages/6b/62/0d05e1c139727972963f0ebd065d7cdacecca62353ed12e4956d9efda291/sisl-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "38171ebcd554f919f7dc52153973fd36", "sha256": "210a77f9e6e4b2b18778f59651f63864abdf5ce63cee969bf4a1fae3dec4e24b" }, "downloads": -1, "filename": "sisl-0.6.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "38171ebcd554f919f7dc52153973fd36", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 8080, "upload_time": "2016-05-10T11:26:14", "url": "https://files.pythonhosted.org/packages/2b/d9/bd307cb62981202f22c78e9a2096cc998abff1ba9a395eac36b769bb71f7/sisl-0.6.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4844d37785a51e2c1034b168fbeb265d", "sha256": "082d3243a40885c8926513067697e85ee1157c12bafb51b2899f70778b5483da" }, "downloads": -1, "filename": "sisl-0.6.2.tar.gz", "has_sig": false, "md5_digest": "4844d37785a51e2c1034b168fbeb265d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78280, "upload_time": "2016-05-10T11:26:02", "url": "https://files.pythonhosted.org/packages/e3/61/5e70c12bd5af0560ce067e11143836402b90502aadd4dbcc6150cad56fb1/sisl-0.6.2.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "b62edfa073a5037529c03df8e3259877", "sha256": "0f9222efb7686c868ccd6fcad4a8bd75e11a74a5d29e920f3e7ad8ec539aac7a" }, "downloads": -1, "filename": "sisl-0.6.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b62edfa073a5037529c03df8e3259877", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 8082, "upload_time": "2016-05-11T12:59:04", "url": "https://files.pythonhosted.org/packages/a5/a4/abcebe538a9e83513f48b95eafdedc55f8c20970e91d21e4a0affac5a6fa/sisl-0.6.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "891b36fef030a912a09c0e1c393416e9", "sha256": "2c5a6f5d8bfdfe548a7ea3d623c9bd4563b3ec16fd9513d0eb4c84a6c0f397ed" }, "downloads": -1, "filename": "sisl-0.6.3.tar.gz", "has_sig": false, "md5_digest": "891b36fef030a912a09c0e1c393416e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78326, "upload_time": "2016-05-11T12:58:47", "url": "https://files.pythonhosted.org/packages/7e/a2/f066fab1a996f92687dfe03bc2a10eb97bffce2319c525d168e9198e511a/sisl-0.6.3.tar.gz" } ], "0.7.10": [ { "comment_text": "", "digests": { "md5": "e36a048fc622e074cdf344eb8c806e36", "sha256": "5ea2b7d8add565ff93e641cc05fd1fd6fc7e4f0167c3a80759d6786673d50cf4" }, "downloads": -1, "filename": "sisl-0.7.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e36a048fc622e074cdf344eb8c806e36", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 142295, "upload_time": "2016-11-07T09:32:38", "url": "https://files.pythonhosted.org/packages/23/e1/e23de362886880c943f333a54ff5d37dadc0f955f106e269374f652dba20/sisl-0.7.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d8e554ffc63a9507063d43948256f65f", "sha256": "f8055382ae6bde15e6d2fef3b8f40f6e98241383a2f318ac85c038d1b38eee98" }, "downloads": -1, "filename": "sisl-0.7.10.tar.gz", "has_sig": false, "md5_digest": "d8e554ffc63a9507063d43948256f65f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 128177, "upload_time": "2016-11-07T09:32:41", "url": "https://files.pythonhosted.org/packages/48/57/b839dbed7200e2f9e810730b8e618e9f51c2863c5ca5ebda85b09abc59fe/sisl-0.7.10.tar.gz" } ], "0.7.13": [ { "comment_text": "", "digests": { "md5": "6bb1adf42dd01f9a382ced9b1b3e1e97", "sha256": "514eb873a47712cfeb38fc977267344f6bd206c645e544dd87116e85093a4c27" }, "downloads": -1, "filename": "sisl-0.7.13-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6bb1adf42dd01f9a382ced9b1b3e1e97", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 141261, "upload_time": "2016-11-09T18:28:37", "url": "https://files.pythonhosted.org/packages/4b/9a/41ddd529b026e38b18b1880a91a11a03a17e2627a0efa255989e59e250ff/sisl-0.7.13-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5a32f1894d2a032bc613489fd0a81968", "sha256": "e6b555fb6be3e64860e9e99dccdc1c15e52ea4d57bcb3ad0ab697394722bb8b1" }, "downloads": -1, "filename": "sisl-0.7.13.tar.gz", "has_sig": false, "md5_digest": "5a32f1894d2a032bc613489fd0a81968", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 128420, "upload_time": "2016-11-09T18:28:40", "url": "https://files.pythonhosted.org/packages/54/6b/ac9a15fbe6b1d6ebf08829fa54a9e9a5a9fade5e623f5b0e606162666017/sisl-0.7.13.tar.gz" } ], "0.7.4": [ { "comment_text": "", "digests": { "md5": "2db8ad3032faa0e777f72ad9588927aa", "sha256": "c62bbdcd2ee09d80e1919914add7dae0b32f1d4340dd8761f464c47a969f7a2c" }, "downloads": -1, "filename": "sisl-0.7.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2db8ad3032faa0e777f72ad9588927aa", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8084, "upload_time": "2016-07-02T10:40:54", "url": "https://files.pythonhosted.org/packages/41/50/fbec1e967a48b2be4f7724d794c559ad73c254cf552263de2a3bcc23c006/sisl-0.7.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b27f5a81354ac895b8a79619d021756f", "sha256": "71b6759cb2a0088aaff257213539dbf05555948fff5a7a881eb6022528ff29ec" }, "downloads": -1, "filename": "sisl-0.7.4.tar.gz", "has_sig": false, "md5_digest": "b27f5a81354ac895b8a79619d021756f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 89903, "upload_time": "2016-07-02T11:06:20", "url": "https://files.pythonhosted.org/packages/7a/0e/344f8e1c619e9ea9dad64ba62a7b3b0eefa319bf4e08ac9dc65c572785f9/sisl-0.7.4.tar.gz" } ], "0.7.4.dev0": [ { "comment_text": "", "digests": { "md5": "aa63c17e8f462bb2262a55f82c8d2f53", "sha256": "ea3345d9c3d1003422ad044b9abec08440a83ca24f49696dc839dd846e4653b5" }, "downloads": -1, "filename": "sisl-0.7.4.dev0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "aa63c17e8f462bb2262a55f82c8d2f53", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8268, "upload_time": "2016-07-02T17:19:27", "url": "https://files.pythonhosted.org/packages/b6/ed/ef9b73c956ece45c08e7b2801ea63292c54f4022efb06b6edc3f9223be8b/sisl-0.7.4.dev0-py2.py3-none-any.whl" } ], "0.7.5": [ { "comment_text": "", "digests": { "md5": "78343b48a3510dcd4ff884c3ff60a171", "sha256": "5d46d8e3cb6323aad87a11244c4af6ebacdb3895c1b79657f758132739137f08" }, "downloads": -1, "filename": "sisl-0.7.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "78343b48a3510dcd4ff884c3ff60a171", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8177, "upload_time": "2016-08-04T17:46:10", "url": "https://files.pythonhosted.org/packages/d0/2c/cb81909a5e5873fcf9845d9be3d86b28b940a316ca7faa4bba7cd6c9f549/sisl-0.7.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "64130ee7e08336c37a06b2204731f9fd", "sha256": "ae55aae378047e3be1a454898198b829fc14239f52cce234131ea9f3b13e203e" }, "downloads": -1, "filename": "sisl-0.7.5.tar.gz", "has_sig": false, "md5_digest": "64130ee7e08336c37a06b2204731f9fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 91995, "upload_time": "2016-08-04T17:46:14", "url": "https://files.pythonhosted.org/packages/93/5c/be3e1f73587afb01bf9587ff684d8202df8d04209510f110f694057557c8/sisl-0.7.5.tar.gz" } ], "0.7.6": [ { "comment_text": "", "digests": { "md5": "3171d786eed824074f31bfaf0ac5e17f", "sha256": "237a9373691c872e29a0a6b53025056578e6add43ed0d55e600ecebc3298b28f" }, "downloads": -1, "filename": "sisl-0.7.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3171d786eed824074f31bfaf0ac5e17f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 7242, "upload_time": "2016-10-14T18:53:09", "url": "https://files.pythonhosted.org/packages/95/1b/fe05f4c6303f629a8894c086442e51041247d1b3388b3f897c20fda9166c/sisl-0.7.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "92e4790d7ae255a9eb4aebc72a0585f6", "sha256": "c57eeadb6e52757374d2f28031eabd3c958a013b73310a89b74a706e7de66e07" }, "downloads": -1, "filename": "sisl-0.7.6.tar.gz", "has_sig": false, "md5_digest": "92e4790d7ae255a9eb4aebc72a0585f6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 120036, "upload_time": "2016-10-14T18:53:13", "url": "https://files.pythonhosted.org/packages/d9/34/296ee915f9007c774d1eaec34aced5aa9d76b8e93d5d0e063eb5c27bbaa5/sisl-0.7.6.tar.gz" } ], "0.7.7": [ { "comment_text": "", "digests": { "md5": "52cdb109b5707cae0eee32111c3d85e3", "sha256": "c782f4c90e96bc561e12c730e2871bf842636c9099f6f6cbd4ef1c111c763c13" }, "downloads": -1, "filename": "sisl-0.7.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "52cdb109b5707cae0eee32111c3d85e3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 136195, "upload_time": "2016-10-19T14:15:13", "url": "https://files.pythonhosted.org/packages/bf/a1/bdfcd69f59f55f74a00c84ff34af01abf373e9223cc1c2f5d0f6d4cb348b/sisl-0.7.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c53e136f8cb999cfedf54569c8980efa", "sha256": "fcd8032704cba98111410618e0eae1b1c7490938637c46d82a8950034a8af578" }, "downloads": -1, "filename": "sisl-0.7.7.tar.gz", "has_sig": false, "md5_digest": "c53e136f8cb999cfedf54569c8980efa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 121447, "upload_time": "2016-10-19T14:15:16", "url": "https://files.pythonhosted.org/packages/4b/4d/e2bf4b6e03470b0214644f5818dc89f7224d1ff330dc2ca11545fa2462d0/sisl-0.7.7.tar.gz" } ], "0.7.8": [ { "comment_text": "", "digests": { "md5": "746ba486217c1466c792dca074c79c77", "sha256": "adc42335d8073b301b855b93d86f9ae63aea5b899a3ffe081afc69ab9ae76e0f" }, "downloads": -1, "filename": "sisl-0.7.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "746ba486217c1466c792dca074c79c77", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 136894, "upload_time": "2016-10-24T13:30:23", "url": "https://files.pythonhosted.org/packages/ab/f3/507bc97cea10746ed9907733a5a6b4045a8b9481395bcd90d735832494b2/sisl-0.7.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ed5eaff8e881212afe8bb572be811deb", "sha256": "f9e8f4bccac85410bb3788d27e0199dd106c8f002051f9306ac07d412ba9bf7f" }, "downloads": -1, "filename": "sisl-0.7.8.tar.gz", "has_sig": false, "md5_digest": "ed5eaff8e881212afe8bb572be811deb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 122284, "upload_time": "2016-10-24T13:30:26", "url": "https://files.pythonhosted.org/packages/76/5b/7a887ddf0cccd0e367b9581929ce0d381cadda15f2c7d35a28ba40759278/sisl-0.7.8.tar.gz" } ], "0.7.9": [ { "comment_text": "", "digests": { "md5": "0041400d749c0f70062e0e5c8a8705fe", "sha256": "d04f84e2a5b45284a30d4dc97ac4507fa1dd8333703b0866b9eff5a919093295" }, "downloads": -1, "filename": "sisl-0.7.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0041400d749c0f70062e0e5c8a8705fe", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 136905, "upload_time": "2016-10-31T09:34:36", "url": "https://files.pythonhosted.org/packages/25/57/afec537072879adb00ca4524e834e3af4f15fff745144617e22c30ebbbba/sisl-0.7.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "96752678d6f0545f140f74ef6ff9f909", "sha256": "549f84289b78322ca6c12fb8374edad1f0da28a809bf72b2e8d38398100a20e3" }, "downloads": -1, "filename": "sisl-0.7.9.tar.gz", "has_sig": false, "md5_digest": "96752678d6f0545f140f74ef6ff9f909", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 122185, "upload_time": "2016-10-31T09:34:39", "url": "https://files.pythonhosted.org/packages/45/be/5208edc89a9b39fdd7c723d3c936304ffa0246192bb8e49cbd71c9e31c67/sisl-0.7.9.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "84a4ccccf9b969a77ff0cf780d2cbc6b", "sha256": "08cecee59d90688c0b65cdd1775649e4de56d4a448cf9cfbb06d508860cc0284" }, "downloads": -1, "filename": "sisl-0.8.0.tar.gz", "has_sig": false, "md5_digest": "84a4ccccf9b969a77ff0cf780d2cbc6b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 138588, "upload_time": "2017-01-07T16:32:23", "url": "https://files.pythonhosted.org/packages/19/12/f867afd3be9c3e94248272f26c8fd26e580dc60afb47be83a652bf047f30/sisl-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "65d84458418f967a494273adb9ff50f7", "sha256": "54ff360e42b29e9acc4f9fdaa469b3956dd2426695d48337f8afe5e528a40b11" }, "downloads": -1, "filename": "sisl-0.8.1.tar.gz", "has_sig": false, "md5_digest": "65d84458418f967a494273adb9ff50f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 150030, "upload_time": "2017-02-23T07:59:24", "url": "https://files.pythonhosted.org/packages/21/d0/c7e02d57be65c40ecaad18ef5cccac0d06526c656f08606d10336f36a3de/sisl-0.8.1.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "aefc4ef35be4a02e76524a68f64fb480", "sha256": "058dc454a7a4bb236a0ae7a08231cf0cccfc074ec58a9048975eddddf2d51394" }, "downloads": -1, "filename": "sisl-0.8.2.tar.gz", "has_sig": false, "md5_digest": "aefc4ef35be4a02e76524a68f64fb480", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 161979, "upload_time": "2017-03-31T19:59:31", "url": "https://files.pythonhosted.org/packages/48/85/1e7be903e7ea14c22076856a3759eaa697cffb47250c7bad744f7a437c5e/sisl-0.8.2.tar.gz" } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "0095132ddeb78f56c173cf4ce7b1579c", "sha256": "c593e18dcafe516040fc0db9424d455ae5a8a57e0aab9e56cbffb80b24481d65" }, "downloads": -1, "filename": "sisl-0.8.3.tar.gz", "has_sig": false, "md5_digest": "0095132ddeb78f56c173cf4ce7b1579c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 163765, "upload_time": "2017-04-05T07:11:34", "url": "https://files.pythonhosted.org/packages/80/ae/662715f5db9240a03f5fa5e720149e4201e9bee203de1c265104337e8b02/sisl-0.8.3.tar.gz" } ], "0.8.4": [ { "comment_text": "", "digests": { "md5": "fcb6c7fc1cc0f6a4ef81c79c64b7cc63", "sha256": "bb430af48dfe2423c217b2ac1621c4a7a17c28e62f060a77d3d27bb6d1d6a367" }, "downloads": -1, "filename": "sisl-0.8.4.tar.gz", "has_sig": false, "md5_digest": "fcb6c7fc1cc0f6a4ef81c79c64b7cc63", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 174979, "upload_time": "2017-06-11T17:51:26", "url": "https://files.pythonhosted.org/packages/3c/fa/6860220b0e763c8423adfcdfed7ce7d7235432fce121db6ca97e598a0eda/sisl-0.8.4.tar.gz" } ], "0.8.5": [ { "comment_text": "", "digests": { "md5": "e27a045af9ccbc17b9fcb28dd2b7a640", "sha256": "858f91bc6761a54580d2780303ce88ff53e6da1f765e36b7080d4a974b0e44c6" }, "downloads": -1, "filename": "sisl-0.8.5.tar.gz", "has_sig": false, "md5_digest": "e27a045af9ccbc17b9fcb28dd2b7a640", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 190581, "upload_time": "2017-07-21T12:04:45", "url": "https://files.pythonhosted.org/packages/c7/c5/9f6b61a4097aef2652854dea4c9018b0a6ccc5e125d3f42f9d2ff255f18e/sisl-0.8.5.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "fad8aaa7f2b6e71392ad51389ce86d0e", "sha256": "673a11d381753ab832137c6a9d3216d5d8177d33d98fb72618bd601fe4d1c72b" }, "downloads": -1, "filename": "sisl-0.9.0.tar.gz", "has_sig": false, "md5_digest": "fad8aaa7f2b6e71392ad51389ce86d0e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 234155, "upload_time": "2017-10-16T07:59:44", "url": "https://files.pythonhosted.org/packages/91/59/846e4459121a23574a14bf66d412aa5b150c5a29cdd4527275823fa2bf0b/sisl-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "94fe18daeb54b8c8569a17ecadd13697", "sha256": "5c8fc7d54c64ced229b5c9c1728e0ccf30975da8d9dea3cd464af295dc46ff39" }, "downloads": -1, "filename": "sisl-0.9.1.tar.gz", "has_sig": false, "md5_digest": "94fe18daeb54b8c8569a17ecadd13697", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 235470, "upload_time": "2017-10-23T08:08:14", "url": "https://files.pythonhosted.org/packages/75/b5/85657bd21bac12a5f295f473b2b570faa4ae8d4ab6fc4f56959705e65d94/sisl-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "fbfc929233941d5a6964cedc5fa9457f", "sha256": "b021356a2786c288a60b47e64377a2237c8d7aea8428c664dfb96db152fafded" }, "downloads": -1, "filename": "sisl-0.9.2.tar.gz", "has_sig": false, "md5_digest": "fbfc929233941d5a6964cedc5fa9457f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 235898, "upload_time": "2017-10-25T19:35:23", "url": "https://files.pythonhosted.org/packages/12/f3/32f6cc411298f6a7d51e0c52fd39cb1b435a5621fbcfe532c382c07f7c53/sisl-0.9.2.tar.gz" } ], "0.9.4": [ { "comment_text": "", "digests": { "md5": "48749b03c4817df434b0036a2268ce95", "sha256": "4e45f5b6f7c339be3dba5ad2e83cd0b5fbd222ba9c950053ff26ea4584dc7a61" }, "downloads": -1, "filename": "sisl-0.9.4.tar.gz", "has_sig": false, "md5_digest": "48749b03c4817df434b0036a2268ce95", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2474821, "upload_time": "2018-08-04T19:38:44", "url": "https://files.pythonhosted.org/packages/54/d5/cff8b85f3471753cf2fd7f9530707f1fca26263c2f1351b50f9ccd4442d4/sisl-0.9.4.tar.gz" } ], "0.9.5": [ { "comment_text": "", "digests": { "md5": "97a67ef9ab3ffe6224102992ab61199f", "sha256": "e97f0549ec4f1b088ec547c8171b3a5793e0e656fe891c1f577a427f15299d63" }, "downloads": -1, "filename": "sisl-0.9.5.tar.gz", "has_sig": false, "md5_digest": "97a67ef9ab3ffe6224102992ab61199f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2619072, "upload_time": "2018-11-13T13:25:50", "url": "https://files.pythonhosted.org/packages/7d/d6/e56181227e2455bdd60a34d52f63db45b34e1c9470643019594b6467ead3/sisl-0.9.5.tar.gz" } ], "0.9.6": [ { "comment_text": "", "digests": { "md5": "d6e5cbfd29fbcae3c91d9aa70420f9d0", "sha256": "26c6bd8171adf34e0628256d869836e48988ec1139da36a183423d1603078496" }, "downloads": -1, "filename": "sisl-0.9.6.tar.gz", "has_sig": false, "md5_digest": "d6e5cbfd29fbcae3c91d9aa70420f9d0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2165942, "upload_time": "2019-06-18T12:18:34", "url": "https://files.pythonhosted.org/packages/2f/f9/fbc04c3d90bb1d86018d098e5dec932bc4b2c595b059bda66f63720b6543/sisl-0.9.6.tar.gz" } ], "0.9.7": [ { "comment_text": "", "digests": { "md5": "5783228148fec45543b042166d415395", "sha256": "6c579ae01f5435cb1f0a10258d9c536e51bfa7e80383c635142b5a17e9f41eb5" }, "downloads": -1, "filename": "sisl-0.9.7.tar.gz", "has_sig": false, "md5_digest": "5783228148fec45543b042166d415395", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2183002, "upload_time": "2019-09-26T11:17:59", "url": "https://files.pythonhosted.org/packages/60/bc/3d3121890c4ac8de43c515db798e9bf815aba4e09074bead067b48e10564/sisl-0.9.7.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "5783228148fec45543b042166d415395", "sha256": "6c579ae01f5435cb1f0a10258d9c536e51bfa7e80383c635142b5a17e9f41eb5" }, "downloads": -1, "filename": "sisl-0.9.7.tar.gz", "has_sig": false, "md5_digest": "5783228148fec45543b042166d415395", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2183002, "upload_time": "2019-09-26T11:17:59", "url": "https://files.pythonhosted.org/packages/60/bc/3d3121890c4ac8de43c515db798e9bf815aba4e09074bead067b48e10564/sisl-0.9.7.tar.gz" } ] }