biopython


Namebiopython JSON
Version 1.83 PyPI version JSON
download
home_pagehttps://biopython.org/
SummaryFreely available tools for computational molecular biology.
upload_time2024-01-10 12:25:28
maintainer
docs_urlNone
authorThe Biopython Contributors
requires_python>=3.8
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            .. image:: https://img.shields.io/pypi/v/biopython.svg?logo=pypi
   :alt: Biopython on the Python Package Index (PyPI)
   :target: https://pypi.python.org/pypi/biopython
.. image:: https://img.shields.io/conda/vn/conda-forge/biopython.svg?logo=conda-forge
   :alt: Biopython on the Conda package conda-forge channel
   :target: https://anaconda.org/conda-forge/biopython
.. image:: https://results.pre-commit.ci/badge/github/biopython/biopython/master.svg
   :target: https://results.pre-commit.ci/latest/github/biopython/biopython/master
   :alt: pre-commit.ci status
.. image:: https://img.shields.io/circleci/build/github/biopython/biopython.svg?logo=circleci
   :alt: Linux testing with CircleCI
   :target: https://app.circleci.com/pipelines/github/biopython/biopython
.. image:: https://img.shields.io/appveyor/ci/biopython/biopython/master.svg?logo=appveyor
   :alt: Windows testing with AppVeyor
   :target: https://ci.appveyor.com/project/biopython/biopython/history
.. image:: https://img.shields.io/github/actions/workflow/status/biopython/biopython/ci.yml?logo=github-actions
   :alt: GitHub workflow status
   :target: https://github.com/biopython/biopython/actions
.. image:: https://img.shields.io/codecov/c/github/biopython/biopython/master.svg?logo=codecov
   :alt: Test coverage on CodeCov
   :target: https://codecov.io/github/biopython/biopython/
.. image:: http://depsy.org/api/package/pypi/biopython/badge.svg
   :alt: Research software impact on Depsy
   :target: http://depsy.org/package/python/biopython

.. image:: https://github.com/biopython/biopython/raw/master/Doc/images/biopython_logo_m.png
   :alt: The Biopython Project
   :target: http://biopython.org

Biopython README file
=====================

The Biopython Project is an international association of developers of freely
available Python tools for computational molecular biology.

Our user-centric documentation is hosted on https://biopython.org including
our `API Documentation <https://biopython.org/docs/latest/api/>`_ and the main
`Biopython Tutorial and Cookbook
<http://biopython.org/DIST/docs/tutorial/Tutorial.html>`_
(`PDF <http://biopython.org/DIST/docs/tutorial/Tutorial.pdf>`_).

This README file is intended primarily for people interested in working
with the Biopython source code, either one of the releases from the
http://biopython.org website, or from our repository on GitHub
https://github.com/biopython/biopython

The `NEWS <https://github.com/biopython/biopython/blob/master/NEWS.rst>`_
file summarises the changes in each release of Biopython.

The Biopython package is open source software made available under generous
terms. Please see the `LICENSE
<https://github.com/biopython/biopython/blob/master/LICENSE.rst>`_ file for
further details.

If you use Biopython in work contributing to a scientific publication, we ask
that you cite our application note (below) or one of the module specific
publications (listed on our website):

Cock, P.J.A. et al. Biopython: freely available Python tools for computational
molecular biology and bioinformatics. Bioinformatics 2009 Jun 1; 25(11) 1422-3
https://doi.org/10.1093/bioinformatics/btp163 pmid:19304878


For the impatient
=================

Python includes the package management system "pip" which should allow you to
install Biopython (and its dependency NumPy if needed), upgrade or uninstall
with just one terminal command::

    pip install biopython
    pip install --upgrade biopython
    pip uninstall biopython

Since Biopython 1.70 we have provided pre-compiled binary wheel packages on
PyPI for Linux, macOS and Windows. This means pip install should be quick,
and not require a compiler.

As a developer or potential contributor, you may wish to download, build and
install Biopython yourself. This is described below.


Python Requirements
===================

We currently recommend using Python 3.11 from http://www.python.org

Biopython is currently supported and tested on the following Python
implementations:

- Python 3.8, 3.9, 3.10, 3.11 and 3.12 -- see http://www.python.org

- PyPy3.8 v7.3.11 -- or later, see http://www.pypy.org


Optional Dependencies
=====================

