{ "info": { "author": "Kai Blin", "author_email": "kblin@biosustain.dtu.dk", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Intended Audience :: Science/Research", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Scientific/Engineering :: Bio-Informatics" ], "description": "# NCBI Genome Downloading Scripts\n\n[![Build Status](https://github.drone.secondarymetabolites.org/api/badges/kblin/ncbi-genome-download/status.svg)](https://github.drone.secondarymetabolites.org/kblin/ncbi-genome-download)\n[![PyPI release](https://img.shields.io/pypi/v/ncbi-genome-download.svg)](https://pypi.python.org/pypi/ncbi-genome-download/)\n\nSome script to download bacterial and fungal genomes from NCBI after they\nrestructured their FTP a while ago.\n\nIdea shamelessly stolen from [Mick Watson's Kraken downloader\nscripts](http://www.opiniomics.org/building-a-kraken-database-with-new-ftp-structure-and-no-gi-numbers/)\nthat can also be found in [Mick's GitHub\nrepo](https://github.com/mw55309/Kraken_db_install_scripts). However, Mick's\nscripts are ~~written in Perl~~ specific to actually building a Kraken database\n(as advertised).\n\nSo this is a set of scripts that focuses on the actual genome downloading.\n\n## Installation\n\n```\npip install ncbi-genome-download\n```\n\nAlternatively, clone this repository from GitHub, then run (in a python virtual environment)\n```\npip install .\n```\nIf this fails on older versions of Python, try updating your `pip` tool first:\n```\npip install --upgrade pip\n```\nand then rerun the `ncbi-genome-download` install.\n\nAlternatively, `ncbi-genome-download` is packaged in `conda`.\nRefer the the Anaconda/miniconda site to install a distribution (highly recommended) https://conda.io/miniconda.html\nWith that installed one can do:\n```\nconda install -c bioconda ncbi-genome-download\n```\n\n`ncbi-genome-download` is only developed and tested on Python releases still under active\nsupport by the Python project. At the moment, this means versions 2.7, 3.4, 3.5 and 3.6.\nSpecifically, no attempt at testing under Python versions older than 2.7 or 3.4 is being made.\n\nIf your system is stuck on an older version of Python, consider using a tool like\n[Homebrew](http://brew.sh) or [Linuxbrew](http://linuxbrew.sh) to obtain a more up-to-date\nversion.\n\n\n## Usage\n\nTo download all bacterial RefSeq genomes in GenBank format from NCBI, run the following:\n```\nncbi-genome-download bacteria\n```\n\nDownloading multiple groups is also possible:\n```\nncbi-genome-download bacteria,viral\n```\n\n**Note**: To see all available groups, see `ncbi-genome-download --help`, or simply use `all` to check all groups.\nNaming a more specific group will reduce the download size and the time needed to find the sequences to download.\n\nIf you're on a reasonably fast connection, you might want to try running multiple downloads in parallel:\n```\nncbi-genome-download bacteria --parallel 4\n```\n\n\nTo download all fungal GenBank genomes from NCBI in GenBank format, run:\n```\nncbi-genome-download --section genbank fungi\n```\n\nTo download all viral RefSeq genomes in FASTA format, run:\n```\nncbi-genome-download --format fasta viral\n```\n\nIt is possible to download multiple formats by supplying a list of formats or simply download all formats:\n```\nncbi-genome-download --format fasta,assembly-report viral\nncbi-genome-download --format all viral\n```\n\nTo download only completed bacterial RefSeq genomes in GenBank format, run:\n```\nncbi-genome-download --assembly-level complete bacteria\n```\n\nIt is possible to download multiple assembly levels at once by supplying a list:\n```\nncbi-genome-download --assembly-level complete,chromosome bacteria\n```\n\nTo download only bacterial reference genomes from RefSeq in GenBank format, run:\n```\nncbi-genome-download --refseq-category reference bacteria\n```\n\nTo download bacterial RefSeq genomes of the genus _Streptomyces_, run:\n```\nncbi-genome-download --genus Streptomyces bacteria\n```\n**Note**: This is a simple string match on the organism name provided by NCBI only.\n\nYou can also use this with a slight trick to download genomes of a certain species as well:\n```\nncbi-genome-download --genus \"Streptomyces coelicolor\" bacteria\n```\n**Note**: The quotes are important. Again, this is a simple string match on the organism\nname provided by the NCBI.\n\nMultiple genera is also possible:\n```\nncbi-genome-download --genus \"Streptomyces coelicolor,Escherichia coli\" bacteria\n```\n\nYou can also put genus names into a file, one organism per line, e.g.:\n```\nStreptomyces\nAmycolatopsis\n```\n\nThen, pass the path to that file (e.g. `my_genera.txt`) to the `--genus` option, like so:\n```\nncbi-genome-download --genus my_genera.txt bacteria\n```\n**Note**: The above command will download all _Streptomyces_ and _Amycolatopsis_ genomes from RefSeq.\n\nYou can make the string match fuzzy using the `--fuzzy-genus` option. This can be handy if you need to match\na value in the middle of the NCBI organism name, like so:\n\n```\nncbi-genome-download --genus coelicolor --fuzzy-genus bacteria\n```\n**Note**: The above command will download all bacterial genomes containing \"coelicolor\" anywhere in their\norganism name from RefSeq.\n\nTo download bacterial RefSeq genomes based on their NCBI species taxonomy ID, run:\n```\nncbi-genome-download --species-taxid 562 bacteria\n```\n**Note**: The above command will download all RefSeq genomes belonging to _Escherichia coli_.\n\nTo download a specific bacterial RefSeq genomes based on its NCBI taxonomy ID, run:\n```\nncbi-genome-download --taxid 511145 bacteria\n```\n**Note**: The above command will download the RefSeq genome belonging to _Escherichia coli str. K-12 substr. MG1655_.\n\nIt is also possible to download multiple species taxids or taxids by supplying the numbers in a comma-separated list:\n```\nncbi-genome-download --taxid 9606,9685 --assembly-level chromosome vertebrate_mammalian\n```\n**Note**: The above command will download the reference genomes for cat and human.\n\nIn addition, you can put multiple species taxids or taxids into a file, one per line\nand pass that filename to the `--species-taxid` or `--taxid` parameters, respectively.\n\nAssuming you had a file `my_taxids.txt` with the following contents:\n```\n9606\n9685\n```\nYou could download the reference genomes for cat and human like this:\n```\nncbi-genome-download --taxid my_taxids.txt --assembly-level chromosome vertebrate_mammalian\n```\n\nIt is possible to also create a human-readable directory structure in parallel to mirroring\nthe layout used by NCBI:\n```\nncbi-genome-download --human-readable bacteria\n```\nThis will use links to point to the appropriate files in the NCBI directory structure,\nso it saves file space. Note that links are not supported on some Windows file systems and some\nolder versions of Windows.\n\nIt is also possible to re-run a previous download with the `--human-readable` option.\nIn this case, `ncbi-genome-download` will not download any new genome files, and just create\nhuman-readable directory structure. Note that if any files have been changed on the NCBI side,\na file download will be triggered.\n\nThere is a \"dry-run\" option to show which accessions would be downloaded, given your filters:\n```\nncbi-genome-download --dry-run bacteria\n```\n\nIf you want to filter for the \"relation to type material\" column of the\nassembly summary file, you can use the `--type-material` option. Possible\nvalues are \"any\", \"all\", \"type\", \"reference\", \"synonym\", \"proxytype\", and/or\n\"neotype\". \"any\" will include assemblies with no relation to type material\nvalue defined, \"all\" will download only assemblies with a defined value.\nMultiple values can be given, separated by comma:\n```\nncbi-genome-download --type-material type,reference\n```\n\nBy default, ncbi-genome-download caches the assembly summary files for the respective taxonomic\ngroups for one day. You can skip using the cache file by using the `--no-cache` option.\nThe output of `--help` also shows the cache directory, should you want to remove any of the cached\nfiles.\n\nTo get an overview of all options, run\n```\nncbi-genome-download --help\n```\n\n### As a method\nYou can also use it as a method call. Pass the pythonised keyword arguments (`_` instead of `-`)\n as described above or in the `--help`:\n```\nimport ncbi_genome_download as ngd\nngd.download()\n```\n**Note**: To specify a taxonomic group, like *bacteria*, use the `group` keyword.\n\n\n### Contributed Scripts: `gimme_taxa.py`\nThis script lets you find out what TaxIDs to pass to `ngd`, and will write a simple one-item-per-line\nfile to pass in to it. It utilises the `ete3` toolkit, so refer to their site to install the dependency\nif it's not already satisfied.\n\nYou can query the database using a particular TaxID, or a scientific name. The primary function of the\nscript is to return all the child taxa of the specified parent taxa. The script has various options\nfor what information is written in the output.\n\nA basic invocation may look like:\n\n```\n# Fetch all descendent taxa for Escherichia (taxid 561):\npython gimme_taxa.py -o ~/mytaxafile.txt 561\n\n# Alternatively, just provide the taxon name\npython gimme_taxa.py -o all_descendent_taxids.txt Escherichia\n\n# You can provide multiple taxids and/or names\npython gimme_taxa.py -o all_descendent_taxids.txt 561,Methanobrevibacter\n```\n\nOn first use, a small sqlite database will be created in your home directory\nby default (change the location with the `--database` flag). You can update this database\nby using the `--update` flag. Note that if the database is not in your home directory,\nyou must specify it with `--database` or a new database will be created in your home\ndirectory.\n\nTo see all help:\n```\npython gimme_taxa.py\npython gimme_taxa.py -h\npython gimme_taxa.py --help\n```\n\n## License\nAll code is available under the Apache License version 2, see the\n[`LICENSE`](LICENSE) file for details.\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/kblin/ncbi-genome-download/", "keywords": "", "license": "Apache Software License", "maintainer": "", "maintainer_email": "", "name": "ncbi-genome-download", "package_url": "https://pypi.org/project/ncbi-genome-download/", "platform": "", "project_url": "https://pypi.org/project/ncbi-genome-download/", "project_urls": { "Homepage": "https://github.com/kblin/ncbi-genome-download/" }, "release_url": "https://pypi.org/project/ncbi-genome-download/0.2.11/", "requires_dist": [ "appdirs", "requests (>=2.4.3)", "pytest; extra == 'testing'", "coverage; extra == 'testing'", "pytest-cov; extra == 'testing'", "requests-mock; extra == 'testing'", "pytest-mock; extra == 'testing'" ], "requires_python": "", "summary": "Download genome files from the NCBI FTP server.", "version": "0.2.11" }, "last_serial": 5770476, "releases": { "0.1.1": [ { "comment_text": "", "digests": { "md5": "873de52f14271a79051b4482bf651bae", "sha256": "9909ca1a05d62be5ab5d4853c39b1abc5c367b9527d1acc78425c004010d2a91" }, "downloads": -1, "filename": "ncbi-genome-download-0.1.1.tar.gz", "has_sig": false, "md5_digest": "873de52f14271a79051b4482bf651bae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4482, "upload_time": "2016-05-07T11:12:00", "url": "https://files.pythonhosted.org/packages/09/82/6fef6883bc9873c3280a2bd344cd1c6051679704abe699b1dd52107cf752/ncbi-genome-download-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "47199f04e2aac7f544565a70c78e1ba2", "sha256": "3f0cff431d6a41035e7c115a7e30924b03339f658ff02aba11dc18e0c8758a10" }, "downloads": -1, "filename": "ncbi-genome-download-0.1.2.tar.gz", "has_sig": false, "md5_digest": "47199f04e2aac7f544565a70c78e1ba2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4480, "upload_time": "2016-05-07T11:19:07", "url": "https://files.pythonhosted.org/packages/dd/27/1b3237d7d2c56d11a75190805c702f39b4e92aab59ae4fa3f65d8dc72ca3/ncbi-genome-download-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "9a71b7da7019b75f2b62a2641d2badbb", "sha256": "aa7fd2f2d22e083c1f8df518d9379d894800cd2ac2b53f60d93a7562c2aff088" }, "downloads": -1, "filename": "ncbi-genome-download-0.1.3.tar.gz", "has_sig": false, "md5_digest": "9a71b7da7019b75f2b62a2641d2badbb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7081, "upload_time": "2016-05-08T14:40:43", "url": "https://files.pythonhosted.org/packages/a9/34/5d700b23e9323b5004b285380e3cdc0a9d7c395f4c89057b43eac7d4b8db/ncbi-genome-download-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "daa5a8c9df4bb987618ca4d5bb08e32b", "sha256": "af2a426c2c8fa803b8b764cdc9d769797db556651959f31f3899575e04a5f5db" }, "downloads": -1, "filename": "ncbi-genome-download-0.1.4.tar.gz", "has_sig": false, "md5_digest": "daa5a8c9df4bb987618ca4d5bb08e32b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7445, "upload_time": "2016-05-09T11:31:57", "url": "https://files.pythonhosted.org/packages/4d/97/7ce454b35a6b916076b6a94de0891230d9997e8989c53a5ab7a73f6dd291/ncbi-genome-download-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "3df16dc64b8d7d471baab37e1220a008", "sha256": "94183a01a0abc2988e359070c504eb3ac04e7458462a71a3266cbede278f95f7" }, "downloads": -1, "filename": "ncbi-genome-download-0.1.5.tar.gz", "has_sig": false, "md5_digest": "3df16dc64b8d7d471baab37e1220a008", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7472, "upload_time": "2016-05-09T11:51:50", "url": "https://files.pythonhosted.org/packages/be/30/c8d75279dd6b53831263d92868db2c950e349606bea58429c331b6fd885f/ncbi-genome-download-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "f1ce65be5dc02b0355ace699dd3ce1c9", "sha256": "b4f14771be7da3d4343436da616d82aea1d74318a4f878baa2175c3ff6de464d" }, "downloads": -1, "filename": "ncbi-genome-download-0.1.6.tar.gz", "has_sig": false, "md5_digest": "f1ce65be5dc02b0355ace699dd3ce1c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8432, "upload_time": "2016-05-17T08:18:23", "url": "https://files.pythonhosted.org/packages/ac/ca/59c34ea35e32d7388d4ad5ff8bb0e4b59591bfd181cfe1b709481925da7b/ncbi-genome-download-0.1.6.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "26462caab62d228486cd204b4ab70ba0", "sha256": "4a0c32f0aff736f2ac1839de295a31d75882dbdcc631e17337e151ea8e7977c6" }, "downloads": -1, "filename": "ncbi-genome-download-0.1.7.tar.gz", "has_sig": false, "md5_digest": "26462caab62d228486cd204b4ab70ba0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9009, "upload_time": "2016-05-27T13:47:11", "url": "https://files.pythonhosted.org/packages/67/69/9a2ebc3840621f4b539c4bc325d4661a878e862869ee68be40bcfd74362d/ncbi-genome-download-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "4ec3d01a93d03c67d1afdd9bc836e409", "sha256": "1584ebcb99e053a37e84ba5ec3b177679c4a084abb8d99e76d6cf3a28c08fcf7" }, "downloads": -1, "filename": "ncbi-genome-download-0.1.8.tar.gz", "has_sig": false, "md5_digest": "4ec3d01a93d03c67d1afdd9bc836e409", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9369, "upload_time": "2016-06-01T09:58:45", "url": "https://files.pythonhosted.org/packages/e5/22/2e9ddf777f5f1bca4c08fa402ede453f8edfe225981230100257a4fead85/ncbi-genome-download-0.1.8.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "f395f82725cb05b78a43aaa17af7e6e4", "sha256": "56f16b0de073001d553b78008d9444ed185714f9578f29a8f61f592520c357cb" }, "downloads": -1, "filename": "ncbi-genome-download-0.2.0.tar.gz", "has_sig": false, "md5_digest": "f395f82725cb05b78a43aaa17af7e6e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11397, "upload_time": "2016-09-09T17:14:29", "url": "https://files.pythonhosted.org/packages/c7/25/949f1522617349c850a6f6e077cab0d1fe831cea357dd31bf8b0e6226ff1/ncbi-genome-download-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "34cf93f3bcd752b09074d7a4fe5139a6", "sha256": "65eea76b0da141d41edbd5e22720225d0156f0a2a336e858ca6dc99eedb908e5" }, "downloads": -1, "filename": "ncbi-genome-download-0.2.1.tar.gz", "has_sig": false, "md5_digest": "34cf93f3bcd752b09074d7a4fe5139a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13173, "upload_time": "2016-11-30T15:47:37", "url": "https://files.pythonhosted.org/packages/df/e5/7345ffbd9f57d70e88061beaa76ba15caa1c709ceefff277f93147b74ba4/ncbi-genome-download-0.2.1.tar.gz" } ], "0.2.10": [ { "comment_text": "", "digests": { "md5": "b667690c825acc983df2e64737097a15", "sha256": "ceae9772dab749d0f19be695bfc175668e41134ca044bc322a2b2ad6b448d671" }, "downloads": -1, "filename": "ncbi_genome_download-0.2.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b667690c825acc983df2e64737097a15", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17744, "upload_time": "2019-07-08T14:45:13", "url": "https://files.pythonhosted.org/packages/12/0e/b76cde571a7ca763b0f097dd23e1f66050ab105739601f1bf530724e46b9/ncbi_genome_download-0.2.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "81c19dcdb1f82b00b3d7733e2616d560", "sha256": "2f9fa30424aaa532ed24a6493dc5dec0c7b81d6b86994e7f06b72ff3c2b5028e" }, "downloads": -1, "filename": "ncbi-genome-download-0.2.10.tar.gz", "has_sig": false, "md5_digest": "81c19dcdb1f82b00b3d7733e2616d560", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4527261, "upload_time": "2019-07-08T14:45:15", "url": "https://files.pythonhosted.org/packages/9c/22/9ac7a9724caebfc2a9e2a703d258066775b27a1e3c27573c1d5db4117182/ncbi-genome-download-0.2.10.tar.gz" } ], "0.2.11": [ { "comment_text": "", "digests": { "md5": "9efd9cd2550822841f230a45c8c7c003", "sha256": "bd2017430b62a4f43be93c900c68b782ad4a85fe7a687ef746c804820a1fe2e0" }, "downloads": -1, "filename": "ncbi_genome_download-0.2.11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9efd9cd2550822841f230a45c8c7c003", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17825, "upload_time": "2019-09-02T11:56:23", "url": "https://files.pythonhosted.org/packages/b9/59/83a602868039e10a061e9ecc0539114e8c59f16be1779f458c5b5c2e755d/ncbi_genome_download-0.2.11-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7c30f976179938c0d9c8902484ed2e4f", "sha256": "894420126a2e7ef74d977618e4c31b24a43bd98c6aeb3431d2dfdd5d3dbd72c6" }, "downloads": -1, "filename": "ncbi-genome-download-0.2.11.tar.gz", "has_sig": false, "md5_digest": "7c30f976179938c0d9c8902484ed2e4f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23699, "upload_time": "2019-09-02T11:56:25", "url": "https://files.pythonhosted.org/packages/5c/04/fb79d08ed253f52ca939d214e05280b7f7aa5534ac810e5cf59d6d20ce5e/ncbi-genome-download-0.2.11.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "103b2e192a2ff08f1fda1a81c0fcbf13", "sha256": "9c2135c32782e90cf0b4029fa0acc3b5d8ac2ff4a594949aa5b8a8d5fe1361ca" }, "downloads": -1, "filename": "ncbi-genome-download-0.2.2.tar.gz", "has_sig": false, "md5_digest": "103b2e192a2ff08f1fda1a81c0fcbf13", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13205, "upload_time": "2016-11-30T16:02:53", "url": "https://files.pythonhosted.org/packages/9a/18/d68d9200014546960020cd93470edb6510e19a524e2ddf071e437efadb8c/ncbi-genome-download-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "c158c8c82aa3107599be60c43b285561", "sha256": "db0e607cdd90ebf2abdc519bd3cb98eb70a4c3f3c9605c94528796fa18d01e10" }, "downloads": -1, "filename": "ncbi-genome-download-0.2.3.tar.gz", "has_sig": false, "md5_digest": "c158c8c82aa3107599be60c43b285561", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 361133, "upload_time": "2017-02-08T15:36:30", "url": "https://files.pythonhosted.org/packages/b2/33/734c213b449b5b9171a7253e1c2f4c4d879d8405b93ad5c42b8177992874/ncbi-genome-download-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "5f1dd66e6a33e0b598d63597087ed534", "sha256": "0924dba3a7c92dbacbb987574908f4da7bdaf2a0d8f707aa163c0bb7d94bc2f9" }, "downloads": -1, "filename": "ncbi_genome_download-0.2.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5f1dd66e6a33e0b598d63597087ed534", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15219, "upload_time": "2017-06-27T10:56:15", "url": "https://files.pythonhosted.org/packages/0a/d0/35fb8c0520842a0b6997075e937a075eb1b45a7497208972270f9f8ea810/ncbi_genome_download-0.2.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "94b7b6ead480815a7b99878916a5da0b", "sha256": "c644277026ff76380ecd9e4010217e500ba33b9a00b117777c996c70b7a85836" }, "downloads": -1, "filename": "ncbi-genome-download-0.2.4.tar.gz", "has_sig": false, "md5_digest": "94b7b6ead480815a7b99878916a5da0b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17056, "upload_time": "2017-06-27T10:56:16", "url": "https://files.pythonhosted.org/packages/b0/65/4ffd1c98ff6d164db3acf9c54e596ea86c887145088ed869b6369bbefee1/ncbi-genome-download-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "6ee62b130d3384c268ec9386451a4c56", "sha256": "bc42995be30cfd0e47ce85e86331b512e1cbeb2bdbec02419c0866bd597f2e98" }, "downloads": -1, "filename": "ncbi_genome_download-0.2.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6ee62b130d3384c268ec9386451a4c56", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15530, "upload_time": "2017-08-23T09:17:20", "url": "https://files.pythonhosted.org/packages/06/21/6d18e8f5d2ec3b5dcd4c0bdc754a1fc67977864e3cfa28c0bb6fb8a8a3bc/ncbi_genome_download-0.2.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "127909bdbb7146fb232a08ddaf8fd885", "sha256": "800d9ff5f8369cb3ff609362094e2cc53e4ec162a327da4e0d3ec121de62f219" }, "downloads": -1, "filename": "ncbi-genome-download-0.2.5.tar.gz", "has_sig": false, "md5_digest": "127909bdbb7146fb232a08ddaf8fd885", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17397, "upload_time": "2017-08-23T09:17:23", "url": "https://files.pythonhosted.org/packages/5c/da/f85304e614b04b8b832599f1383d66724c995641203059f9792d312e2ed4/ncbi-genome-download-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "19210d0a2da4ae3589c8af5d4c0abb6c", "sha256": "0c6a1db0955f1d4f8501a5056f3650d3a571368bfbb161ce2ee7fdcf9dbe0e15" }, "downloads": -1, "filename": "ncbi_genome_download-0.2.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "19210d0a2da4ae3589c8af5d4c0abb6c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18315, "upload_time": "2018-03-09T12:45:06", "url": "https://files.pythonhosted.org/packages/4f/b7/4ee9eac5be4405a33860d71fd668f7a1b88f1c5e24a85bd8297fbd909565/ncbi_genome_download-0.2.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7cab4ad236e514c464c14c7d94b9afc5", "sha256": "5a532435ea5f68f28ef7e21ca75d349edf5eac3f25ca44378cd311338c8b79c5" }, "downloads": -1, "filename": "ncbi-genome-download-0.2.6.tar.gz", "has_sig": false, "md5_digest": "7cab4ad236e514c464c14c7d94b9afc5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4431046, "upload_time": "2018-03-09T12:45:08", "url": "https://files.pythonhosted.org/packages/e5/e3/91cf5b01e3ef093768ffe3445a08e358f7c4438d3a5d395e40c5e6cea3b2/ncbi-genome-download-0.2.6.tar.gz" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "8c814cc16cbc31233f0fc8c30836fd9f", "sha256": "38369725d8a7837589914ba63492abce17f07216442867b4c65d6d1893f6fad2" }, "downloads": -1, "filename": "ncbi_genome_download-0.2.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8c814cc16cbc31233f0fc8c30836fd9f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 16527, "upload_time": "2018-07-13T10:09:09", "url": "https://files.pythonhosted.org/packages/7d/5c/034f547ac39da96713c278dd49b3128dd7a52f1609d2d25bff8ac0bf7894/ncbi_genome_download-0.2.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "416cf570f41af19b255462136a52c4b7", "sha256": "5c46bf0fd99ec7e9dde6cee8f833c2e4ced8c67190353282a9640986020196b2" }, "downloads": -1, "filename": "ncbi-genome-download-0.2.7.tar.gz", "has_sig": false, "md5_digest": "416cf570f41af19b255462136a52c4b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4525376, "upload_time": "2018-07-13T10:09:12", "url": "https://files.pythonhosted.org/packages/f9/5a/7ee64ed094a2520e4597cfaf4550603a7805d4cf87f65861dc13a2f29b63/ncbi-genome-download-0.2.7.tar.gz" } ], "0.2.8": [ { "comment_text": "", "digests": { "md5": "a63409f3c3880291aa36c04c3c34c573", "sha256": "cc68e0a06bfb746c5279d54a02c98b9519fb47029ccd6cd159f5941cc747e900" }, "downloads": -1, "filename": "ncbi_genome_download-0.2.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a63409f3c3880291aa36c04c3c34c573", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 16637, "upload_time": "2018-12-25T11:47:55", "url": "https://files.pythonhosted.org/packages/7e/71/e285dd9fec6d08e42e949853655fbe7c5b599ff5873a9c52e1b01fdac20d/ncbi_genome_download-0.2.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f37f9ef2e06bab3e42883a19be673a62", "sha256": "ccb58624e66fc906d10c7e457c28d15a6a203ede8cec5536a5ffd65d049fd512" }, "downloads": -1, "filename": "ncbi-genome-download-0.2.8.tar.gz", "has_sig": false, "md5_digest": "f37f9ef2e06bab3e42883a19be673a62", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21930, "upload_time": "2018-12-25T11:47:58", "url": "https://files.pythonhosted.org/packages/c6/36/337672ee8033de4fcd308058f69ae4db05481d3a6ed520ea46cbdb196036/ncbi-genome-download-0.2.8.tar.gz" } ], "0.2.9": [ { "comment_text": "", "digests": { "md5": "852ba332e14da501e9f3c99fc21b0b26", "sha256": "4adcb8de646f63dd0aa0357b2eeab164bf2bb92b02787d40dadce49f2ab4cc42" }, "downloads": -1, "filename": "ncbi_genome_download-0.2.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "852ba332e14da501e9f3c99fc21b0b26", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17302, "upload_time": "2019-01-23T01:06:01", "url": "https://files.pythonhosted.org/packages/10/90/1f60a3c9d76bae7568cec383c629000f9f30c53120d14c067b31b26460cb/ncbi_genome_download-0.2.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2e43612d8a219ec4fde6cc7e26afb61c", "sha256": "ecfe7df476b6e0929274a76056c7c8846a39d777516ddb179c8e6b404e3e4187" }, "downloads": -1, "filename": "ncbi-genome-download-0.2.9.tar.gz", "has_sig": false, "md5_digest": "2e43612d8a219ec4fde6cc7e26afb61c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22577, "upload_time": "2019-01-23T01:06:03", "url": "https://files.pythonhosted.org/packages/78/77/5edc9d9aafc9c2156f845b615224cd56697b08643d6db1e7cbf0a23a3bd6/ncbi-genome-download-0.2.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "9efd9cd2550822841f230a45c8c7c003", "sha256": "bd2017430b62a4f43be93c900c68b782ad4a85fe7a687ef746c804820a1fe2e0" }, "downloads": -1, "filename": "ncbi_genome_download-0.2.11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9efd9cd2550822841f230a45c8c7c003", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17825, "upload_time": "2019-09-02T11:56:23", "url": "https://files.pythonhosted.org/packages/b9/59/83a602868039e10a061e9ecc0539114e8c59f16be1779f458c5b5c2e755d/ncbi_genome_download-0.2.11-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7c30f976179938c0d9c8902484ed2e4f", "sha256": "894420126a2e7ef74d977618e4c31b24a43bd98c6aeb3431d2dfdd5d3dbd72c6" }, "downloads": -1, "filename": "ncbi-genome-download-0.2.11.tar.gz", "has_sig": false, "md5_digest": "7c30f976179938c0d9c8902484ed2e4f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23699, "upload_time": "2019-09-02T11:56:25", "url": "https://files.pythonhosted.org/packages/5c/04/fb79d08ed253f52ca939d214e05280b7f7aa5534ac810e5cf59d6d20ce5e/ncbi-genome-download-0.2.11.tar.gz" } ] }