{ "info": { "author": "Naomi Most", "author_email": "naomi@nthmost.com", "bugtrack_url": null, "classifiers": [], "description": "=======\nMetapub\n=======\n\nMetapub is a Python library that provides python objects fetched via eutils \nthat represent papers and concepts found within the NLM.\n\nThese objects abstract some interactions with pubmed, and intends to \nencompass as many types of database lookups and summaries as can be \nprovided via Eutils / Entrez.\n\nCHANGES! NEW in 0.5:\n\n* NCBI_API_KEY supported as environment variable. Now you can send up to 10 queries per second to NCBI!\n* CrossRef API overhaul. CrossRefFetcher objects source from newest Crossref API!\n* CrossRefWork object made to parallel PubMedArticle object.\n* Logic of building citations is now in citation.py and abstracted for multiple uses.\n* Python3 support only! Python2 stuff completely ripped out!\n* Widespread use of Logging so you can see what's going on under the hood.\n* SUPER NEW! Command line utilities -- see Getting Started below.\n\nHELP NEEDED WITH:\n\n* Logging more consistently -- if you have a logging \"philosophy\" I'd love to hear from you.\n* Test coverage -- especially clever testing strategies to handle data that change all the time.\n* Getting better at following Semantic Versioning (https://semver.org/)\n\nEmail inquiries to the maintainer address in this package. Or just submit a pull request.\n\nGetting Started\n===============\n\nMetapub is most easily installed using pip. It relies entirely on the arcane magic of classic Python setuptools::\n\n pip install metapub\n\nWhen the package is installed, you'll have a few command line utilities available to you::\n\n convert pmid2doi \n convert doi2pmid \n convert bookid2pmid \n pubmed_article \n\nAll of these utilities contain their own help screens, by which you will be able to see options and usage.\n\nHere's an example::\n\n convert pmid2doi 1000 -a -w \n\nOutput::\n\n PMID: 1000\n DOI: 10.1042/bj1490739\n\n Wootton JC; Taylor JG; Jackson AA; Chambers GK; Fincham JR. The amino acid sequence of Neurospora NADP-specific glutamate dehydrogenase. The tryptic peptides.. Biochem. J.. 1975. 149(3):739-48\n Wootton. \"The amino acid sequence ofNeurosporaNADP-specific glutamate dehydrogenase. The tryptic peptides\" Biochemical Journal. 1975. 149(3):739-748\n\n\nHere's another example, converting an NCBI Book ID to its PMID (if it has one):\n\n`convert bookid2pmid NBK201366`\n\nOutput::\n\n BookID: NBK201366\n PMID: 24830047\n\n\n\nPubMedArticle / PubMedFetcher\n=============================\n\nFirst, a note about the NCBI_API_KEY... You'll want to grab an API key if you're doing more than a few \nrequests per minute over here on the NCBI website: https://ncbiinsights.ncbi.nlm.nih.gov/2017/11/02/new-api-keys-for-the-e-utilities/\n\nTo load the API_KEY, do the following on the command line, or set this environment variable\nin your deployment script of choice:\n\n`export NCBI_API_KEY=\"Your_key_here\"`\n\nYou don't need to use an API Key, but without it you are limited to 3 queries per second.\n\nNow, on to PubMedFetcher basic usage::\n\n fetch = PubMedFetcher()\n article = fetch.article_by_pmid('123456')\n print(article.title)\n print(article.journal, article.year, article.volume, article.issue)\n print(article.authors)\n print(article.citation)\n\n\nPubMedFetcher uses an SQLite cacheing engine (provided through eutils), which by \ndefault places a file in your user directory. E.g. the author's cache directory\npath would be */home/nthmost/.cache/eutils-cache.db*\n\nThis cache file can grow quite large over time. Deleting the cache file is safe\nand can also be regarded as the way to \"reset\" the cache.\n\nThe *cachedir* keyword argument can be supplied to PubMedFetcher as a way to specify\nwhere the cache file will reside. For example::\n\n fetch = PubMedFetcher(cachedir='/path/to/cachedir')\n\nUser directory expansion also works:\n\n fetch = PubMedFetcher(cachedir='~/.othercachedir')\n\nThe cachedir will be created for you if it doesn't already exist, assuming the user \naccount you're running metapub under has permissions to do so.\n\nPubMedArticle Lookup Methods\n----------------------------\n\nThe following methods return a PubMedArticle object (or raise InvalidPMID if NCBI lookup fails).\n\n*article_by_pmid*\n\n (Attempt to) fetch an article by supplying its pubmed ID (both integer and string accepted).\n\n*article_by_doi* \n\n (Attempt to) fetch an article by looking up the DOI first.\n\n*article_by_pmcid* \n \n Fetch an article by looking up the PMCID first. Both integer and string accepted.\n\n\nPubmed ID List Methods\n----------------------\n\nThe following methods return a list of pubmed IDs (if found) or an empty list (if None).\n\n*pmids_from_citation*\n\n Produces a list of possible PMIDs for the submitted\n citation, where the citation is submitted as a collection of keyword\n arguments. At least 3 of the 5, preferably 4 or 5 for best results,\n must be included::\n\n aulast or author_last_fm1\n year\n volume\n first_page or spage\n journal or jtitle\n\n Use NLM Title Abbreviation (aka ISO Abbreviation) journal strings whenever possible.\n\n\n*pmids_for_query*\n\n Returns list of pmids for given freeform query string plus keyword arguments.\n \n All Pubmed Advanced Query tokens are supported. \n\n See [NCBI Search Field Descriptions and Tags](http://www.ncbi.nlm.nih.gov/books/NBK3827/)\n\n\n*pmids_for_clinical_query*\n\n Composes a \"Clinical Query\" as on this page: (http://www.ncbi.nlm.nih.gov/pubmed/clinical/)\n\n Supply a \"category\" (required) and an optimization (\"broad\" or \"narrow\") for this function.\n Available categories:\n\n * therapy\n * diagnosis\n * etiology\n * prognosis\n * prediction\n\n\n All keyword arguments for PubMedFetcher.pmids_for_query available.\n\n\n*pmids_for_medical_genetics_query*\n\n Composes a \"Medical Genetics Query\" as described here: (http://www.ncbi.nlm.nih.gov/books/NBK3827/#pubmedhelp.Medical_Genetics_Search_Filte)\n\n Supply a \"category\" (required) and an optimization (\"broad\" or \"narrow\") for this function.\n Available categories:\n\n * therapy\n * diagnosis\n * etiology\n * prognosis\n * prediction\n\n\n All keyword arguments for PubMedFetcher.pmids_for_query available.\n\n\nmetapub.pubmedcentral.* \n-----------------------\n\nThe PubMedCentral functions are a loose collection of conversion \nmethods for academic publishing IDs, allowing conversion (where possible)\nbetween the following ID types::\n\n doi (Digital object identifier)\n pmid (PubMed ID)\n pmcid (Pubmed Central ID (including versioned document ID)\n\nThe following methods are supplied, returning a string (if found) or None::\n\n get_pmid_for_otherid(string)\n get_doi_for_otherid(string)\n get_pmcid_for_otherid(string)\n\nAs implied by the function names, you can supply any valid ID type (\"otherid\")\nto acquire the desired ID type.\n\n\n\nMedGenConcept / MedGenFetcher\n=============================\n\nThe MedGen (medical genetics) database is a clinical dictionary linking medical concepts across multiple medical\nontologies and dictionaries such as OMIM and SNOMED.\n\nBasic usage::\n\n from metapub import MedGenFetcher\n\n fetch = MedGenFetcher()\n\n concept = fetch.concept_by_uid('336867')\n print(concept.name)\n print(concept.description)\n print(concept.associated_genes)\n print(concept.modes_of_inheritance)\n print(concept.OMIM)\n print(concept.synonyms)\n\n\nClinVarVariation / ClinVarFetcher\n=================================\n\nThe ClinVar database contains information submitted by genetic researchers, labs, and testing companies around the world.\n\nInformation queryable using the ClinVarFetcher currently includes searching for the ID of a variant (\"Variation\") in the \ndatabase using an HGVS string and retrieving the Variant Summmary using a variation ID or HGVS string.\n\nSince Pubmed citations by Variation ID are also available by a cross-query between ClinVar and Pubmed, ClinVarFetcher\nallows retrieving PMIDs for given HGVS string.\n\nBasic usage::\n\n clinvar = ClinVarFetcher()\n cv = clinvar.variation_by_hgvs('NM_000249.3:c.1958T>G')\n print(cv.variation_id)\n print(cv.variation_name)\n print(cv.genes)\n print(cv.hgvs)\n print(cv.molecular_consequences)\n\n pubmed_citations = clinvar.pmids_for_hgvs('NM_000249.3:c.1958T>G')\n print(pubmed_citations)\n\n\nCrossRefFetcher\n===============\n\nThe CrossRefFetcher object provides an object layer into search.crossref.org's API.\nSee http://search.crossref.org\n\nCrossRef is a service that excels at resolving DOIs into article citation details. It can\nalso be used to resolve a DOI /from/ article citation details.\n\nOur interface to Crossref comes through the neat and clean habenero library by @sckott.\n\nIn metapub, the CrossRefFetcher object contains convenience methods into the crossref.works()\nquery that allows us to abstract away a lot of the string-handshaking between PubMedArticles\nand CrossRef and just get what we need as quickly and accurately as possible.\n\n\nBasic usage::\n\n CR = CrossRefFetcher() # starts the query cache engine\n work = CR.article_by_title(\"Some great academic work of pure genius no doubt.\", params)\n\n if work:\n print(work)\n\n\nIn the above example, we just had a title. Sometimes that's good enough to get a result, \nand sometimes it's not. The above function will return the top result off the list without\na lot of introspection.\n\nThe next method, on the other hand, performs some fancy Levenshtein distance calculation and\nre-querying with different combos of parameters in order to drill down to a really precise \nresult.\n\nExample starting from a known pubmed ID::\n\n pma = PubMedFetcher().article_by_pmid(known_pmid)\n work = CR.article_by_pma(pma)\n\nIMPORTANT NOTE\n\nIn this minor version (0.5) of Metapub there is no CrossRefFetcher cache. \nThis feature is coming back very ASAP.\n\n\nFindIt\n------\n\nLooking for an article PDF? Trying to gather a large corpus of research? \n\nThe FindIt object was designed to be able to locate the direct urls of as many different\narticles from as many different publishers of PubMed content as possible.\n\nAny article that is Open Access, whether it is in PubmedCentral or not, can potentially\nbe \"FindIt-able\". Usage is simple::\n\n from metapub import FindIt\n src = FindIt('18381613')\n print(src.url)\n\nYou can start FindIt from a DOI instead of a PMID by instantiating with FindIt(doi='10.1234/some.doi'). \n\nIf FindIt couldn't get a URL, you can take a look at the \"reason\" attribute to find out why. \nFor example::\n\n src = FindIt('1234567')\n if src.url is None: print(src.reason) \n\nThe FindIt object is cached (keyed to PMID), so while initialization the first time around \nfor a given PMID or DOI may take a few seconds, the second time this information is requested\nit will take far less time.\n\nIf you see a FindIt \"reason\" that starts with NOFORMAT, this is a great place to contribute\nsome help to metapub! Feel free to dive in and submit a pull request, or contact the author\n(naomi@nthmost.com) for advice on how to fill in these gaps.\n\n\nUrlReverse\n----------\n\nStarting with a URL pointing to the abstract, pdf, or online fulltext of an article, UrlReverse\ncan \"reverse\" the DOI and/or the PubMed ID (pmid) of the article (assuming it can be found in\nPubMed).\n\nThe UrlReverse object provides an interface to the urlreverse logic, and it attributes hold \nstate for all of the information gathered and steps used to gather that information. \n\nUsage is very similar to FindIt::\n\n from metapub import UrlReverse\n urlrev = UrlReverse('http://onlinelibrary.wiley.com/doi/10.1002/humu.20708/pdf')\n print(urlrev.pmid)\n print(urlrev.doi)\n print(urlrev.steps)\n\nUrlReverse is cached (keyed to URL); by default its cache db can be found in \n~/.cache/urlreverse-cache.db\n\nAs of metapub 0.4.3, there is no mechanism to have an item in cache expire. This is considered\na deficiency and will be remedied in a future version.\n\nThis is the newest feature in metapub (as of 0.4.2a0) and there is still much work to be done.\nThe world of biomedical literature URLs is fraught with inconsistencies and very weird URL\nformats. UrlReverse could really benefit from being able to parse supplement URLs, for example.\n\nCollaboration and contributions heartily encouraged.\n\n\nMiscellaneous Utilities\n-----------------------\n\nCurrently underdocumented utilities that you might find useful.\n\nIn metapub.utils:\n\n * *asciify* (nuke all the unicode from orbit; it's the only way to be sure)\n * *parameterize* (make strings suitable for submission to GET-based query service)\n * *deparameterize* (somewhat-undo parameterization in string)\n * *remove_html_markup* (remove html and xml tags from text. preserves HTML entities like &)\n * *hostname_of* (returns hostname part of URL, e.g. http://blood.oxfordjournals.org/stuff ==> blood.oxfordjournals.org)\n * *rootdomain_of* (returns the root domain of hostname of supplied URL, e.g. oxfordjournals.org)\n\n\nIn metapub.text_mining:\n\n * *find_doi_in_string* (returns the first seen DOI in the input string)\n * *findall_dois_in_text* (returns all seen DOIs in input string)\n * *pick_pmid* (return longest numerical string from text (string) as the pmid)\n\n\nIn metapub.convert:\n\n * *PubMedArticle2doi* (uses CrossRef to find a DOI for given PubMedArticle object.)\n * *pmid2doi* (returns first found doi for pubmed ID \"by any means necessary.)\n * *doi2pmid* (uses CrossRef and eutils to return a PMID for given DOI if possible.)\n\n\nIn metapub.cite:\n\n * *citation* (constructs a research reference grade citation string from keyword arguments.)\n * *article* (interface to citation; formats as article.)\n * *book* (interface to citation; formats as book, e.g. GeneReviews)\n\n\n\n\nMore Information\n----------------\n\nDigital Identifiers of Scientific Literature: what they are, when they're \nused, and what they look like.\n\nhttp://www.biosciencewriters.com/Digital-identifiers-of-scientific-literature-PMID-PMCID-NIHMS-DOI-and-how-to-use-them.aspx\n\n\nAbout, and a Disclaimer\n-----------------------\n\nMetapub relies on the very neat eutils package created by Reece\nHart, which you can check out here:\n\nhttp://bitbucket.org/biocommons/eutils\n\nMetapub has been in development since November 15, 2014, and has come quite a long\nway in a short time. Metapub has been deployed in production at many bioinformatics \nfacilities (please tell me your story if you are among them!).\n\nFeel free to use the library with confidence that each released version is well tested \nand battle-hardened from extensive use, but until (say) version 0.5, don't expect \ntotal consistency between versions.\n\nYMMV, At your own risk, etc. Please do report bugs and bring your comments and \nsuggestions to the bitbucket home for metapub at:\n\nhttps://bitbucket.org/metapub/metapub\n\n--Naomi Most (@nthmost)\n\n\nAbout Python 2 and Python 3 Support\n-----------------------------------\n*Alert*: Metapub supports Python 3.x only from version 0.5.x onwards.\n\nThe LAST version of metapub to support Python 2.7 was 0.4.3.6 (2017)", "description_content_type": "text/x-rst", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://bitbucket.org/metapub/metapub", "keywords": "", "license": "Apache 2.0", "maintainer": "Naomi Most", "maintainer_email": "naomi@nthmost.com", "name": "metapub", "package_url": "https://pypi.org/project/metapub/", "platform": "", "project_url": "https://pypi.org/project/metapub/", "project_urls": { "Homepage": "https://bitbucket.org/metapub/metapub" }, "release_url": "https://pypi.org/project/metapub/0.5.3/", "requires_dist": null, "requires_python": "", "summary": "Pubmed / NCBI / eutils interaction library, handling the metadata of pubmed papers.", "version": "0.5.3" }, "last_serial": 5798021, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "61e1fb00c813ca37e1ad488c242daf04", "sha256": "ed9506a72e4558b28d2e6f5813ea1145bd075c1db85bcc32e3e4b114f0000bcd" }, "downloads": -1, "filename": "metapub-0.0.1.tar.gz", "has_sig": false, "md5_digest": "61e1fb00c813ca37e1ad488c242daf04", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3731, "upload_time": "2014-11-11T23:10:18", "url": "https://files.pythonhosted.org/packages/33/57/2ff6db3bf4b88c0f681cf056bc8e9f406023eb4ccce1bd33cb20deeb1e55/metapub-0.0.1.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "8f2935b0ba75efdc283a61c8d93c8de4", "sha256": "e120c7e0d8e0f5f72bde098081cb7e792aa6482765babe027dc7144d9f0b9ee1" }, "downloads": -1, "filename": "metapub-0.0.2.tar.gz", "has_sig": false, "md5_digest": "8f2935b0ba75efdc283a61c8d93c8de4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3749, "upload_time": "2014-11-11T23:29:35", "url": "https://files.pythonhosted.org/packages/cf/7e/b341f86ce5b5f0ba7338c79986d9e9aa2b06210c9a5a7f8fcf998adb40de/metapub-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "f4079f5d370d2bb51d6da19279a0a94e", "sha256": "9da4bdf3209c09ac8697e72ada2c2998a943cc2013550ba830d93231370541cb" }, "downloads": -1, "filename": "metapub-0.0.3.tar.gz", "has_sig": false, "md5_digest": "f4079f5d370d2bb51d6da19279a0a94e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7531, "upload_time": "2014-11-25T18:42:25", "url": "https://files.pythonhosted.org/packages/52/30/6361882d6a2a65eca73027d073f5fb5b1aa7129074a47a760155dccc69c9/metapub-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "638c7bcd5a8b53be91c6d7189bfb72e6", "sha256": "47cbe8ddb30572f571c17d3ce8decabcfef331fc429e22479632342886080f22" }, "downloads": -1, "filename": "metapub-0.0.4.tar.gz", "has_sig": false, "md5_digest": "638c7bcd5a8b53be91c6d7189bfb72e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7720, "upload_time": "2014-11-25T19:55:19", "url": "https://files.pythonhosted.org/packages/46/14/70f5bfa18664897abbafb22773f26096dd5865b5d3b013d22213e95d5464/metapub-0.0.4.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "5c41d9409452094c2a6d77ee6a735195", "sha256": "a0f4815e1efbd90d5ed371270bff0d7aaaf1e4fea36d8e85b1f34bf26a378df8" }, "downloads": -1, "filename": "metapub-0.0.5.tar.gz", "has_sig": false, "md5_digest": "5c41d9409452094c2a6d77ee6a735195", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7734, "upload_time": "2014-11-26T01:46:37", "url": "https://files.pythonhosted.org/packages/6f/b2/4152527034b7b615d4cc578af22c0fa4402125c216745335f03be57cf7b1/metapub-0.0.5.tar.gz" } ], "0.0.5.1": [ { "comment_text": "", "digests": { "md5": "f4d6fd8158cf9c0dc1ad06fdf3b9f0f6", "sha256": "1d53a09343580ef652477d19aa6ada90220d8a03b3c548cf3dc2c23f006fa394" }, "downloads": -1, "filename": "metapub-0.0.5.1.tar.gz", "has_sig": false, "md5_digest": "f4d6fd8158cf9c0dc1ad06fdf3b9f0f6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7756, "upload_time": "2014-11-26T02:25:06", "url": "https://files.pythonhosted.org/packages/39/8e/a3644995508769abab52c1893c835e99a29a5988a30fa56dbb330594fac3/metapub-0.0.5.1.tar.gz" } ], "0.0.5.3": [ { "comment_text": "", "digests": { "md5": "2362472101c93eaa21cf8ba3129dd7c7", "sha256": "737f71f90b2f9e69690e22474d68858b6fe83f156f81df0e00045e11fd85d29d" }, "downloads": -1, "filename": "metapub-0.0.5.3.tar.gz", "has_sig": false, "md5_digest": "2362472101c93eaa21cf8ba3129dd7c7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7885, "upload_time": "2014-11-27T19:22:12", "url": "https://files.pythonhosted.org/packages/c9/63/f134b81ec1663c19e785a2b247e9ff8951471a149d622da490fb8e66f846/metapub-0.0.5.3.tar.gz" } ], "0.0.5.4": [ { "comment_text": "", "digests": { "md5": "a9626f9bcd5f9002c1968051f4a875d8", "sha256": "e4f1d82c5236f74b6c0890c12570f76bbc0e54d61a0137583d0ac8df3f3b9efc" }, "downloads": -1, "filename": "metapub-0.0.5.4.tar.gz", "has_sig": false, "md5_digest": "a9626f9bcd5f9002c1968051f4a875d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7910, "upload_time": "2014-11-30T23:14:46", "url": "https://files.pythonhosted.org/packages/75/ed/6f880c49eb0e56ecc69497fcc4cc12e52ac9a4ce96f58971a830751791df/metapub-0.0.5.4.tar.gz" } ], "0.0.5.5": [ { "comment_text": "", "digests": { "md5": "9f457f57bb093a3b8009fb96bef0736e", "sha256": "3f421271dc1a754f117bcfd24b2d184385e217b36b4e97875c744c0610d1de8c" }, "downloads": -1, "filename": "metapub-0.0.5.5.tar.gz", "has_sig": false, "md5_digest": "9f457f57bb093a3b8009fb96bef0736e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8144, "upload_time": "2014-12-01T01:02:07", "url": "https://files.pythonhosted.org/packages/19/3b/965c15594b736a78476c7752bc02b125493acb36bb6ba6979703c9ed291c/metapub-0.0.5.5.tar.gz" } ], "0.0.5.6": [ { "comment_text": "", "digests": { "md5": "13649131870f98ea460e854563b0d12c", "sha256": "70024391aeb38a775d2f5c8a655f103f0d6dad2af00ddb5d222a3249ea891569" }, "downloads": -1, "filename": "metapub-0.0.5.6.tar.gz", "has_sig": false, "md5_digest": "13649131870f98ea460e854563b0d12c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8159, "upload_time": "2014-12-01T23:35:28", "url": "https://files.pythonhosted.org/packages/64/4b/5dff64fea3719cf1b6ea6ff0d9e1c8b532e0003c8b893ca8b407a5a5166e/metapub-0.0.5.6.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "c5882bfb76293e1c8a56d0f51da0740b", "sha256": "2ed61747a464d8ca8ed18c9eeb9a21724406a5aaa1eb31c127eaedd90fb26823" }, "downloads": -1, "filename": "metapub-0.0.6.tar.gz", "has_sig": false, "md5_digest": "c5882bfb76293e1c8a56d0f51da0740b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8337, "upload_time": "2014-12-04T23:50:22", "url": "https://files.pythonhosted.org/packages/e5/2b/ff96ee09539f5d0dfd9229448e8027d86191509f8534b01ecf6a7f11b57c/metapub-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "19ec955c93f84c1c8931f392d6adbc27", "sha256": "663a44e40b1e8ccdae8d119c937508e4a9a6bde125ae938b042fda068ba69099" }, "downloads": -1, "filename": "metapub-0.0.7.tar.gz", "has_sig": false, "md5_digest": "19ec955c93f84c1c8931f392d6adbc27", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8451, "upload_time": "2014-12-19T18:32:32", "url": "https://files.pythonhosted.org/packages/5f/f3/2da3eb33632808936761368405d5eb204665477bd21a9303fc5b57c176ce/metapub-0.0.7.tar.gz" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "ff9a860b693eaf1b23380a0fc526a80b", "sha256": "545825ab34ab860609035cf7196e4c89b0334a329b619fed816e9fd52db39478" }, "downloads": -1, "filename": "metapub-0.0.8.tar.gz", "has_sig": false, "md5_digest": "ff9a860b693eaf1b23380a0fc526a80b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8962, "upload_time": "2014-12-27T08:10:54", "url": "https://files.pythonhosted.org/packages/12/e1/b9b62cff5df73b7e16b8edc751885c0d78e305299730d1a97ecad7ebbbcf/metapub-0.0.8.tar.gz" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "7432ee9d1627d78e1787550427d38d52", "sha256": "d69f7cd632a5c349746f3e71cab429b65f4a7914f62a4db9bb729ea739e6d64f" }, "downloads": -1, "filename": "metapub-0.1.0.tar.gz", "has_sig": false, "md5_digest": "7432ee9d1627d78e1787550427d38d52", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17154, "upload_time": "2015-01-19T09:07:43", "url": "https://files.pythonhosted.org/packages/c9/a1/b41ffc09abeef1045c6df5976465faf76c4ddaca1310dd0f86e8134066b6/metapub-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "97584dbfedc7c69142d2abfe77af1be3", "sha256": "b4aba2d6a8f3b075b54e2aa4f7043ac4991fa49da66e0924f9e2e51279ce0724" }, "downloads": -1, "filename": "metapub-0.1.1.tar.gz", "has_sig": false, "md5_digest": "97584dbfedc7c69142d2abfe77af1be3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17155, "upload_time": "2015-01-21T07:27:31", "url": "https://files.pythonhosted.org/packages/4c/88/10149dced528a15619e1206e0cc1448385046adabbc505870914d23be419/metapub-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "58518e80a9c7b09df22fb4e712d581fc", "sha256": "8cad70dfa32a694caa13570d4628ed24081b4a8f8818dc0210ac2ab1446ec8e3" }, "downloads": -1, "filename": "metapub-0.1.2.tar.gz", "has_sig": false, "md5_digest": "58518e80a9c7b09df22fb4e712d581fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17279, "upload_time": "2015-01-22T22:35:49", "url": "https://files.pythonhosted.org/packages/ba/21/21164d1d8a19c55a5d354a4308ef71806abc4bd32ffee6637f86381b34d6/metapub-0.1.2.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "110c2212e0f76c4dd45a26c1883ffedc", "sha256": "4be117ae9bab7bac1343202658dffe2a21fdd23f3196afa7ff4a41bdfa85cc79" }, "downloads": -1, "filename": "metapub-0.2.2.tar.gz", "has_sig": false, "md5_digest": "110c2212e0f76c4dd45a26c1883ffedc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21435, "upload_time": "2015-01-24T01:36:50", "url": "https://files.pythonhosted.org/packages/ee/50/0329e48dad23f7ded5aa92ae399bd92081bfec38dbe251a56a078dca6e3a/metapub-0.2.2.tar.gz" } ], "0.2.2.1": [ { "comment_text": "", "digests": { "md5": "c530ec9c7f6fdeab6b3b2943deca6e83", "sha256": "562e5ad9f53e4a008c8f5ab87f7387e2fd3a80cefe39e648b25bdf61f4b58d0d" }, "downloads": -1, "filename": "metapub-0.2.2.1.tar.gz", "has_sig": false, "md5_digest": "c530ec9c7f6fdeab6b3b2943deca6e83", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22053, "upload_time": "2015-01-24T01:46:03", "url": "https://files.pythonhosted.org/packages/8c/b2/8cd9e66a4ba779b4cb975d9d65af95bfec2d5599d1ca508aa76e7bbb59f7/metapub-0.2.2.1.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "85806fca3255ce8f9fa8a603b3f903de", "sha256": "7d2d16ea73e74d28ee1e288be451b72443f22ecef81e67b0621c4384ef27b8cc" }, "downloads": -1, "filename": "metapub-0.2.3.tar.gz", "has_sig": false, "md5_digest": "85806fca3255ce8f9fa8a603b3f903de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22143, "upload_time": "2015-01-28T00:09:22", "url": "https://files.pythonhosted.org/packages/69/8d/ae37a6405bf488302f9f33859dbf24ec35a0c905d13c6b0f44afb9f80ecd/metapub-0.2.3.tar.gz" } ], "0.2.3.1": [ { "comment_text": "", "digests": { "md5": "49ea637a3d8801faf11ccd344993f15c", "sha256": "f85f8c545b6c6359664f5039672faadfc272bebb9b3ba90be988fdeacbf491dc" }, "downloads": -1, "filename": "metapub-0.2.3.1.tar.gz", "has_sig": false, "md5_digest": "49ea637a3d8801faf11ccd344993f15c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22449, "upload_time": "2015-01-28T00:16:16", "url": "https://files.pythonhosted.org/packages/47/1b/7be2fafb0adfd00e31bc2b542693581fdebbe3e71457062cf6322bccf624/metapub-0.2.3.1.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "aa212b90d0eec37345f68c56e6dad41a", "sha256": "e59f61eda7528c96aa060f9eda7421d80952df3a4ac2522b1e7d257cd3992a63" }, "downloads": -1, "filename": "metapub-0.2.4.tar.gz", "has_sig": false, "md5_digest": "aa212b90d0eec37345f68c56e6dad41a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22500, "upload_time": "2015-01-29T09:39:10", "url": "https://files.pythonhosted.org/packages/4c/95/25f2300bd853c2e1b9ba9c0960c798648450b1d23f7207928b408dcfbbc4/metapub-0.2.4.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "dc52c0697089c056a9370baa6fd619d0", "sha256": "fa0f571fac671a6669ff16833bc9aa9154d2c1a45806fc3ab304d2d3b479a5cc" }, "downloads": -1, "filename": "metapub-0.3.0.tar.gz", "has_sig": false, "md5_digest": "dc52c0697089c056a9370baa6fd619d0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24408, "upload_time": "2015-01-31T08:03:54", "url": "https://files.pythonhosted.org/packages/b9/27/753b671f582dc6920602823423b4d23b26ae8fc5d2d9dfef078b03b70897/metapub-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "7627173c73e4cdd631da0afa8a59878d", "sha256": "ab7fda1b8a08b02ea02af4d3e0c436f919a998574117aa63ca3b1c9b32ed3aa8" }, "downloads": -1, "filename": "metapub-0.3.1.tar.gz", "has_sig": false, "md5_digest": "7627173c73e4cdd631da0afa8a59878d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24466, "upload_time": "2015-01-31T08:45:31", "url": "https://files.pythonhosted.org/packages/7b/77/357f3ef11e311f9549aeefaea701fd426658b4989c608b1f3e801845b08a/metapub-0.3.1.tar.gz" } ], "0.3.10": [ { "comment_text": "", "digests": { "md5": "aa1a68f338eb656627374b4eddc37b84", "sha256": "11d664b591acea3ff69623033a93a1716479fb8165149e24cd10aebbefcb0ab7" }, "downloads": -1, "filename": "metapub-0.3.10.tar.gz", "has_sig": false, "md5_digest": "aa1a68f338eb656627374b4eddc37b84", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43626, "upload_time": "2015-05-27T18:26:42", "url": "https://files.pythonhosted.org/packages/28/a6/cfab1b27145901e6205de7af3ebaf6b27c6b1489b72d1ccdf71e7fb63396/metapub-0.3.10.tar.gz" } ], "0.3.12": [ { "comment_text": "", "digests": { "md5": "5c6ac18e467c7e43f62b71d9bef5536f", "sha256": "d045ce3a67df3161422d3dc723e0a544da8f483fb8e6ba7afcc2d686b9a8892d" }, "downloads": -1, "filename": "metapub-0.3.12.tar.gz", "has_sig": false, "md5_digest": "5c6ac18e467c7e43f62b71d9bef5536f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45235, "upload_time": "2015-06-05T21:52:36", "url": "https://files.pythonhosted.org/packages/4a/d9/d5ac007b4f3acc1a409ccd43cd04ae0aab7202149e9f616cd9b937dffc2f/metapub-0.3.12.tar.gz" } ], "0.3.12.1": [ { "comment_text": "", "digests": { "md5": "2a3e3f146ef65d9a58a2ffa4cdd6cf82", "sha256": "9c6b12750f766e4e55c9071576f92c5486c0dd893b8f708b0f76ce65ad24c1e8" }, "downloads": -1, "filename": "metapub-0.3.12.1.tar.gz", "has_sig": false, "md5_digest": "2a3e3f146ef65d9a58a2ffa4cdd6cf82", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45231, "upload_time": "2015-06-07T06:19:12", "url": "https://files.pythonhosted.org/packages/6f/5c/86d681241ebf563c6ee0c8b9515932addd7a4ca9d07fa1b19c88390a6a80/metapub-0.3.12.1.tar.gz" } ], "0.3.13": [ { "comment_text": "", "digests": { "md5": "41e4929fe139dee89552081ea4c006aa", "sha256": "defd9f3c92f59577d42526193fb234a0eb3e1e125d17a6560ea0683af260d9be" }, "downloads": -1, "filename": "metapub-0.3.13.tar.gz", "has_sig": false, "md5_digest": "41e4929fe139dee89552081ea4c006aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47486, "upload_time": "2015-06-13T05:05:48", "url": "https://files.pythonhosted.org/packages/c0/ff/f745139a036e1d754f53f702474b4144a76419332832bf5cee4c82f4d0e5/metapub-0.3.13.tar.gz" } ], "0.3.13.1": [ { "comment_text": "", "digests": { "md5": "343e48bbdf77d2b5b37eedf5b3f09af1", "sha256": "50e2e6aa871a131753b6707c69583250cbfcb211d1ed0bb727c9528360e7b954" }, "downloads": -1, "filename": "metapub-0.3.13.1.tar.gz", "has_sig": false, "md5_digest": "343e48bbdf77d2b5b37eedf5b3f09af1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47497, "upload_time": "2015-06-13T05:51:56", "url": "https://files.pythonhosted.org/packages/ca/eb/ac9d8f7607353738eb8255c39682729eb10ada60284d1762151035785666/metapub-0.3.13.1.tar.gz" } ], "0.3.13.2": [ { "comment_text": "", "digests": { "md5": "7b1f1b71db714f4074822842048a33a6", "sha256": "381d4acfb04e07a291c9e258c463f48093fb2cee6f750bafff2f9a666ae215e0" }, "downloads": -1, "filename": "metapub-0.3.13.2.tar.gz", "has_sig": false, "md5_digest": "7b1f1b71db714f4074822842048a33a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47650, "upload_time": "2015-06-15T03:24:54", "url": "https://files.pythonhosted.org/packages/c2/a8/cc6e22f8a6de3c3ce033f39b144ffedf42986b720f634b3e557efdc72481/metapub-0.3.13.2.tar.gz" } ], "0.3.13.3": [ { "comment_text": "", "digests": { "md5": "0d3b7ddb450733983de7d7871dd9c161", "sha256": "b793fc2af2f0ef9535890641a2496703ce66de5c773ced69aa35c937c866bc3a" }, "downloads": -1, "filename": "metapub-0.3.13.3.tar.gz", "has_sig": false, "md5_digest": "0d3b7ddb450733983de7d7871dd9c161", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47734, "upload_time": "2015-06-15T05:30:13", "url": "https://files.pythonhosted.org/packages/5f/7a/66f5d2c0177624b04b07b3a42db45d09194dac813a4cc86928d14e717682/metapub-0.3.13.3.tar.gz" } ], "0.3.13.4": [ { "comment_text": "", "digests": { "md5": "b0fdd57171c3f9fc169a24e430027e85", "sha256": "e4a9696c1f643d8444556d02e888538b58569b1bb5454c2fea64c5df3c5d80d0" }, "downloads": -1, "filename": "metapub-0.3.13.4.tar.gz", "has_sig": false, "md5_digest": "b0fdd57171c3f9fc169a24e430027e85", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47936, "upload_time": "2015-06-15T09:07:27", "url": "https://files.pythonhosted.org/packages/65/41/bf18702129e2c4751f9f1bf595bd3703591cbffea2b332a6462c88f9a8fc/metapub-0.3.13.4.tar.gz" } ], "0.3.14": [ { "comment_text": "", "digests": { "md5": "ad9ada1197715d37e20a34718bd1fd15", "sha256": "618637dac07ff9d2a9c9afa9fd2c00fa24c5b1042e73517b44b0ff23316c070b" }, "downloads": -1, "filename": "metapub-0.3.14.tar.gz", "has_sig": false, "md5_digest": "ad9ada1197715d37e20a34718bd1fd15", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48940, "upload_time": "2015-06-22T19:56:33", "url": "https://files.pythonhosted.org/packages/00/07/525037cac3e2d5d5aaac1566200625aba7d141c18a4671e196c9bb5f087c/metapub-0.3.14.tar.gz" } ], "0.3.14.1": [ { "comment_text": "", "digests": { "md5": "8694465c63b33fdc22efa79363fed603", "sha256": "eb410e26d5a989fe6ba8c4be804a4b9c01bc3c82d01d8ba8c59b75eb6de0c5fb" }, "downloads": -1, "filename": "metapub-0.3.14.1.tar.gz", "has_sig": false, "md5_digest": "8694465c63b33fdc22efa79363fed603", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49187, "upload_time": "2015-06-23T06:49:25", "url": "https://files.pythonhosted.org/packages/28/37/616275e40eea0158f80c7795e23992be184992ddf25b91475dd757e5d4b4/metapub-0.3.14.1.tar.gz" } ], "0.3.14.1.1": [ { "comment_text": "", "digests": { "md5": "5f7a97fbf00dc3b4194015344db39057", "sha256": "b5f75cf247591021530ad3c37ba23650f737ade0874dbccc57b5b8047cde9887" }, "downloads": -1, "filename": "metapub-0.3.14.1.1.tar.gz", "has_sig": false, "md5_digest": "5f7a97fbf00dc3b4194015344db39057", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49203, "upload_time": "2015-06-23T06:55:24", "url": "https://files.pythonhosted.org/packages/40/1e/dc6fa947943ce9fed2a767214da0759070b3d6d1901c3afcbbaf915cdc14/metapub-0.3.14.1.1.tar.gz" } ], "0.3.14.1.2": [ { "comment_text": "", "digests": { "md5": "cb713417b7346412e2169d5db0df043f", "sha256": "0cee06b6e7ab6f4c57d681b5fc21f90e4a3f5611d1a8fef5387852d0223c685c" }, "downloads": -1, "filename": "metapub-0.3.14.1.2.tar.gz", "has_sig": false, "md5_digest": "cb713417b7346412e2169d5db0df043f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49219, "upload_time": "2015-06-23T06:58:40", "url": "https://files.pythonhosted.org/packages/b9/ed/2ed99c937876da61e71bdbfcf15ae69b9aa6c13e93e06a25ebbbe1336f6b/metapub-0.3.14.1.2.tar.gz" } ], "0.3.14.2": [ { "comment_text": "", "digests": { "md5": "1f2136cc6d3296bb02b5bd22ffcb7af6", "sha256": "ef94bd62053bf2ec05f502c66b3653677c60c64d9c5f0c97a7235e9f169b4bca" }, "downloads": -1, "filename": "metapub-0.3.14.2.tar.gz", "has_sig": false, "md5_digest": "1f2136cc6d3296bb02b5bd22ffcb7af6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50459, "upload_time": "2015-06-24T21:27:40", "url": "https://files.pythonhosted.org/packages/8a/82/9d6749acb9130ff05dd90983888fcf8f5bf8d1ed7c9337c8af7a07d4eb4d/metapub-0.3.14.2.tar.gz" } ], "0.3.14.3": [ { "comment_text": "", "digests": { "md5": "586dd38d7ddd280224b57c11d932b405", "sha256": "7815a1e37a265d820118f9be4a5713d0b0c9b93b436707bc606e065035a71ca2" }, "downloads": -1, "filename": "metapub-0.3.14.3.tar.gz", "has_sig": false, "md5_digest": "586dd38d7ddd280224b57c11d932b405", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50928, "upload_time": "2015-06-25T23:44:14", "url": "https://files.pythonhosted.org/packages/52/e5/9a376ad7e3ee67ba1b333d6ea3e17afcb20d2c504e41e943d285ae6e1ec0/metapub-0.3.14.3.tar.gz" } ], "0.3.14.3.1": [ { "comment_text": "", "digests": { "md5": "ea8aa6812a83ecfaab9111be9cb6b710", "sha256": "ab4dbe9d26a0c19c902107ba5de1586d42a6c2c422fff7ce6619e7185c3e0f15" }, "downloads": -1, "filename": "metapub-0.3.14.3.1.tar.gz", "has_sig": false, "md5_digest": "ea8aa6812a83ecfaab9111be9cb6b710", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50947, "upload_time": "2015-06-25T23:54:14", "url": "https://files.pythonhosted.org/packages/d2/0e/43125723c38b175004cff4dce2798beaf2d8a4cc053a846e9934c2d88d0d/metapub-0.3.14.3.1.tar.gz" } ], "0.3.14.3.2": [ { "comment_text": "", "digests": { "md5": "375a3d5033f12f9ef41ab66fb3cd4624", "sha256": "25bb6fbbccde83f0c2bee1f0128e2096f10b5de9988e58127e6114aab7c0a050" }, "downloads": -1, "filename": "metapub-0.3.14.3.2.tar.gz", "has_sig": false, "md5_digest": "375a3d5033f12f9ef41ab66fb3cd4624", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50997, "upload_time": "2015-06-27T00:58:55", "url": "https://files.pythonhosted.org/packages/58/c3/95216a1537543488571dba79b8978fce017f5298bc5e32c9a57fc399e297/metapub-0.3.14.3.2.tar.gz" } ], "0.3.14.3.3": [ { "comment_text": "", "digests": { "md5": "8205aba914f20674bd707e8ac971a3d6", "sha256": "bf180de799093a79b04697deda30177a9a4dc6e7d4c0c1ad68f0b1a884381ef9" }, "downloads": -1, "filename": "metapub-0.3.14.3.3.tar.gz", "has_sig": false, "md5_digest": "8205aba914f20674bd707e8ac971a3d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51005, "upload_time": "2015-06-27T01:36:30", "url": "https://files.pythonhosted.org/packages/7b/a3/83c7b49244e582f17ba14802632f9e0c7031d142a49617603201f94a7602/metapub-0.3.14.3.3.tar.gz" } ], "0.3.14.4": [ { "comment_text": "", "digests": { "md5": "f5be626c9d5c081d9fc870a9f6179c20", "sha256": "787b1aacd7e485b393081874e50d0fabd583b874114670c0baa55594fab64902" }, "downloads": -1, "filename": "metapub-0.3.14.4.tar.gz", "has_sig": false, "md5_digest": "f5be626c9d5c081d9fc870a9f6179c20", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51036, "upload_time": "2015-06-27T04:16:55", "url": "https://files.pythonhosted.org/packages/e5/07/5db7a1f836ce4ae98fc22d5a5622a18cacbfee77f573ff14ec51842d2fd4/metapub-0.3.14.4.tar.gz" } ], "0.3.14.5": [ { "comment_text": "", "digests": { "md5": "b70d236ea4f4e3990e5301e954de03ba", "sha256": "25ca16266ee951d2e058bd982de7f594d5b7b9aad4b439b27b926a249fe37951" }, "downloads": -1, "filename": "metapub-0.3.14.5.tar.gz", "has_sig": false, "md5_digest": "b70d236ea4f4e3990e5301e954de03ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51268, "upload_time": "2015-06-27T20:01:12", "url": "https://files.pythonhosted.org/packages/2a/ae/5f9b48d86d5c2668c46bc432379bd67656fc4c0db89c9cd825c7bc3b05ef/metapub-0.3.14.5.tar.gz" } ], "0.3.14.6": [ { "comment_text": "", "digests": { "md5": "672d74883025d1177acfaac8ef0244c4", "sha256": "f69d6471afc14a9568224fb93cc3116e6f9266e443696bc8aa471bc40cd0f382" }, "downloads": -1, "filename": "metapub-0.3.14.6.tar.gz", "has_sig": false, "md5_digest": "672d74883025d1177acfaac8ef0244c4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51788, "upload_time": "2015-06-28T22:31:48", "url": "https://files.pythonhosted.org/packages/79/6f/0888501a260e33bf22517bf267b0eef59dee1c463a337c440cd3e9add049/metapub-0.3.14.6.tar.gz" } ], "0.3.14.7": [ { "comment_text": "", "digests": { "md5": "5769dd0d0cd4e8a74245d9d85976d204", "sha256": "2f0e8c243b104aac396cf716b27794b1c333194672320966b7b0b3a3b16d5244" }, "downloads": -1, "filename": "metapub-0.3.14.7.tar.gz", "has_sig": false, "md5_digest": "5769dd0d0cd4e8a74245d9d85976d204", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51954, "upload_time": "2015-06-29T04:06:37", "url": "https://files.pythonhosted.org/packages/22/00/a6d054889b66013abe60c7fdbf2e6c514a9104b30140571bf4f1c2df3f4e/metapub-0.3.14.7.tar.gz" } ], "0.3.14.8": [ { "comment_text": "", "digests": { "md5": "3698d03df4cb915ad00eb604f6fd8e45", "sha256": "67647f544bedaa7567e16b60bd62f45753fe4d62c957e44a81d5ddcea565aa04" }, "downloads": -1, "filename": "metapub-0.3.14.8.tar.gz", "has_sig": false, "md5_digest": "3698d03df4cb915ad00eb604f6fd8e45", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53672, "upload_time": "2015-06-29T09:13:10", "url": "https://files.pythonhosted.org/packages/1e/5f/ef2c54ec973d25145fcbf15df3ccd2d455e02a889033d6e7077b6f4d1d02/metapub-0.3.14.8.tar.gz" } ], "0.3.15": [ { "comment_text": "", "digests": { "md5": "4c839df51040057d6409024f8283cbc7", "sha256": "bb24daa00e8b0da8f0514fd5a11e4bb0be95f8c308982a1eba3c9dd4fbb673e1" }, "downloads": -1, "filename": "metapub-0.3.15.tar.gz", "has_sig": false, "md5_digest": "4c839df51040057d6409024f8283cbc7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56336, "upload_time": "2015-07-01T23:58:52", "url": "https://files.pythonhosted.org/packages/a3/12/5fac5c4a5365e449279c9aa5e14893ef068ce3dbb60e3e7b34278d93dc2a/metapub-0.3.15.tar.gz" } ], "0.3.15.1": [ { "comment_text": "", "digests": { "md5": "f56def0d9f767a69c7b8a51c53bcdea4", "sha256": "883e223a435c20db2bac4e4ca0e6650a3c7b452437676c8d7f23b28a07a9e603" }, "downloads": -1, "filename": "metapub-0.3.15.1.tar.gz", "has_sig": false, "md5_digest": "f56def0d9f767a69c7b8a51c53bcdea4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56448, "upload_time": "2015-07-02T01:20:52", "url": "https://files.pythonhosted.org/packages/01/a8/526543c2e00a83d6cfd336173ac2bb9c13c7dc97527bf4450180504e4578/metapub-0.3.15.1.tar.gz" } ], "0.3.15.1.1": [ { "comment_text": "", "digests": { "md5": "332b1403b265e60bffa1f0deeeea48b1", "sha256": "854f88b69aa9d2f237d2ddda71bfe975179b0e2221a7a6fca4eb14984cf7e43e" }, "downloads": -1, "filename": "metapub-0.3.15.1.1.tar.gz", "has_sig": false, "md5_digest": "332b1403b265e60bffa1f0deeeea48b1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56467, "upload_time": "2015-07-02T01:26:21", "url": "https://files.pythonhosted.org/packages/39/67/b633465fe64392822007be2ead6e95157b343826d200e03af2d244d1208b/metapub-0.3.15.1.1.tar.gz" } ], "0.3.15.2": [ { "comment_text": "", "digests": { "md5": "4ac860524ea60c1ccf9d5de846df0a84", "sha256": "aa6e3438bccdd12535ee59183f4dcfedaf4686f0eff0b81656aed652e8e6f519" }, "downloads": -1, "filename": "metapub-0.3.15.2.tar.gz", "has_sig": false, "md5_digest": "4ac860524ea60c1ccf9d5de846df0a84", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56479, "upload_time": "2015-07-02T01:36:21", "url": "https://files.pythonhosted.org/packages/10/fe/0afbb2ea7fd0acab36c47301ec2def8bee3b8f2deacd499c8284faf0c6ef/metapub-0.3.15.2.tar.gz" } ], "0.3.15.3": [ { "comment_text": "", "digests": { "md5": "3e8fde42952425bf27d59f4e5106dd27", "sha256": "16675cf4529b73599348b087714c90ff3dd45a39f2771b1586fd7b39df1e7afb" }, "downloads": -1, "filename": "metapub-0.3.15.3.tar.gz", "has_sig": false, "md5_digest": "3e8fde42952425bf27d59f4e5106dd27", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56153, "upload_time": "2015-07-02T23:32:14", "url": "https://files.pythonhosted.org/packages/36/a2/ab0306b5b9cc7242db3bac397fa92f5310ec562f3f1eb601c4b4df78f6e0/metapub-0.3.15.3.tar.gz" } ], "0.3.15.3.1": [ { "comment_text": "", "digests": { "md5": "049fd45b85deee4e70fb6a64235ded8d", "sha256": "1e6b84eb483e49cd950958c2619073f3378bc8b2c7242442e6d3c1156d179985" }, "downloads": -1, "filename": "metapub-0.3.15.3.1.tar.gz", "has_sig": false, "md5_digest": "049fd45b85deee4e70fb6a64235ded8d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56327, "upload_time": "2015-07-03T01:43:56", "url": "https://files.pythonhosted.org/packages/09/8c/288909f5f1990d9f3d49f91376ed226352e526ef9a031e160bc16e0b7945/metapub-0.3.15.3.1.tar.gz" } ], "0.3.15.4": [ { "comment_text": "", "digests": { "md5": "e59371bd921092decb8cd6e4f0cd4cc8", "sha256": "3dc9f8ed198e093e0ee33cc901b51e80be6d84b07f1bda13ffc6815e380bdbe0" }, "downloads": -1, "filename": "metapub-0.3.15.4.tar.gz", "has_sig": false, "md5_digest": "e59371bd921092decb8cd6e4f0cd4cc8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56532, "upload_time": "2015-07-05T03:42:58", "url": "https://files.pythonhosted.org/packages/8d/34/08929331a6ed47224d62cd769721db7d34ce849aa03d6a4676d4d8131756/metapub-0.3.15.4.tar.gz" } ], "0.3.15.4.1": [ { "comment_text": "", "digests": { "md5": "9c1a724fbd4eff292281d62d2e65df71", "sha256": "b682b0e90179084d3c56d6831c886708c39496d9b0e0519a1c0c5264c5dd9e49" }, "downloads": -1, "filename": "metapub-0.3.15.4.1.tar.gz", "has_sig": false, "md5_digest": "9c1a724fbd4eff292281d62d2e65df71", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57441, "upload_time": "2015-07-05T18:10:40", "url": "https://files.pythonhosted.org/packages/57/b2/bd95ebbd4a9c5602b1353941c6e61eba1228bf51edc608e974f82e1b597f/metapub-0.3.15.4.1.tar.gz" } ], "0.3.17": [ { "comment_text": "", "digests": { "md5": "b1f467ed2a2f495a096e69553ac0fcdf", "sha256": "b101109e9f4ff34303dcf3e2cea67b70127edcde854eccc919bd6f8a7c6529e4" }, "downloads": -1, "filename": "metapub-0.3.17.tar.gz", "has_sig": false, "md5_digest": "b1f467ed2a2f495a096e69553ac0fcdf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 76197, "upload_time": "2015-07-16T00:55:05", "url": "https://files.pythonhosted.org/packages/87/51/813582f3dd4950e3fe989653c0ddfc15e531007dbee412e0b5b66a41c67b/metapub-0.3.17.tar.gz" } ], "0.3.17.1": [ { "comment_text": "", "digests": { "md5": "1c52fd7a501ffa715e453e08a0683ac4", "sha256": "eea25f8e35c45baa26c65aa5ca4c9481b5a1de0a79acd02a1290c2553f3b5167" }, "downloads": -1, "filename": "metapub-0.3.17.1.tar.gz", "has_sig": false, "md5_digest": "1c52fd7a501ffa715e453e08a0683ac4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71912, "upload_time": "2015-07-17T03:12:07", "url": "https://files.pythonhosted.org/packages/91/f6/c078e5b2df8e28adec83d6c0d848d74731755799884a7978f144622b5502/metapub-0.3.17.1.tar.gz" } ], "0.3.17.2": [ { "comment_text": "", "digests": { "md5": "d2a8455a52323e82d0f9f5c4af5a6bf2", "sha256": "eb7c01a7901a8c642610713c5f63ce968688cf14e2f94439d5ab2350be8e995f" }, "downloads": -1, "filename": "metapub-0.3.17.2.tar.gz", "has_sig": false, "md5_digest": "d2a8455a52323e82d0f9f5c4af5a6bf2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72115, "upload_time": "2015-08-17T23:51:31", "url": "https://files.pythonhosted.org/packages/4b/71/d4a1d5c11336b2d62257189f620d79bb034e26c965ae1a1a46ba76968798/metapub-0.3.17.2.tar.gz" } ], "0.3.17.3": [ { "comment_text": "", "digests": { "md5": "f86c1b36356d249851aea01525ac21b6", "sha256": "eaa2931483827d9a9845abc36ff59fbc7531cfcf90f9efbec7c010ac8e5f9600" }, "downloads": -1, "filename": "metapub-0.3.17.3.tar.gz", "has_sig": false, "md5_digest": "f86c1b36356d249851aea01525ac21b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72143, "upload_time": "2015-08-21T10:14:40", "url": "https://files.pythonhosted.org/packages/d4/4e/84ba2c6d617a15b3321b37c2b0b8bb12642042053d03372179b397ebfeb6/metapub-0.3.17.3.tar.gz" } ], "0.3.17.5": [ { "comment_text": "", "digests": { "md5": "0555d1958ba4e16bcb577f08b7a8b3aa", "sha256": "148125f2d91467154c5fa0177c128027352da7040cb0906cf87cce4b061c7f7c" }, "downloads": -1, "filename": "metapub-0.3.17.5.tar.gz", "has_sig": false, "md5_digest": "0555d1958ba4e16bcb577f08b7a8b3aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72530, "upload_time": "2015-11-16T08:17:12", "url": "https://files.pythonhosted.org/packages/24/2e/7a48fa6059014427614739008a398f96bc13df1de034011bb268b98baaa7/metapub-0.3.17.5.tar.gz" } ], "0.3.17.6": [ { "comment_text": "", "digests": { "md5": "70e97333c27f5a6a56c3f2631e8909ea", "sha256": "6d3e36d7ccd1aa2282a582520b880ae68c60aab31b15e80fceddeefb5ac3102a" }, "downloads": -1, "filename": "metapub-0.3.17.6.tar.gz", "has_sig": false, "md5_digest": "70e97333c27f5a6a56c3f2631e8909ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72581, "upload_time": "2015-11-18T08:31:09", "url": "https://files.pythonhosted.org/packages/b1/8d/8c4e88d9d1f2b86964b5b9c52c3b12bf8e90dd9e7b5627625a9d4721d6a0/metapub-0.3.17.6.tar.gz" } ], "0.3.17.7": [ { "comment_text": "", "digests": { "md5": "01a8fc793d26b5f826e307b0bb6fe333", "sha256": "5af000f171c051dfe1453b780f932559e70add35a561322f700182040bb6b91f" }, "downloads": -1, "filename": "metapub-0.3.17.7.tar.gz", "has_sig": false, "md5_digest": "01a8fc793d26b5f826e307b0bb6fe333", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72955, "upload_time": "2015-11-22T06:24:07", "url": "https://files.pythonhosted.org/packages/11/84/f3ed879834d7ed596d9ebdc4259414f0f4bf1a8d63f66b6fefc9b34ed6fa/metapub-0.3.17.7.tar.gz" } ], "0.3.17.8": [ { "comment_text": "", "digests": { "md5": "8942c99e8adc5ef7de0020d0586518d9", "sha256": "ec37f84a163447a2412d514fa0853d25b8dce9bf15706393e9fd9c4472f2e035" }, "downloads": -1, "filename": "metapub-0.3.17.8.tar.gz", "has_sig": false, "md5_digest": "8942c99e8adc5ef7de0020d0586518d9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73015, "upload_time": "2015-11-26T20:29:22", "url": "https://files.pythonhosted.org/packages/88/45/6a50cb843515f83d3eab545d8126c1ed33b1f8de2067e85f815033e1c938/metapub-0.3.17.8.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "ff4d63b03b2334d50269c1de2f4e3e6e", "sha256": "b2c84890d5c6d6d2f461660bf6673e6d2e79cd8878ee165b710fd81e64fa0c44" }, "downloads": -1, "filename": "metapub-0.3.2.tar.gz", "has_sig": false, "md5_digest": "ff4d63b03b2334d50269c1de2f4e3e6e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24722, "upload_time": "2015-02-02T08:21:24", "url": "https://files.pythonhosted.org/packages/8f/73/27eeb75a1695eae4f24d421adf68269082b2207d1c14531cf912b52c9e3d/metapub-0.3.2.tar.gz" } ], "0.3.2.2": [ { "comment_text": "", "digests": { "md5": "bb051938a5a3c61e5e5111b4d585ba34", "sha256": "09ec0f31f1a8ef0468219fac427ceadc310853659798dea346d431d8059a985f" }, "downloads": -1, "filename": "metapub-0.3.2.2.tar.gz", "has_sig": false, "md5_digest": "bb051938a5a3c61e5e5111b4d585ba34", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24947, "upload_time": "2015-02-02T09:04:06", "url": "https://files.pythonhosted.org/packages/d5/b9/99c0957ad3ab05ef3db9f0ffbd81e48fa39c677498c4d568be963832e30b/metapub-0.3.2.2.tar.gz" } ], "0.3.2.3": [ { "comment_text": "", "digests": { "md5": "781720b572b9aebb27f4b29f674790e3", "sha256": "994d11fe92ab1a72f5c2c4b9b4cfb5b1e6a466b65596dc4813dea2c8878d0c65" }, "downloads": -1, "filename": "metapub-0.3.2.3.tar.gz", "has_sig": false, "md5_digest": "781720b572b9aebb27f4b29f674790e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24990, "upload_time": "2015-02-02T23:07:11", "url": "https://files.pythonhosted.org/packages/40/d0/15e4b64a01ee28c1a18fd64f9e26b2d8c46eb0ae580d6197655eb48818be/metapub-0.3.2.3.tar.gz" } ], "0.3.2.4": [ { "comment_text": "", "digests": { "md5": "040b4a7c1d66e7f35c603791dd0e67e6", "sha256": "75079713b55600ec443230f01ac7c92e8ee857ae929a65047d641da70f50068c" }, "downloads": -1, "filename": "metapub-0.3.2.4.tar.gz", "has_sig": false, "md5_digest": "040b4a7c1d66e7f35c603791dd0e67e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25129, "upload_time": "2015-02-02T23:47:32", "url": "https://files.pythonhosted.org/packages/b3/23/587e9cb64420017249ff2905d416100ed6e361d6d0eda7f6838f4c6a47bf/metapub-0.3.2.4.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "22e387372eab3a3c4c036e68f7dd1c01", "sha256": "36cb20bd7d9f7e15b6f4470a0e7ae438dd792aefdd39d7e944a56330538e78c1" }, "downloads": -1, "filename": "metapub-0.3.3.tar.gz", "has_sig": false, "md5_digest": "22e387372eab3a3c4c036e68f7dd1c01", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26874, "upload_time": "2015-02-05T08:28:09", "url": "https://files.pythonhosted.org/packages/c3/37/409c0b520daeae5578940e2307443ff11e729fb9689873bbfda8147b7d16/metapub-0.3.3.tar.gz" } ], "0.3.3.1": [ { "comment_text": "", "digests": { "md5": "b332337485d0d77d1dacc8547c20f7c5", "sha256": "ab81dbd752a24925a2fc5037a11836245fe1a4852c9c4b83053ffe5be0550d1c" }, "downloads": -1, "filename": "metapub-0.3.3.1.tar.gz", "has_sig": false, "md5_digest": "b332337485d0d77d1dacc8547c20f7c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26873, "upload_time": "2015-02-05T09:06:59", "url": "https://files.pythonhosted.org/packages/dc/15/fc72b02d2d6e446b851d278d9d462781a9d6b8f260c88dfa886a2a9411f4/metapub-0.3.3.1.tar.gz" } ], "0.3.3.2": [ { "comment_text": "", "digests": { "md5": "bd0d0712bf1864d0ead2f2bb510dc04b", "sha256": "4f84bc88292f46926a3d7e2b3f3668ddba49189e351b4f5b830b78ab92c1925a" }, "downloads": -1, "filename": "metapub-0.3.3.2.tar.gz", "has_sig": false, "md5_digest": "bd0d0712bf1864d0ead2f2bb510dc04b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26906, "upload_time": "2015-02-05T19:06:31", "url": "https://files.pythonhosted.org/packages/db/e9/c593887b779ee204f12641e7284c6ed745697bc24d7d91fe8c80de24e20c/metapub-0.3.3.2.tar.gz" } ], "0.3.3.3": [ { "comment_text": "", "digests": { "md5": "45d92b87da4142b9ef8abfc61700cfc9", "sha256": "e9d0eae74e862d5723192947742e27f7d5f0beaedc78411590f3093c425f33fb" }, "downloads": -1, "filename": "metapub-0.3.3.3.tar.gz", "has_sig": false, "md5_digest": "45d92b87da4142b9ef8abfc61700cfc9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27061, "upload_time": "2015-02-07T23:45:54", "url": "https://files.pythonhosted.org/packages/26/0f/3669a89fc41bffc5643536292e2e10033e6dce65f43cca0186ee4a225a0b/metapub-0.3.3.3.tar.gz" } ], "0.3.3.4": [ { "comment_text": "", "digests": { "md5": "7cd1f719efd84a99dc9ec392c0796d2c", "sha256": "b7ce0a00f620d6576e62f28dd958f1ace7e3609d4b585ab5e4dc6a19a4fed10f" }, "downloads": -1, "filename": "metapub-0.3.3.4.tar.gz", "has_sig": false, "md5_digest": "7cd1f719efd84a99dc9ec392c0796d2c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27298, "upload_time": "2015-02-13T22:25:43", "url": "https://files.pythonhosted.org/packages/04/60/3b0cc43335d54f8a669e56583c595164573f002b417fe0aa54eb7f024141/metapub-0.3.3.4.tar.gz" } ], "0.3.3.5": [ { "comment_text": "", "digests": { "md5": "ef35355a8a8281a7f7d316a33d226c58", "sha256": "e9aba543c6d29822fcbde434252be651e598d5b48b3d41ae53dc54ad28d9a14e" }, "downloads": -1, "filename": "metapub-0.3.3.5.tar.gz", "has_sig": false, "md5_digest": "ef35355a8a8281a7f7d316a33d226c58", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27360, "upload_time": "2015-02-14T06:10:47", "url": "https://files.pythonhosted.org/packages/fc/52/7963d0215a17d4a9e8301e2c40c2aea9a30d1bf5a73837d9885ac1765e80/metapub-0.3.3.5.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "9390e4bfc3db9644cd2b700303d2d531", "sha256": "509b2bb11a116a2ecd71ca2b1164041355c6292b32ef0da31cfb9ef0a8cdeee8" }, "downloads": -1, "filename": "metapub-0.3.4.tar.gz", "has_sig": false, "md5_digest": "9390e4bfc3db9644cd2b700303d2d531", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27393, "upload_time": "2015-02-17T19:31:38", "url": "https://files.pythonhosted.org/packages/97/5d/787a9c3908135a1e239bfc11442f2811ffd00bf6e103c535189d2611533a/metapub-0.3.4.tar.gz" } ], "0.3.4.12": [ { "comment_text": "", "digests": { "md5": "6a03aa4166e89bafc4eca005cdddfdfa", "sha256": "ae6aaaa6a260262e6dfabc25c8b830f0baf0b741bd2bd3e1b714323eb6377994" }, "downloads": -1, "filename": "metapub-0.3.4.12.tar.gz", "has_sig": false, "md5_digest": "6a03aa4166e89bafc4eca005cdddfdfa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34690, "upload_time": "2015-03-14T07:56:22", "url": "https://files.pythonhosted.org/packages/e5/33/770a9d1b44d06044ff6fd9569215e4fb6dc7cfcd3702d613bf828a157bd8/metapub-0.3.4.12.tar.gz" } ], "0.3.4.4": [ { "comment_text": "", "digests": { "md5": "e765c9b02f08ea8234be827661731f27", "sha256": "0dfa97fd1b089a122b3cb0bdb658799c8477223760a88bba27b7c5a31954192a" }, "downloads": -1, "filename": "metapub-0.3.4.4.tar.gz", "has_sig": false, "md5_digest": "e765c9b02f08ea8234be827661731f27", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28930, "upload_time": "2015-02-20T23:35:43", "url": "https://files.pythonhosted.org/packages/53/8d/7d776623d46caf1eaaa4b44001428e24a2a28596f6796e94c146591d2a95/metapub-0.3.4.4.tar.gz" } ], "0.3.4.5": [ { "comment_text": "", "digests": { "md5": "5846dc14d190d0ab1792ff1144e0f4d4", "sha256": "fa75d13c7eede2652ba014abdd335aee72742f14fba2b9594df35752ae2dc683" }, "downloads": -1, "filename": "metapub-0.3.4.5.tar.gz", "has_sig": false, "md5_digest": "5846dc14d190d0ab1792ff1144e0f4d4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28968, "upload_time": "2015-02-24T06:22:53", "url": "https://files.pythonhosted.org/packages/6e/96/d3300ccfd05da38672a54cab159c9248c46381a0aa3557bd88908271e5b2/metapub-0.3.4.5.tar.gz" } ], "0.3.4.6": [ { "comment_text": "", "digests": { "md5": "f18fd6501a22d6cad0d45bda9259cb76", "sha256": "d123c7e0ef38753fa4f7c9513d4b22e526777931087335715a09b1733406b088" }, "downloads": -1, "filename": "metapub-0.3.4.6.tar.gz", "has_sig": false, "md5_digest": "f18fd6501a22d6cad0d45bda9259cb76", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29113, "upload_time": "2015-02-28T09:27:41", "url": "https://files.pythonhosted.org/packages/2a/e7/d9c5130a92e9bb6cf5154c4829b008f73b9f849be633f4a1087041252dc6/metapub-0.3.4.6.tar.gz" } ], "0.3.4.7": [ { "comment_text": "", "digests": { "md5": "597cbafd9b878acf97cf14ab7a252180", "sha256": "bbb123967b5ea866a152773b167f34a19f6773bdb8088e0bb7f0e6157560c295" }, "downloads": -1, "filename": "metapub-0.3.4.7.tar.gz", "has_sig": false, "md5_digest": "597cbafd9b878acf97cf14ab7a252180", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29249, "upload_time": "2015-03-06T05:13:29", "url": "https://files.pythonhosted.org/packages/6d/96/2f0b57689d27d9a6e46f9ce9b7159db188bbee0a4ba4c52f77c4b46de1d0/metapub-0.3.4.7.tar.gz" } ], "0.3.4.8": [ { "comment_text": "", "digests": { "md5": "384f8818628ede381c9d5b33ffff08f4", "sha256": "e75534ae8c171cc282da9396e7210b42afc484adee72635a9c026efd1a773e9b" }, "downloads": -1, "filename": "metapub-0.3.4.8.tar.gz", "has_sig": false, "md5_digest": "384f8818628ede381c9d5b33ffff08f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29327, "upload_time": "2015-03-06T05:36:57", "url": "https://files.pythonhosted.org/packages/af/db/0a98674f707def4878e9e1450eeee6a63bb93175109df8329ae3fc1f6575/metapub-0.3.4.8.tar.gz" } ], "0.3.4.9": [ { "comment_text": "", "digests": { "md5": "ae625188f9bfb7ced0d7f2ae9b69e054", "sha256": "2fa0b9288b2f9ca1f82c913e0d8028adffd80a99b2844c335f9e612586bbd569" }, "downloads": -1, "filename": "metapub-0.3.4.9.tar.gz", "has_sig": false, "md5_digest": "ae625188f9bfb7ced0d7f2ae9b69e054", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29433, "upload_time": "2015-03-06T05:58:54", "url": "https://files.pythonhosted.org/packages/5b/d3/3f84e10c50111fab0b4bf3fff8482f07c01e00f3f2f67e9b58bcb25502bd/metapub-0.3.4.9.tar.gz" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "2eed451742038c7234e473b0fa77469d", "sha256": "b1b7906480f12c7e1935c141c9b3aba33330eed5e515ce52ebae9abf8c61b454" }, "downloads": -1, "filename": "metapub-0.3.5.tar.gz", "has_sig": false, "md5_digest": "2eed451742038c7234e473b0fa77469d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 318301, "upload_time": "2015-03-31T09:49:27", "url": "https://files.pythonhosted.org/packages/b8/69/3ba5e252687632ac4777bb7427e37bcca686e98ee17cfe40d4d578dc573a/metapub-0.3.5.tar.gz" } ], "0.3.5.1": [ { "comment_text": "", "digests": { "md5": "e04e29c95aedd4119ba6651522439563", "sha256": "20ad96c64726698521a9e681011cd83e9ec1affea944437c6f70f2e15d2e4625" }, "downloads": -1, "filename": "metapub-0.3.5.1.tar.gz", "has_sig": false, "md5_digest": "e04e29c95aedd4119ba6651522439563", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 309640, "upload_time": "2015-03-21T00:15:55", "url": "https://files.pythonhosted.org/packages/bb/f0/93d70ebfb65067ebf8e5c08a76de6c5c991d8d6049353499bc1bcbdac5d9/metapub-0.3.5.1.tar.gz" } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "2aded7637e4435f4818e2e915ee3d7de", "sha256": "81d1e55b42f5e8d37eafbe3012d218a5147a07c2cd6b92233b2e21c2a6ec7550" }, "downloads": -1, "filename": "metapub-0.3.6.tar.gz", "has_sig": false, "md5_digest": "2aded7637e4435f4818e2e915ee3d7de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 320354, "upload_time": "2015-03-31T10:01:18", "url": "https://files.pythonhosted.org/packages/0d/3a/372f82f2859db06ca46fd309333f16b4800b5070512bcc81e9a7b318603d/metapub-0.3.6.tar.gz" } ], "0.3.7": [ { "comment_text": "", "digests": { "md5": "875c30566ca1b95340aad22576dd28bb", "sha256": "bc06ae14f2a686677312806f935f926e05ee8c15946d911020451fd4ca6c5c44" }, "downloads": -1, "filename": "metapub-0.3.7.tar.gz", "has_sig": false, "md5_digest": "875c30566ca1b95340aad22576dd28bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 320554, "upload_time": "2015-04-24T10:13:11", "url": "https://files.pythonhosted.org/packages/4b/2e/3fcce447668c96220dd29a84e6b8f242ee17880132bc364cf7ab05923be5/metapub-0.3.7.tar.gz" } ], "0.3.8.1": [ { "comment_text": "", "digests": { "md5": "877ced6e07c6a9927815b9e3669b6d60", "sha256": "b7912108880d2c5cfea8f5b85f4f80777a6e2020cfae855a041d3b9b4ab619d0" }, "downloads": -1, "filename": "metapub-0.3.8.1.tar.gz", "has_sig": false, "md5_digest": "877ced6e07c6a9927815b9e3669b6d60", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 321014, "upload_time": "2015-05-06T19:43:30", "url": "https://files.pythonhosted.org/packages/2f/8c/6a5256f7a4e064bf0d6dfcc032880a24bc56fdab7e960b8b9294f5f6a71e/metapub-0.3.8.1.tar.gz" } ], "0.3.8.10": [ { "comment_text": "", "digests": { "md5": "9926bf33aba5dd90b785c9158c706507", "sha256": "81f58545a5b828d1abebb800bb040cb17e7a7ed9a3dd1075f861f8f0f0da501d" }, "downloads": -1, "filename": "metapub-0.3.8.10.tar.gz", "has_sig": false, "md5_digest": "9926bf33aba5dd90b785c9158c706507", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41580, "upload_time": "2015-05-19T21:17:17", "url": "https://files.pythonhosted.org/packages/5d/23/aa6ae57d5e1b3bf94481777fd57f838ed0abff3c7436fbd380cce15e0634/metapub-0.3.8.10.tar.gz" } ], "0.3.8.11": [ { "comment_text": "", "digests": { "md5": "51d2516be5251447796d27d9485543e9", "sha256": "75efce67765758c32819d973f70ed0507913161c7bad90ae6ed09246196d522d" }, "downloads": -1, "filename": "metapub-0.3.8.11.tar.gz", "has_sig": false, "md5_digest": "51d2516be5251447796d27d9485543e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41609, "upload_time": "2015-05-20T00:24:31", "url": "https://files.pythonhosted.org/packages/60/71/52d055f48fb61c5c08792a88aaae47f10396f76432d58ba7bd554cf8e8f4/metapub-0.3.8.11.tar.gz" } ], "0.3.8.12": [ { "comment_text": "", "digests": { "md5": "d5c5ef791e6f979569ec9a851416566d", "sha256": "7836b5d05ede1c277351c0727af2a163a090a5589fd28a801c6f8407e9cbe9b1" }, "downloads": -1, "filename": "metapub-0.3.8.12.tar.gz", "has_sig": false, "md5_digest": "d5c5ef791e6f979569ec9a851416566d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41710, "upload_time": "2015-05-20T01:01:17", "url": "https://files.pythonhosted.org/packages/35/96/805408c64086aa48e46f48d217a56d4873105e341a37e3aa1e5f3ba66b23/metapub-0.3.8.12.tar.gz" } ], "0.3.8.13": [ { "comment_text": "", "digests": { "md5": "641a6fa4488283e5e54b7fc5081efdbb", "sha256": "72394db8a6e16b504c38ba1761a4fb786aaf2a4a464e1dcc376588fe88e2e2a6" }, "downloads": -1, "filename": "metapub-0.3.8.13.tar.gz", "has_sig": false, "md5_digest": "641a6fa4488283e5e54b7fc5081efdbb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41906, "upload_time": "2015-05-20T06:51:36", "url": "https://files.pythonhosted.org/packages/12/10/f8ed4d53f5449c4d6c80f39332a5c605584166dd97984e07dafc25267590/metapub-0.3.8.13.tar.gz" } ], "0.3.8.2": [ { "comment_text": "", "digests": { "md5": "edf7ed2bda656168bd68d4b369a054e2", "sha256": "d19df14deb37e9dad54557e199749c1dff9bfb373fe94586e833f6aa30e7eeb1" }, "downloads": -1, "filename": "metapub-0.3.8.2.tar.gz", "has_sig": false, "md5_digest": "edf7ed2bda656168bd68d4b369a054e2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 321317, "upload_time": "2015-05-13T23:30:11", "url": "https://files.pythonhosted.org/packages/5b/3d/ab3c582ffcd672b8f3d4738542dafa5c161388b82b0820be3b475146d896/metapub-0.3.8.2.tar.gz" } ], "0.3.8.3": [ { "comment_text": "", "digests": { "md5": "0064173af25044afa975d629d9667edd", "sha256": "2ec04e72256e1b9031ebc6ea84eabbf1b70fea31b2b790f261030866130d666e" }, "downloads": -1, "filename": "metapub-0.3.8.3.tar.gz", "has_sig": false, "md5_digest": "0064173af25044afa975d629d9667edd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 321400, "upload_time": "2015-05-14T07:29:26", "url": "https://files.pythonhosted.org/packages/8a/81/aa19cffdacd923bce843212e24dfb5452c6449b3d3529ac749df43fb1115/metapub-0.3.8.3.tar.gz" } ], "0.3.8.4": [ { "comment_text": "", "digests": { "md5": "7f761395235761a17475846a0a4c65e1", "sha256": "1487c40c0eb31dab917029a608b8942eede0a0e79f96cfe3938ef4eb6017eebe" }, "downloads": -1, "filename": "metapub-0.3.8.4.tar.gz", "has_sig": false, "md5_digest": "7f761395235761a17475846a0a4c65e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 321533, "upload_time": "2015-05-14T08:23:39", "url": "https://files.pythonhosted.org/packages/f9/51/a4da2297603889bcc72c1e7fa99da90a9b20bd58a377373edda21a59fab4/metapub-0.3.8.4.tar.gz" } ], "0.3.8.5": [ { "comment_text": "", "digests": { "md5": "4518f1fa2b715a72f32bc700da0d2881", "sha256": "62887b44ee8390db1a57b18cf5d8916485c0c0b123f799e55ad5be7a537e3c89" }, "downloads": -1, "filename": "metapub-0.3.8.5.tar.gz", "has_sig": false, "md5_digest": "4518f1fa2b715a72f32bc700da0d2881", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 321626, "upload_time": "2015-05-14T08:47:35", "url": "https://files.pythonhosted.org/packages/3b/4f/8d031a932c9b92336b3e53165b1e2757de5056d9f635ce0c08ee4af41271/metapub-0.3.8.5.tar.gz" } ], "0.3.8.7": [ { "comment_text": "", "digests": { "md5": "003613c5bc933d6bc4d86a92a2401522", "sha256": "8bad33357030ab5772b1e92a430bc3d3e1b8a3ca56aa4c7469af0f32e2b0ce72" }, "downloads": -1, "filename": "metapub-0.3.8.7.tar.gz", "has_sig": false, "md5_digest": "003613c5bc933d6bc4d86a92a2401522", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41590, "upload_time": "2015-05-19T01:56:05", "url": "https://files.pythonhosted.org/packages/9d/64/f170c38cfad66e3a18b9262752fdb7978db2a29adfe9b6ad09a247c0ecc7/metapub-0.3.8.7.tar.gz" } ], "0.3.8.8": [ { "comment_text": "", "digests": { "md5": "c5c281d7ce42412ef06e73b83aefd569", "sha256": "33d93905ba252f8b237f8f5a58b4fc686823ef7522d0ae01cc195fd65cfd9afc" }, "downloads": -1, "filename": "metapub-0.3.8.8.tar.gz", "has_sig": false, "md5_digest": "c5c281d7ce42412ef06e73b83aefd569", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41577, "upload_time": "2015-05-19T05:52:24", "url": "https://files.pythonhosted.org/packages/ab/e0/b9afb8d9f938d815eafc7da37c7097c167381c717fb8015c1b0d086e178b/metapub-0.3.8.8.tar.gz" } ], "0.3.8.9": [ { "comment_text": "", "digests": { "md5": "4d62033008e645a6a19be4932cc90e75", "sha256": "846974aa49f093796a66c37e112ed9579e4efbd10e225f9bf214bf20dbba547c" }, "downloads": -1, "filename": "metapub-0.3.8.9.tar.gz", "has_sig": false, "md5_digest": "4d62033008e645a6a19be4932cc90e75", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41586, "upload_time": "2015-05-19T17:13:42", "url": "https://files.pythonhosted.org/packages/7d/98/facbdfa40cabbbd1af72be4ccd4fa99e3f6970e9885b346dec4faa906513/metapub-0.3.8.9.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "96f02b6a0fe64adc4b51f0958a139a44", "sha256": "111894a84c0663a11c565428d09fc378427296a02ed81471977bf5992dd193c2" }, "downloads": -1, "filename": "metapub-0.4.0.tar.gz", "has_sig": false, "md5_digest": "96f02b6a0fe64adc4b51f0958a139a44", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 82676, "upload_time": "2016-02-17T09:17:37", "url": "https://files.pythonhosted.org/packages/2d/fd/eb10f67083d788eca55621c551fc9f4d05e242d4ae3b4ebe49a06fa945da/metapub-0.4.0.tar.gz" } ], "0.4.0.1": [ { "comment_text": "", "digests": { "md5": "97ef0e16d8799dc466604793916e58f6", "sha256": "41d2d449f96480e138b8b5bb0d84f9a623e9eb2790093312ae58f9532d245d9a" }, "downloads": -1, "filename": "metapub-0.4.0.1.tar.gz", "has_sig": false, "md5_digest": "97ef0e16d8799dc466604793916e58f6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 82713, "upload_time": "2016-02-29T21:22:46", "url": "https://files.pythonhosted.org/packages/cc/8b/c67b8e8fdb8cc5d4bc1892d15f34ec150f25e3b34a83f855cb32cfe4fe99/metapub-0.4.0.1.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "3235dc9f0728461f2e0dd36f34b01ec6", "sha256": "90e9e755f51afbd727a9dc5b333ab0c3e9f15d4cdd7a8a465dd6342851cb677f" }, "downloads": -1, "filename": "metapub-0.4.1.tar.gz", "has_sig": false, "md5_digest": "3235dc9f0728461f2e0dd36f34b01ec6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 85947, "upload_time": "2016-04-18T23:44:47", "url": "https://files.pythonhosted.org/packages/83/6f/8225de4fecdaa6f7f4521d1179e4da007c995725cd27c015cd1af549ebb4/metapub-0.4.1.tar.gz" } ], "0.4.2a0": [ { "comment_text": "", "digests": { "md5": "749cf217af67b1bb09470c7d511cefd0", "sha256": "91f62a5c070287a797867fae52e3938196017619917e61114a1917c06a2823b2" }, "downloads": -1, "filename": "metapub-0.4.2a0.tar.gz", "has_sig": false, "md5_digest": "749cf217af67b1bb09470c7d511cefd0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 102863, "upload_time": "2016-06-20T08:34:04", "url": "https://files.pythonhosted.org/packages/43/6f/cfb0063d5518a4fc4315fd94fa1908e42d56267c41bb234881cff6c7e856/metapub-0.4.2a0.tar.gz" } ], "0.4.2a1": [ { "comment_text": "", "digests": { "md5": "7ab46100e61498b3204ba7987a468ee0", "sha256": "9527595c3efa55f710dd198c93a2d1d35eeccc4b602246d73ab5d6b0d21d305d" }, "downloads": -1, "filename": "metapub-0.4.2a1.tar.gz", "has_sig": false, "md5_digest": "7ab46100e61498b3204ba7987a468ee0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 103019, "upload_time": "2016-07-06T19:36:04", "url": "https://files.pythonhosted.org/packages/fd/27/7104530b037546ddc4f9672e64fe75071c0178acad9f39741d00d3ed225d/metapub-0.4.2a1.tar.gz" } ], "0.4.2a2": [ { "comment_text": "", "digests": { "md5": "6f9cdd908bd9c2c8a0968334329ca941", "sha256": "e73c5334c97f1b00c70a457710479990dfd6753d6cd07e2d907f52fec7887c2b" }, "downloads": -1, "filename": "metapub-0.4.2a2.tar.gz", "has_sig": false, "md5_digest": "6f9cdd908bd9c2c8a0968334329ca941", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 103748, "upload_time": "2016-07-24T06:58:04", "url": "https://files.pythonhosted.org/packages/ca/62/53181ed86e1daf384f992be78306f5cffa8850133442740de13c55b4d272/metapub-0.4.2a2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "e01b1f2d03b46f5ca7307a0b8f3bdbda", "sha256": "acd91a6b20709d58232e2f5202722add402953c6bbf9f06b3f89d5471204c94f" }, "downloads": -1, "filename": "metapub-0.4.3.tar.gz", "has_sig": false, "md5_digest": "e01b1f2d03b46f5ca7307a0b8f3bdbda", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 104740, "upload_time": "2016-09-27T09:10:27", "url": "https://files.pythonhosted.org/packages/d4/32/ea2c0d7cb1853e94c4aaa75b395ac578a32101ee1dc92b94be0baa4fd898/metapub-0.4.3.tar.gz" } ], "0.4.3.1": [ { "comment_text": "", "digests": { "md5": "6e4961581bdaa9898af6213499ad94ae", "sha256": "f92dae3180997cda858eb048f9b9cc1d32b2b5825305c72415c97338187f860f" }, "downloads": -1, "filename": "metapub-0.4.3.1.tar.gz", "has_sig": false, "md5_digest": "6e4961581bdaa9898af6213499ad94ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 104743, "upload_time": "2016-09-27T21:00:16", "url": "https://files.pythonhosted.org/packages/8b/f9/19417b39bf36b1f004379fa41cf9ec65caa9a6699cc8250121f811e8468b/metapub-0.4.3.1.tar.gz" } ], "0.4.3.5": [ { "comment_text": "", "digests": { "md5": "9377cd7b98fbfd1dc53fd3f4f8c409ef", "sha256": "96736f7e5429a42e0e37cd9a310f138d4701c9056515a11c0667421f61a3e183" }, "downloads": -1, "filename": "metapub-0.4.3.5.tar.gz", "has_sig": false, "md5_digest": "9377cd7b98fbfd1dc53fd3f4f8c409ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 104753, "upload_time": "2016-10-14T09:18:02", "url": "https://files.pythonhosted.org/packages/e1/3a/51fcfe1029a2772e47fd9333d45cb7da5badbd11c8c81732faf1e747ea5f/metapub-0.4.3.5.tar.gz" } ], "0.4.3.6": [ { "comment_text": "", "digests": { "md5": "d6b34e333539ccc7f24b7cda1bfc39d4", "sha256": "104cde7d39e5adf73468137f022a3542976eca501afe28ced5aeedc8535680e0" }, "downloads": -1, "filename": "metapub-0.4.3.6.tar.gz", "has_sig": false, "md5_digest": "d6b34e333539ccc7f24b7cda1bfc39d4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 104775, "upload_time": "2017-06-26T20:19:39", "url": "https://files.pythonhosted.org/packages/29/5f/7466dce420dbb51db0f8154f198f084b7b3ac3d3d8aba3c2139fcb98a07f/metapub-0.4.3.6.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "127c149611739b5dbd0c6cd46f70b5b1", "sha256": "e60d3d0938f8083c9f3ddb31e268015257a36c95b29be5262d565f6dbee2f753" }, "downloads": -1, "filename": "metapub-0.5-py3.7.egg", "has_sig": false, "md5_digest": "127c149611739b5dbd0c6cd46f70b5b1", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": null, "size": 291508, "upload_time": "2019-08-11T08:30:09", "url": "https://files.pythonhosted.org/packages/f3/aa/903423b02f9e1c30e62153705fece1326574c648c063b96f36468049a99c/metapub-0.5-py3.7.egg" } ], "0.5.0a0": [ { "comment_text": "", "digests": { "md5": "ee18c402d10e3c0aec6af6051196f8e8", "sha256": "fe063c0023ae7ec867047d0e836735776df69b32f42b53dd476031e6d17e142f" }, "downloads": -1, "filename": "metapub-0.5.0a0.tar.gz", "has_sig": false, "md5_digest": "ee18c402d10e3c0aec6af6051196f8e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 116605, "upload_time": "2019-08-11T08:30:12", "url": "https://files.pythonhosted.org/packages/07/19/d11dace9fbedc6b92e4d3261d0375b6ee20d6f07b035fbd9d8045060276b/metapub-0.5.0a0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "067a51dd0818edd403de7e1e32b30806", "sha256": "157db3676937c7200c69f507db7bbca7074e5dcad642017bc4b6273f409ad5bd" }, "downloads": -1, "filename": "metapub-0.5.1.tar.gz", "has_sig": false, "md5_digest": "067a51dd0818edd403de7e1e32b30806", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 117232, "upload_time": "2019-08-12T04:22:35", "url": "https://files.pythonhosted.org/packages/fb/1e/03d23d510f341ec55c40c3b50bdfd8a751f0dc7e72a57748b8698b572546/metapub-0.5.1.tar.gz" } ], "0.5.2a0": [ { "comment_text": "", "digests": { "md5": "ef700b22e5e1e340c6e29338c54492b8", "sha256": "b41a20fcffbc74679e429a84413928e51d67027e2ec60e001d1c54845ea8bf5b" }, "downloads": -1, "filename": "metapub-0.5.2a0-py3.7.egg", "has_sig": false, "md5_digest": "ef700b22e5e1e340c6e29338c54492b8", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": null, "size": 301207, "upload_time": "2019-08-16T00:15:53", "url": "https://files.pythonhosted.org/packages/c8/31/3853080e7c56cd1363cfeb9df78ce5db0dec753fd6464214ac51ac26012c/metapub-0.5.2a0-py3.7.egg" }, { "comment_text": "", "digests": { "md5": "2133e7a19aca5e35748bf0b2a9ff2215", "sha256": "29d65ecc889d6d4541fd533211fc36561c005d5bed215cec5f301882e26da723" }, "downloads": -1, "filename": "metapub-0.5.2a0.tar.gz", "has_sig": false, "md5_digest": "2133e7a19aca5e35748bf0b2a9ff2215", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 117957, "upload_time": "2019-08-16T00:15:55", "url": "https://files.pythonhosted.org/packages/a3/40/d980e8d0d4ebcdc0c1cc95de4548b85e1d7cd6704f6139b7bcfc7cb2d715/metapub-0.5.2a0.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "4c902d87aec5341fd888fe16d5dc17f0", "sha256": "1ede3f2b740345d078230ad1414679439b6b36a11155867b30f46fb14aee7e60" }, "downloads": -1, "filename": "metapub-0.5.3.tar.gz", "has_sig": false, "md5_digest": "4c902d87aec5341fd888fe16d5dc17f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 117618, "upload_time": "2019-09-08T01:58:26", "url": "https://files.pythonhosted.org/packages/a8/dc/17e94451e4069bd0456062f801d48d8d0fdd0eebc86405bfb23c16e962d8/metapub-0.5.3.tar.gz" } ], "0.5.3a0": [ { "comment_text": "", "digests": { "md5": "66c560e805af5d6fd84f92f58eb573b0", "sha256": "2b91b46631cabc22792a46808a2f215760aaec06a256869000459f0e3b8806c5" }, "downloads": -1, "filename": "metapub-0.5.3a0-py3.7.egg", "has_sig": false, "md5_digest": "66c560e805af5d6fd84f92f58eb573b0", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": null, "size": 288984, "upload_time": "2019-09-08T01:45:39", "url": "https://files.pythonhosted.org/packages/8c/8d/981fda301a5a1fd0388c11bf35259446f6b91f972ade26e5811d83686391/metapub-0.5.3a0-py3.7.egg" } ], "0.5.3b0": [ { "comment_text": "", "digests": { "md5": "a82aa13589d80a94d10878942e0dbfaf", "sha256": "bc1972b79a0cff323bc6cacc010683aa07371d57cdfc18d6387ac21e4d798b74" }, "downloads": -1, "filename": "metapub-0.5.3b0-py3.7.egg", "has_sig": false, "md5_digest": "a82aa13589d80a94d10878942e0dbfaf", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": null, "size": 289007, "upload_time": "2019-09-08T01:54:55", "url": "https://files.pythonhosted.org/packages/c0/c5/d9293bbb2faefcdc3918fe5cf6bd571cd39942bc0497309813dbebe01bf4/metapub-0.5.3b0-py3.7.egg" }, { "comment_text": "", "digests": { "md5": "5be239119b381608d9c26a355785cb25", "sha256": "ac006e2b0c25042008291b770452b2f7145f7322191ce707b204123dd96dce7b" }, "downloads": -1, "filename": "metapub-0.5.3b0.tar.gz", "has_sig": false, "md5_digest": "5be239119b381608d9c26a355785cb25", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 117610, "upload_time": "2019-09-08T01:54:57", "url": "https://files.pythonhosted.org/packages/b0/bf/3f59e881fd923f79647e43cbd854128a98dbe72cd98928d17a3747b06d21/metapub-0.5.3b0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "4c902d87aec5341fd888fe16d5dc17f0", "sha256": "1ede3f2b740345d078230ad1414679439b6b36a11155867b30f46fb14aee7e60" }, "downloads": -1, "filename": "metapub-0.5.3.tar.gz", "has_sig": false, "md5_digest": "4c902d87aec5341fd888fe16d5dc17f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 117618, "upload_time": "2019-09-08T01:58:26", "url": "https://files.pythonhosted.org/packages/a8/dc/17e94451e4069bd0456062f801d48d8d0fdd0eebc86405bfb23c16e962d8/metapub-0.5.3.tar.gz" } ] }