Biopython requires NumPy (see http://www.numpy.org) which will be installed
automatically if you install Biopython with pip (see below for compiling
Biopython yourself).

Depending on which parts of Biopython you plan to use, there are a number of
other optional Python dependencies, which can be installed later if needed:

- ReportLab, see http://www.reportlab.com/opensource/ (optional)
  This package is only used in ``Bio.Graphics``, so if you do not need this
  functionality, you will not need to install this package.

- matplotlib, see http://matplotlib.org/ (optional)
  ``Bio.Phylo`` uses this package to plot phylogenetic trees.

- networkx, see https://networkx.github.io/ (optional) and
  pygraphviz or pydot, see https://pygraphviz.github.io/ and
  http://code.google.com/p/pydot/ (optional)
  These packages are used for certain niche functions in ``Bio.Phylo``.

- rdflib, see https://github.com/RDFLib/rdflib (optional)
  This package is used in the CDAO parser under ``Bio.Phylo``.

- psycopg2, see http://initd.org/psycopg/ (optional) or
  PyGreSQL (pgdb), see http://www.pygresql.org/ (optional)
  These packages are used by ``BioSQL`` to access a PostgreSQL database.

- MySQL Connector/Python, see http://dev.mysql.com/downloads/connector/python/
  This package is used by ``BioSQL`` to access a MySQL database, and is
  supported on PyPy too.

- mysqlclient, see https://github.com/PyMySQL/mysqlclient-python (optional)
  This is a fork of the older MySQLdb and is used by ``BioSQL`` to access a
  MySQL database. It is supported by PyPy.

In addition there are a number of useful third party tools you may wish to
install such as standalone NCBI BLAST, EMBOSS or ClustalW.


Installation From Source
========================

We recommend using the pre-compiled binary wheels available on PyPI using::

    pip install biopython

However, if you need to compile Biopython yourself, the following are required
at compile time:

- Python including development header files like ``python.h``, which on Linux
  are often not installed by default (trying looking for and installing a
  package named ``python-dev`` or ``python-devel`` as well as the ``python``
  package).

- Appropriate C compiler for your version of Python, for example GCC on Linux,
  MSVC on Windows. For Mac OS X, or as it is now branded, macOS, use Apple's
  command line tools, which can be installed with the terminal command::

      xcode-select --install

  This will offer to install Apple's XCode development suite - you can, but it
  is not needed and takes a lot of disk space.

Then either download and decompress our source code, or fetch it using git.
Now change directory to the Biopython source code folder and run::

    pip install -e .
    python setup.py test
    sudo python setup.py install

Substitute ``python`` with your specific version if required, for example
``python3``, or ``pypy3``.

To exclude tests that require an internet connection (and which may take a
long time), use the ``--offline`` option::

    python setup.py test --offline

If you need to do additional configuration, e.g. changing the install
directory prefix, please type ``python setup.py``.


Testing
=======

Biopython includes a suite of regression tests to check if everything is
running correctly. To run the tests, go to the biopython source code
directory and type::

    pip install -e .
    python setup.py test

If you want to skip the online tests (which is recommended when doing repeated
testing), use::

    python setup.py test --offline

Do not panic if you see messages warning of skipped tests::

    test_DocSQL ... skipping. Install MySQLdb if you want to use Bio.DocSQL.

This most likely means that a package is not installed.  You can
ignore this if it occurs in the tests for a module that you were not
planning on using.  If you did want to use that module, please install
the required dependency and re-run the tests.

Some of the tests may fail due to network issues, this is often down to
chance or a service outage. If the problem does not go away on
re-running the tests, you can use the ``--offline`` option.

There is more testing information in the Biopython Tutorial & Cookbook.


Experimental code
=================

Biopython 1.61 introduced a new warning, ``Bio.BiopythonExperimentalWarning``,
which is used to mark any experimental code included in the otherwise
stable Biopython releases. Such 'beta' level code is ready for wider
testing, but still likely to change, and should only be tried by early
adopters in order to give feedback via the biopython-dev mailing list.

We'd expect such experimental code to reach stable status within one or two
releases, at which point our normal policies about trying to preserve
backwards compatibility would apply.


Bugs
====

While we try to ship a robust package, bugs inevitably pop up.  If you are
having problems that might be caused by a bug in Biopython, it is possible
that it has already been identified. Update to the latest release if you are
not using it already, and retry. If the problem persists, please search our
bug database and our mailing lists to see if it has already been reported
(and hopefully fixed), and if not please do report the bug. We can't fix
problems we don't know about ;)

Issue tracker: https://github.com/biopython/biopython/issues

If you suspect the problem lies within a parser, it is likely that the data
format has changed and broken the parsing code.  (The text BLAST and GenBank
formats seem to be particularly fragile.)  Thus, the parsing code in
Biopython is sometimes updated faster than we can build Biopython releases.
You can get the most recent parser by pulling the relevant files (e.g. the
ones in ``Bio.SeqIO`` or ``Bio.Blast``) from our git repository. However, be
careful when doing this, because the code in github is not as well-tested
as released code, and may contain new dependencies.

In any bug report, please let us know:

1. Which operating system and hardware (32 bit or 64 bit) you are using
2. Python version
3. Biopython version (or git commit/date)
4. Traceback that occurs (the full error message)

And also ideally:

5. Example code that breaks
6. A data file that causes the problem


Contributing, Bug Reports
=========================

Biopython is run by volunteers from all over the world, with many types of
backgrounds. We are always looking for people interested in helping with code
development, web-site management, documentation writing, technical
administration, and whatever else comes up.

If you wish to contribute, please first read `CONTRIBUTING.rst
<https://github.com/biopython/biopython/blob/master/CONTRIBUTING.rst>`_ here,
visit our web site http://biopython.org and join our mailing list:
http://biopython.org/wiki/Mailing_lists


Distribution Structure
======================

- ``README.rst``  -- This file.
- ``NEWS.rst``    -- Release notes and news.
- ``LICENSE.rst`` -- What you can do with the code.
- ``CONTRIB.rst`` -- An (incomplete) list of people who helped Biopython in
  one way or another.
- ``CONTRIBUTING.rst`` -- An overview about how to contribute to Biopython.
- ``DEPRECATED.rst`` -- Contains information about modules in Biopython that
  were removed or no longer recommended for use, and how to update code that
  uses those modules.
- ``MANIFEST.in`` -- Configures which files to include in releases.
- ``setup.py``    -- Installation file.
- ``Bio/``        -- The main code base code.
- ``BioSQL/``     -- Code for using Biopython with BioSQL databases.
- ``Doc/``        -- Documentation.
- ``Scripts/``    -- Miscellaneous, possibly useful, standalone scripts.
- ``Tests/``      -- Regression testing code including sample data files.

            

Raw data

            {
    "_id": null,
    "home_page": "https://biopython.org/",
    "name": "biopython",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "",
    "author": "The Biopython Contributors",
    "author_email": "biopython@biopython.org",
    "download_url": "https://files.pythonhosted.org/packages/cc/d4/3d8848191a7a37187704c382e6dfda4d6a47d05a14cd64f004c55a3cd5a1/biopython-1.83.tar.gz",
    "platform": null,
    "description": ".. image:: https://img.shields.io/pypi/v/biopython.svg?logo=pypi\n   :alt: Biopython on the Python Package Index (PyPI)\n   :target: https://pypi.python.org/pypi/biopython\n.. image:: https://img.shields.io/conda/vn/conda-forge/biopython.svg?logo=conda-forge\n   :alt: Biopython on the Conda package conda-forge channel\n   :target: https://anaconda.org/conda-forge/biopython\n.. image:: https://results.pre-commit.ci/badge/github/biopython/biopython/master.svg\n   :target: https://results.pre-commit.ci/latest/github/biopython/biopython/master\n   :alt: pre-commit.ci status\n.. image:: https://img.shields.io/circleci/build/github/biopython/biopython.svg?logo=circleci\n   :alt: Linux testing with CircleCI\n   :target: https://app.circleci.com/pipelines/github/biopython/biopython\n.. image:: https://img.shields.io/appveyor/ci/biopython/biopython/master.svg?logo=appveyor\n   :alt: Windows testing with AppVeyor\n   :target: https://ci.appveyor.com/project/biopython/biopython/history\n.. image:: https://img.shields.io/github/actions/workflow/status/biopython/biopython/ci.yml?logo=github-actions\n   :alt: GitHub workflow status\n   :target: https://github.com/biopython/biopython/actions\n.. image:: https://img.shields.io/codecov/c/github/biopython/biopython/master.svg?logo=codecov\n   :alt: Test coverage on CodeCov\n   :target: https://codecov.io/github/biopython/biopython/\n.. image:: http://depsy.org/api/package/pypi/biopython/badge.svg\n   :alt: Research software impact on Depsy\n   :target: http://depsy.org/package/python/biopython\n\n.. image:: https://github.com/biopython/biopython/raw/master/Doc/images/biopython_logo_m.png\n   :alt: The Biopython Project\n   :target: http://biopython.org\n\nBiopython README file\n=====================\n\nThe Biopython Project is an international association of developers of freely\navailable Python tools for computational molecular biology.\n\nOur user-centric documentation is hosted on https://biopython.org including\nour `API Documentation <https://biopython.org/docs/latest/api/>`_ and the main\n`Biopython Tutorial and Cookbook\n<http://biopython.org/DIST/docs/tutorial/Tutorial.html>`_\n(`PDF <http://biopython.org/DIST/docs/tutorial/Tutorial.pdf>`_).\n\nThis README file is intended primarily for people interested in working\nwith the Biopython source code, either one of the releases from the\nhttp://biopython.org website, or from our repository on GitHub\nhttps://github.com/biopython/biopython\n\nThe `NEWS <https://github.com/biopython/biopython/blob/master/NEWS.rst>`_\nfile summarises the changes in each release of Biopython.\n\nThe Biopython package is open source software made available under generous\nterms. Please see the `LICENSE\n<https://github.com/biopython/biopython/blob/master/LICENSE.rst>`_ file for\nfurther details.\n\nIf you use Biopython in work contributing to a scientific publication, we ask\nthat you cite our application note (below) or one of the module specific\npublications (listed on our website):\n\nCock, P.J.A. et al. Biopython: freely available Python tools for computational\nmolecular biology and bioinformatics. Bioinformatics 2009 Jun 1; 25(11) 1422-3\nhttps://doi.org/10.1093/bioinformatics/btp163 pmid:19304878\n\n\nFor the impatient\n=================\n\nPython includes the package management system \"pip\" which should allow you to\ninstall Biopython (and its dependency NumPy if needed), upgrade or uninstall\nwith just one terminal command::\n\n    pip install biopython\n    pip install --upgrade biopython\n    pip uninstall biopython\n\nSince Biopython 1.70 we have provided pre-compiled binary wheel packages on\nPyPI for Linux, macOS and Windows. This means pip install should be quick,\nand not require a compiler.\n\nAs a developer or potential contributor, you may wish to download, build and\ninstall Biopython yourself. This is described below.\n\n\nPython Requirements\n===================\n\nWe currently recommend using Python 3.11 from http://www.python.org\n\nBiopython is currently supported and tested on the following Python\nimplementations:\n\n- Python 3.8, 3.9, 3.10, 3.11 and 3.12 -- see http://www.python.org\n\n- PyPy3.8 v7.3.11 -- or later, see http://www.pypy.org\n\n\nOptional Dependencies\n=====================\n\nBiopython requires NumPy (see http://www.numpy.org) which will be installed\nautomatically if you install Biopython with pip (see below for compiling\nBiopython yourself).\n\nDepending on which parts of Biopython you plan to use, there are a number of\nother optional Python dependencies, which can be installed later if needed:\n\n- ReportLab, see http://www.reportlab.com/opensource/ (optional)\n  This package is only used in ``Bio.Graphics``, so if you do not need this\n  functionality, you will not need to install this package.\n\n- matplotlib, see http://matplotlib.org/ (optional)\n  ``Bio.Phylo`` uses this package to plot phylogenetic trees.\n\n- networkx, see https://networkx.github.io/ (optional) and\n  pygraphviz or pydot, see https://pygraphviz.github.io/ and\n  http://code.google.com/p/pydot/ (optional)\n  These packages are used for certain niche functions in ``Bio.Phylo``.\n\n- rdflib, see https://github.com/RDFLib/rdflib (optional)\n  This package is used in the CDAO parser under ``Bio.Phylo``.\n\n- psycopg2, see http://initd.org/psycopg/ (optional) or\n  PyGreSQL (pgdb), see http://www.pygresql.org/ (optional)\n  These packages are used by ``BioSQL`` to access a PostgreSQL database.\n\n- MySQL Connector/Python, see http://dev.mysql.com/downloads/connector/python/\n  This package is used by ``BioSQL`` to access a MySQL database, and is\n  supported on PyPy too.\n\n- mysqlclient, see https://github.com/PyMySQL/mysqlclient-python (optional)\n  This is a fork of the older MySQLdb and is used by ``BioSQL`` to access a\n  MySQL database. It is supported by PyPy.\n\nIn addition there are a number of useful third party tools you may wish to\ninstall such as standalone NCBI BLAST, EMBOSS or ClustalW.\n\n\nInstallation From Source\n========================\n\nWe recommend using the pre-compiled binary wheels available on PyPI using::\n\n    pip install biopython\n\nHowever, if you need to compile Biopython yourself, the following are required\nat compile time:\n\n- Python including development header files like ``python.h``, which on Linux\n  are often not installed by default (trying looking for and installing a\n  package named ``python-dev`` or ``python-devel`` as well as the ``python``\n  package).\n\n- Appropriate C compiler for your version of Python, for example GCC on Linux,\n  MSVC on Windows. For Mac OS X, or as it is now branded, macOS, use Apple's\n  command line tools, which can be installed with the terminal command::\n\n      xcode-select --install\n\n  This will offer to install Apple's XCode development suite - you can, but it\n  is not needed and takes a lot of disk space.\n\nThen either download and decompress our source code, or fetch it using git.\nNow change directory to the Biopython source code folder and run::\n\n    pip install -e .\n    python setup.py test\n    sudo python setup.py install\n\nSubstitute ``python`` with your specific version if required, for example\n``python3``, or ``pypy3``.\n\nTo exclude tests that require an internet connection (and which may take a\nlong time), use the ``--offline`` option::\n\n    python setup.py test --offline\n\nIf you need to do additional configuration, e.g. changing the install\ndirectory prefix, please type ``python setup.py``.\n\n\nTesting\n=======\n\nBiopython includes a suite of regression tests to check if everything is\nrunning correctly. To run the tests, go to the biopython source code\ndirectory and type::\n\n    pip install -e .\n    python setup.py test\n\nIf you want to skip the online tests (which is recommended when doing repeated\ntesting), use::\n\n    python setup.py test --offline\n\nDo not panic if you see messages warning of skipped tests::\n\n    test_DocSQL ... skipping. Install MySQLdb if you want to use Bio.DocSQL.\n\nThis most likely means that a package is not installed.  You can\nignore this if it occurs in the tests for a module that you were not\nplanning on using.  If you did want to use that module, please install\nthe required dependency and re-run the tests.\n\nSome of the tests may fail due to network issues, this is often down to\nchance or a service outage. If the problem does not go away on\nre-running the tests, you can use the ``--offline`` option.\n\nThere is more testing information in the Biopython Tutorial & Cookbook.\n\n\nExperimental code\n=================\n\nBiopython 1.61 introduced a new warning, ``Bio.BiopythonExperimentalWarning``,\nwhich is used to mark any experimental code included in the otherwise\nstable Biopython releases. Such 'beta' level code is ready for wider\ntesting, but still likely to change, and should only be tried by early\nadopters in order to give feedback via the biopython-dev mailing list.\n\nWe'd expect such experimental code to reach stable status within one or two\nreleases, at which point our normal policies about trying to preserve\nbackwards compatibility would apply.\n\n\nBugs\n====\n\nWhile we try to ship a robust package, bugs inevitably pop up.  If you are\nhaving problems that might be caused by a bug in Biopython, it is possible\nthat it has already been identified. Update to the latest release if you are\nnot using it already, and retry. If the problem persists, please search our\nbug database and our mailing lists to see if it has already been reported\n(and hopefully fixed), and if not please do report the bug. We can't fix\nproblems we don't know about ;)\n\nIssue tracker: https://github.com/biopython/biopython/issues\n\nIf you suspect the problem lies within a parser, it is likely that the data\nformat has changed and broken the parsing code.  (The text BLAST and GenBank\nformats seem to be particularly fragile.)  Thus, the parsing code in\nBiopython is sometimes updated faster than we can build Biopython releases.\nYou can get the most recent parser by pulling the relevant files (e.g. the\nones in ``Bio.SeqIO`` or ``Bio.Blast``) from our git repository. However, be\ncareful when doing this, because the code in github is not as well-tested\nas released code, and may contain new dependencies.\n\nIn any bug report, please let us know:\n\n1. Which operating system and hardware (32 bit or 64 bit) you are using\n2. Python version\n3. Biopython version (or git commit/date)\n4. Traceback that occurs (the full error message)\n\nAnd also ideally:\n\n5. Example code that breaks\n6. A data file that causes the problem\n\n\nContributing, Bug Reports\n=========================\n\nBiopython is run by volunteers from all over the world, with many types of\nbackgrounds. We are always looking for people interested in helping with code\ndevelopment, web-site management, documentation writing, technical\nadministration, and whatever else comes up.\n\nIf you wish to contribute, please first read `CONTRIBUTING.rst\n<https://github.com/biopython/biopython/blob/master/CONTRIBUTING.rst>`_ here,\nvisit our web site http://biopython.org and join our mailing list:\nhttp://biopython.org/wiki/Mailing_lists\n\n\nDistribution Structure\n======================\n\n- ``README.rst``  -- This file.\n- ``NEWS.rst``    -- Release notes and news.\n- ``LICENSE.rst`` -- What you can do with the code.\n- ``CONTRIB.rst`` -- An (incomplete) list of people who helped Biopython in\n  one way or another.\n- ``CONTRIBUTING.rst`` -- An overview about how to contribute to Biopython.\n- ``DEPRECATED.rst`` -- Contains information about modules in Biopython that\n  were removed or no longer recommended for use, and how to update code that\n  uses those modules.\n- ``MANIFEST.in`` -- Configures which files to include in releases.\n- ``setup.py``    -- Installation file.\n- ``Bio/``        -- The main code base code.\n- ``BioSQL/``     -- Code for using Biopython with BioSQL databases.\n- ``Doc/``        -- Documentation.\n- ``Scripts/``    -- Miscellaneous, possibly useful, standalone scripts.\n- ``Tests/``      -- Regression testing code including sample data files.\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Freely available tools for computational molecular biology.",
    "version": "1.83",
    "project_urls": {
        "Documentation": "https://biopython.org/wiki/Documentation",
        "Homepage": "https://biopython.org/",
        "Source": "https://github.com/biopython/biopython/",
        "Tracker": "https://github.com/biopython/biopython/issues"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f372121580953f63a20870d7e6ce1bd0bb86fb916b034870189b61cbc8f6e096",
                "md5": "9bf7983d9844353766d7cc43b83ba5e2",
                "sha256": "e2cc737906d8de47eedbc4476f711b960c16a65daa8cdd021875398c81999a09"
            },
            "downloads": -1,
            "filename": "biopython-1.83-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9bf7983d9844353766d7cc43b83ba5e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2689906,
            "upload_time": "2024-01-10T12:25:43",
            "upload_time_iso_8601": "2024-01-10T12:25:43.026004Z",
            "url": "https://files.pythonhosted.org/packages/f3/72/121580953f63a20870d7e6ce1bd0bb86fb916b034870189b61cbc8f6e096/biopython-1.83-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1f2454402fd6343a688a59f83aab37234ae2716dc7ed0ed8c33cef02727acfc3",
                "md5": "d971d232b93142dc5e80a4911b082b57",
                "sha256": "2df408be9816dd98c28fe181ea93fb6e0d375bf1763ad9ed503ac30bb2df5b1a"
            },
            "downloads": -1,
            "filename": "biopython-1.83-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d971d232b93142dc5e80a4911b082b57",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 3101912,
            "upload_time": "2024-01-10T12:25:49",
            "upload_time_iso_8601": "2024-01-10T12:25:49.786274Z",
            "url": "https://files.pythonhosted.org/packages/1f/24/54402fd6343a688a59f83aab37234ae2716dc7ed0ed8c33cef02727acfc3/biopython-1.83-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8c6af38bc09251404d546cc7011ef27353531ceba5f29f25be35e66706e24a13",
                "md5": "0fa1219ddefcd516778c2d1e0a010a50",
                "sha256": "a0c1c70789c7e2a26563db5ba533fb9fea0cc1f2c7bc7ad240146cb223ba44a3"
            },
            "downloads": -1,
            "filename": "biopython-1.83-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "0fa1219ddefcd516778c2d1e0a010a50",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2689413,
            "upload_time": "2024-01-10T12:25:55",
            "upload_time_iso_8601": "2024-01-10T12:25:55.772116Z",
            "url": "https://files.pythonhosted.org/packages/8c/6a/f38bc09251404d546cc7011ef27353531ceba5f29f25be35e66706e24a13/biopython-1.83-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c094b5ad1d3f08c040ad4809e937d4d469eebb05f93a4fb7a85a9e7e40ccde8",
                "md5": "6b0ba4b7ac995731ec616c6bc98dd7ee",
                "sha256": "56f03f43c183acb88c082bc31e5f047fcc6d0aceb5270fbd29c31ab769795b86"
            },
            "downloads": -1,
            "filename": "biopython-1.83-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6b0ba4b7ac995731ec616c6bc98dd7ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2725216,
            "upload_time": "2024-01-10T12:26:01",
            "upload_time_iso_8601": "2024-01-10T12:26:01.086434Z",
            "url": "https://files.pythonhosted.org/packages/0c/09/4b5ad1d3f08c040ad4809e937d4d469eebb05f93a4fb7a85a9e7e40ccde8/biopython-1.83-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "44a153fdaf58f677a54dca2cf23d4a6dafc3c55478416f602738308fda2a107f",
                "md5": "6bd79e8c491f13a943c5b9343cc12a94",
                "sha256": "a01dfdad7210f2fd5c4f36606278f91dbfdda6dac02347206d13cc618e79fe32"
            },
            "downloads": -1,
            "filename": "biopython-1.83-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6bd79e8c491f13a943c5b9343cc12a94",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2690083,
            "upload_time": "2024-01-10T12:26:06",
            "upload_time_iso_8601": "2024-01-10T12:26:06.269081Z",
            "url": "https://files.pythonhosted.org/packages/44/a1/53fdaf58f677a54dca2cf23d4a6dafc3c55478416f602738308fda2a107f/biopython-1.83-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a383b971995c8bb2fad0b9809a61c8099fb1b2e579236e4c94fb0797825e171",
                "md5": "ffca1c008500386c66e7db81a6c14045",
                "sha256": "c756c0b81702c705141c87c2805203df01c6d4cf290e8cefd48cbc61a3c85b82"
            },
            "downloads": -1,
            "filename": "biopython-1.83-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ffca1c008500386c66e7db81a6c14045",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 3113769,
            "upload_time": "2024-01-10T12:26:11",
            "upload_time_iso_8601": "2024-01-10T12:26:11.343831Z",
            "url": "https://files.pythonhosted.org/packages/2a/38/3b971995c8bb2fad0b9809a61c8099fb1b2e579236e4c94fb0797825e171/biopython-1.83-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f1910759c7476a157887d68a1b286de4f1a7ec387cabdbf022e78d6c9a1010a9",
                "md5": "8f61939eac588e457f870d309092f760",
                "sha256": "0496f2a6e6e060d8ff0f34784ad15ed342b10cfe282020efe168286f0c14c479"
            },
            "downloads": -1,
            "filename": "biopython-1.83-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "8f61939eac588e457f870d309092f760",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2689340,
            "upload_time": "2024-01-10T12:26:15",
            "upload_time_iso_8601": "2024-01-10T12:26:15.995610Z",
            "url": "https://files.pythonhosted.org/packages/f1/91/0759c7476a157887d68a1b286de4f1a7ec387cabdbf022e78d6c9a1010a9/biopython-1.83-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b8c818570a63e8b6fe99a856698d500fb326f0ce247d2b70d8d631d4abcb5c9c",
                "md5": "962d154b9437605273297fb593a7cbe5",
                "sha256": "8552cc467429b555c604b84fc174c33923bf7e4c735774eda505f1d5a9c2feab"
            },
            "downloads": -1,
            "filename": "biopython-1.83-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "962d154b9437605273297fb593a7cbe5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2725183,
            "upload_time": "2024-01-10T12:26:21",
            "upload_time_iso_8601": "2024-01-10T12:26:21.150795Z",
            "url": "https://files.pythonhosted.org/packages/b8/c8/18570a63e8b6fe99a856698d500fb326f0ce247d2b70d8d631d4abcb5c9c/biopython-1.83-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "82fd176b5198f3d31d089c66a2ae6236b4f9ba311e251a3cc6df9708fc31f4ad",
                "md5": "5df62b50b6c7ee88012ca571a091f2cf",
                "sha256": "0d5ce14755a6b49dea4743cf6929570afe5becb66ad222194984c7bf04218f86"
            },
            "downloads": -1,
            "filename": "biopython-1.83-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5df62b50b6c7ee88012ca571a091f2cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2690888,
            "upload_time": "2024-01-10T12:26:25",
            "upload_time_iso_8601": "2024-01-10T12:26:25.950766Z",
            "url": "https://files.pythonhosted.org/packages/82/fd/176b5198f3d31d089c66a2ae6236b4f9ba311e251a3cc6df9708fc31f4ad/biopython-1.83-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1382f279caa7647d4afde960ae466cab1f44257d39ca26ecf4deecd086f23290",
                "md5": "cc49935b2317d894474249de5aaeb4eb",
                "sha256": "0b35aa095de0fa8339b70664797d0e83322a1a9d512e2fd52d4e872df5189f56"
            },
            "downloads": -1,
            "filename": "biopython-1.83-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cc49935b2317d894474249de5aaeb4eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 3127122,
            "upload_time": "2024-01-10T12:26:31",
            "upload_time_iso_8601": "2024-01-10T12:26:31.016590Z",
            "url": "https://files.pythonhosted.org/packages/13/82/f279caa7647d4afde960ae466cab1f44257d39ca26ecf4deecd086f23290/biopython-1.83-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5318ece4454497a2e14042deba6ec4ad4e0328d01035527a752c6db5e2244dd2",
                "md5": "612eed5554a3fb5a58196fc3539f04a5",
                "sha256": "118425a210cb3d184c7a78154c5646089366faf124cd46c6056ca7f9302b94ad"
            },
            "downloads": -1,
            "filename": "biopython-1.83-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "612eed5554a3fb5a58196fc3539f04a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2690448,
            "upload_time": "2024-01-10T12:26:35",
            "upload_time_iso_8601": "2024-01-10T12:26:35.525627Z",
            "url": "https://files.pythonhosted.org/packages/53/18/ece4454497a2e14042deba6ec4ad4e0328d01035527a752c6db5e2244dd2/biopython-1.83-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a32ad3f07c3dfc20a8f168f897b6d2312647ee3e598e0cd1270304897049126",
                "md5": "b8aa5639bde4b3b75bcdd6ded18f04b6",
                "sha256": "ca94e8ea8907de841a515af55acb1922a9de99b3144c738a193f2a75e4726078"
            },
            "downloads": -1,
            "filename": "biopython-1.83-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b8aa5639bde4b3b75bcdd6ded18f04b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2725541,
            "upload_time": "2024-01-10T12:26:40",
            "upload_time_iso_8601": "2024-01-10T12:26:40.218739Z",
            "url": "https://files.pythonhosted.org/packages/8a/32/ad3f07c3dfc20a8f168f897b6d2312647ee3e598e0cd1270304897049126/biopython-1.83-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "43e530dc0f967b2792bedff350d4a87e30c3cbbe0e4cb2608b7e6241056d6db9",
                "md5": "2efc998e0d2c629636fd453a256a7bfa",
                "sha256": "e37884fe39e4560bf5934a4ec4ba7f7fe0e7c091053d03d05b20a70557167717"
            },
            "downloads": -1,
            "filename": "biopython-1.83-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2efc998e0d2c629636fd453a256a7bfa",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2689881,
            "upload_time": "2024-01-10T12:26:45",
            "upload_time_iso_8601": "2024-01-10T12:26:45.027284Z",
            "url": "https://files.pythonhosted.org/packages/43/e5/30dc0f967b2792bedff350d4a87e30c3cbbe0e4cb2608b7e6241056d6db9/biopython-1.83-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "052f4ad16933096030e76046659f40b381869e46c4a26f4735969240d2c0adee",
                "md5": "a4d8e6df63843daff3027da154501160",
                "sha256": "fd9bc6fef3f6a10043635a75e1a77c9dce877375140e81059c67c73d4ce65c4c"
            },
            "downloads": -1,
            "filename": "biopython-1.83-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a4d8e6df63843daff3027da154501160",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 3111259,
            "upload_time": "2024-01-10T12:26:51",
            "upload_time_iso_8601": "2024-01-10T12:26:51.006238Z",
            "url": "https://files.pythonhosted.org/packages/05/2f/4ad16933096030e76046659f40b381869e46c4a26f4735969240d2c0adee/biopython-1.83-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "704a6f9653c962ed59c3b166ffcd12336f4c6188b080d21a1aacc959efc3b151",
                "md5": "7bbc7603b31c774139c783cd05d203c0",
                "sha256": "2c3584122a5daca25b3914a32c52785b051c11518cd5e111e9e89ee04a6234fe"
            },
            "downloads": -1,
            "filename": "biopython-1.83-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7bbc7603b31c774139c783cd05d203c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 3073513,
            "upload_time": "2024-01-10T12:26:56",
            "upload_time_iso_8601": "2024-01-10T12:26:56.753575Z",
            "url": "https://files.pythonhosted.org/packages/70/4a/6f9653c962ed59c3b166ffcd12336f4c6188b080d21a1aacc959efc3b151/biopython-1.83-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "132fe344b9d250a9f6f7d9b07e543ee05bc0d4e53c5fab140a9a1b7d4225389f",
                "md5": "07e9962f1be1cadc050b204622d07252",
                "sha256": "641c1a860705d6740eb16c6147b2b730b05a8f5974db804c14d5faa8a1446085"
            },
            "downloads": -1,
            "filename": "biopython-1.83-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "07e9962f1be1cadc050b204622d07252",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2689412,
            "upload_time": "2024-01-10T12:27:01",
            "upload_time_iso_8601": "2024-01-10T12:27:01.309006Z",
            "url": "https://files.pythonhosted.org/packages/13/2f/e344b9d250a9f6f7d9b07e543ee05bc0d4e53c5fab140a9a1b7d4225389f/biopython-1.83-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a3c10f22f3599acdf12b2a7a687589e3722b521147fe0e7846bd11f294eaf90",
                "md5": "a65395082ae4fc7a165a563e827d7498",
                "sha256": "94b68e550619e1b6e3784ed8cecb62f201d70d8b87d3a90365291f065ab42bd9"
            },
            "downloads": -1,
            "filename": "biopython-1.83-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a65395082ae4fc7a165a563e827d7498",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2725178,
            "upload_time": "2024-01-10T12:27:06",
            "upload_time_iso_8601": "2024-01-10T12:27:06.186599Z",
            "url": "https://files.pythonhosted.org/packages/2a/3c/10f22f3599acdf12b2a7a687589e3722b521147fe0e7846bd11f294eaf90/biopython-1.83-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7a91b1eb46b43541c7d5fd627022915ff80a5d3ba860fdf206a665b3d3d9077",
                "md5": "c425167a0dacd159c3324dd61afcdace",
                "sha256": "81d1e2515b380e1876720ba79dbf50f8ef3a38cc38ba5953ef61ec20d0934ee2"
            },
            "downloads": -1,
            "filename": "biopython-1.83-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c425167a0dacd159c3324dd61afcdace",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2689915,
            "upload_time": "2024-01-10T12:27:11",
            "upload_time_iso_8601": "2024-01-10T12:27:11.456486Z",
            "url": "https://files.pythonhosted.org/packages/a7/a9/1b1eb46b43541c7d5fd627022915ff80a5d3ba860fdf206a665b3d3d9077/biopython-1.83-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30b073fc250af13256c1c1db1edd17f2786fb02dda4c141d809b0d4159c6bbf1",
                "md5": "55c44a9e0ed0aea84089466aad59323d",
                "sha256": "ec82350c24cdcf34a8d4a5f189d0ff7dc025658098a60e6f0e681d24b6a1414e"
            },
            "downloads": -1,
            "filename": "biopython-1.83-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "55c44a9e0ed0aea84089466aad59323d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 3100642,
            "upload_time": "2024-01-10T12:27:16",
            "upload_time_iso_8601": "2024-01-10T12:27:16.517610Z",
            "url": "https://files.pythonhosted.org/packages/30/b0/73fc250af13256c1c1db1edd17f2786fb02dda4c141d809b0d4159c6bbf1/biopython-1.83-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "98ed5a342a9a3fe84a2b7699881331bb6e7296fb6332ec4c0a705ff82c9b8dde",
                "md5": "11a188e0724470eb4698801d5ca0958a",
                "sha256": "e914f7161b3831d7c58db33cc5c7ca64b42c9877c5a776a8313e7a5fd494f8de"
            },
            "downloads": -1,
            "filename": "biopython-1.83-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "11a188e0724470eb4698801d5ca0958a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2689415,
            "upload_time": "2024-01-10T12:27:21",
            "upload_time_iso_8601": "2024-01-10T12:27:21.629196Z",
            "url": "https://files.pythonhosted.org/packages/98/ed/5a342a9a3fe84a2b7699881331bb6e7296fb6332ec4c0a705ff82c9b8dde/biopython-1.83-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f127be0ea2b3b5a03976e122376954c3b0f761a5ba55f107ee3b050725bf1c1e",
                "md5": "cc26d8a1f03428b241121c59e9b80b12",
                "sha256": "aae1b156a76907c2abfe9d141776b0aead65695ea914eaecdf12bd1e8991f869"
            },
            "downloads": -1,
            "filename": "biopython-1.83-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cc26d8a1f03428b241121c59e9b80b12",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2725199,
            "upload_time": "2024-01-10T12:27:26",
            "upload_time_iso_8601": "2024-01-10T12:27:26.191444Z",
            "url": "https://files.pythonhosted.org/packages/f1/27/be0ea2b3b5a03976e122376954c3b0f761a5ba55f107ee3b050725bf1c1e/biopython-1.83-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ccd43d8848191a7a37187704c382e6dfda4d6a47d05a14cd64f004c55a3cd5a1",
                "md5": "fa95c92de7cfbb153b070e3da5aaf14a",
                "sha256": "78e6bfb78de63034037afd35fe77cb6e0a9e5b62706becf78a7d922b16ed83f7"
            },
            "downloads": -1,
            "filename": "biopython-1.83.tar.gz",
            "has_sig": false,
            "md5_digest": "fa95c92de7cfbb153b070e3da5aaf14a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 19431530,
            "upload_time": "2024-01-10T12:25:28",
            "upload_time_iso_8601": "2024-01-10T12:25:28.048726Z",
            "url": "https://files.pythonhosted.org/packages/cc/d4/3d8848191a7a37187704c382e6dfda4d6a47d05a14cd64f004c55a3cd5a1/biopython-1.83.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-10 12:25:28",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "biopython",
    "github_project": "biopython",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "appveyor": true,
    "circle": true,
    "lcname": "biopython"
}
        
Elapsed time: 0.16319s