{ "info": { "author": "Richard Jones", "author_email": "richard@python.org", "bugtrack_url": null, "classifiers": [ "Environment :: Web Environment", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Software Development :: Code Generators", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "Parse strings using a specification based on the Python format() syntax.\n\n ``parse()`` is the opposite of ``format()``\n\nThe module is set up to only export ``parse()``, ``search()``, ``findall()``,\nand ``with_pattern()`` when ``import \\*`` is used:\n\n>>> from parse import *\n\nFrom there it's a simple thing to parse a string:\n\n>>> parse(\"It's {}, I love it!\", \"It's spam, I love it!\")\n\n>>> _[0]\n'spam'\n\nOr to search a string for some pattern:\n\n>>> search('Age: {:d}\\n', 'Name: Rufus\\nAge: 42\\nColor: red\\n')\n\n\nOr find all the occurrences of some pattern in a string:\n\n>>> ''.join(r.fixed[0] for r in findall(\">{}<\", \"

the bold text

\"))\n'the bold text'\n\nIf you're going to use the same pattern to match lots of strings you can\ncompile it once:\n\n>>> from parse import compile\n>>> p = compile(\"It's {}, I love it!\")\n>>> print(p)\n\n>>> p.parse(\"It's spam, I love it!\")\n\n\n(\"compile\" is not exported for ``import *`` usage as it would override the\nbuilt-in ``compile()`` function)\n\nThe default behaviour is to match strings case insensitively. You may match with\ncase by specifying `case_sensitive=True`:\n\n>>> parse('SPAM', 'spam', case_sensitive=True) is None\nTrue\n\n\nFormat Syntax\n-------------\n\nA basic version of the `Format String Syntax`_ is supported with anonymous\n(fixed-position), named and formatted fields::\n\n {[field name]:[format spec]}\n\nField names must be a valid Python identifiers, including dotted names;\nelement indexes imply dictionaries (see below for example).\n\nNumbered fields are also not supported: the result of parsing will include\nthe parsed fields in the order they are parsed.\n\nThe conversion of fields to types other than strings is done based on the\ntype in the format specification, which mirrors the ``format()`` behaviour.\nThere are no \"!\" field conversions like ``format()`` has.\n\nSome simple parse() format string examples:\n\n>>> parse(\"Bring me a {}\", \"Bring me a shrubbery\")\n\n>>> r = parse(\"The {} who say {}\", \"The knights who say Ni!\")\n>>> print(r)\n\n>>> print(r.fixed)\n('knights', 'Ni!')\n>>> r = parse(\"Bring out the holy {item}\", \"Bring out the holy hand grenade\")\n>>> print(r)\n\n>>> print(r.named)\n{'item': 'hand grenade'}\n>>> print(r['item'])\nhand grenade\n>>> 'item' in r\nTrue\n\nNote that `in` only works if you have named fields. Dotted names and indexes\nare possible though the application must make additional sense of the result:\n\n>>> r = parse(\"Mmm, {food.type}, I love it!\", \"Mmm, spam, I love it!\")\n>>> print(r)\n\n>>> print(r.named)\n{'food.type': 'spam'}\n>>> print(r['food.type'])\nspam\n>>> r = parse(\"My quest is {quest[name]}\", \"My quest is to seek the holy grail!\")\n>>> print(r)\n\n>>> print(r['quest'])\n{'name': 'to seek the holy grail!'}\n>>> print(r['quest']['name'])\nto seek the holy grail!\n\nIf the text you're matching has braces in it you can match those by including\na double-brace ``{{`` or ``}}`` in your format string, just like format() does.\n\n\nFormat Specification\n--------------------\n\nMost often a straight format-less ``{}`` will suffice where a more complex\nformat specification might have been used.\n\nMost of `format()`'s `Format Specification Mini-Language`_ is supported:\n\n [[fill]align][0][width][.precision][type]\n\nThe differences between `parse()` and `format()` are:\n\n- The align operators will cause spaces (or specified fill character) to be\n stripped from the parsed value. The width is not enforced; it just indicates\n there may be whitespace or \"0\"s to strip.\n- Numeric parsing will automatically handle a \"0b\", \"0o\" or \"0x\" prefix.\n That is, the \"#\" format character is handled automatically by d, b, o\n and x formats. For \"d\" any will be accepted, but for the others the correct\n prefix must be present if at all.\n- Numeric sign is handled automatically.\n- The thousands separator is handled automatically if the \"n\" type is used.\n- The types supported are a slightly different mix to the format() types. Some\n format() types come directly over: \"d\", \"n\", \"%\", \"f\", \"e\", \"b\", \"o\" and \"x\".\n In addition some regular expression character group types \"D\", \"w\", \"W\", \"s\"\n and \"S\" are also available.\n- The \"e\" and \"g\" types are case-insensitive so there is not need for\n the \"E\" or \"G\" types.\n\n===== =========================================== ========\nType Characters Matched Output\n===== =========================================== ========\nl Letters (ASCII) str\nw Letters, numbers and underscore str\nW Not letters, numbers and underscore str\ns Whitespace str\nS Non-whitespace str\nd Digits (effectively integer numbers) int\nD Non-digit str\nn Numbers with thousands separators (, or .) int\n% Percentage (converted to value/100.0) float\nf Fixed-point numbers float\nF Decimal numbers Decimal\ne Floating-point numbers with exponent float\n e.g. 1.1e-10, NAN (all case insensitive)\ng General number format (either d, f or e) float\nb Binary numbers int\no Octal numbers int\nx Hexadecimal numbers (lower and upper case) int\nti ISO 8601 format date/time datetime\n e.g. 1972-01-20T10:21:36Z (\"T\" and \"Z\"\n optional)\nte RFC2822 e-mail format date/time datetime\n e.g. Mon, 20 Jan 1972 10:21:36 +1000\ntg Global (day/month) format date/time datetime\n e.g. 20/1/1972 10:21:36 AM +1:00\nta US (month/day) format date/time datetime\n e.g. 1/20/1972 10:21:36 PM +10:30\ntc ctime() format date/time datetime\n e.g. Sun Sep 16 01:03:52 1973\nth HTTP log format date/time datetime\n e.g. 21/Nov/2011:00:07:11 +0000\nts Linux system log format date/time datetime\n e.g. Nov 9 03:37:44\ntt Time time\n e.g. 10:21:36 PM -5:30\n===== =========================================== ========\n\nSome examples of typed parsing with ``None`` returned if the typing\ndoes not match:\n\n>>> parse('Our {:d} {:w} are...', 'Our 3 weapons are...')\n\n>>> parse('Our {:d} {:w} are...', 'Our three weapons are...')\n>>> parse('Meet at {:tg}', 'Meet at 1/2/2011 11:00 PM')\n\n\nAnd messing about with alignment:\n\n>>> parse('with {:>} herring', 'with a herring')\n\n>>> parse('spam {:^} spam', 'spam lovely spam')\n\n\nNote that the \"center\" alignment does not test to make sure the value is\ncentered - it just strips leading and trailing whitespace.\n\nWidth and precision may be used to restrict the size of matched text\nfrom the input. Width specifies a minimum size and precision specifies\na maximum. For example:\n\n>>> parse('{:.2}{:.2}', 'look') # specifying precision\n\n>>> parse('{:4}{:4}', 'look at that') # specifying width\n\n>>> parse('{:4}{:.4}', 'look at that') # specifying both\n\n>>> parse('{:2d}{:2d}', '0440') # parsing two contiguous numbers\n\n\nSome notes for the date and time types:\n\n- the presence of the time part is optional (including ISO 8601, starting\n at the \"T\"). A full datetime object will always be returned; the time\n will be set to 00:00:00. You may also specify a time without seconds.\n- when a seconds amount is present in the input fractions will be parsed\n to give microseconds.\n- except in ISO 8601 the day and month digits may be 0-padded.\n- the date separator for the tg and ta formats may be \"-\" or \"/\".\n- named months (abbreviations or full names) may be used in the ta and tg\n formats in place of numeric months.\n- as per RFC 2822 the e-mail format may omit the day (and comma), and the\n seconds but nothing else.\n- hours greater than 12 will be happily accepted.\n- the AM/PM are optional, and if PM is found then 12 hours will be added\n to the datetime object's hours amount - even if the hour is greater\n than 12 (for consistency.)\n- in ISO 8601 the \"Z\" (UTC) timezone part may be a numeric offset\n- timezones are specified as \"+HH:MM\" or \"-HH:MM\". The hour may be one or two\n digits (0-padded is OK.) Also, the \":\" is optional.\n- the timezone is optional in all except the e-mail format (it defaults to\n UTC.)\n- named timezones are not handled yet.\n\nNote: attempting to match too many datetime fields in a single parse() will\ncurrently result in a resource allocation issue. A TooManyFields exception\nwill be raised in this instance. The current limit is about 15. It is hoped\nthat this limit will be removed one day.\n\n.. _`Format String Syntax`:\n http://docs.python.org/library/string.html#format-string-syntax\n.. _`Format Specification Mini-Language`:\n http://docs.python.org/library/string.html#format-specification-mini-language\n\n\nResult and Match Objects\n------------------------\n\nThe result of a ``parse()`` and ``search()`` operation is either ``None`` (no match), a\n``Result`` instance or a ``Match`` instance if ``evaluate_result`` is False.\n\nThe ``Result`` instance has three attributes:\n\nfixed\n A tuple of the fixed-position, anonymous fields extracted from the input.\nnamed\n A dictionary of the named fields extracted from the input.\nspans\n A dictionary mapping the names and fixed position indices matched to a\n 2-tuple slice range of where the match occurred in the input.\n The span does not include any stripped padding (alignment or width).\n\nThe ``Match`` instance has one method:\n\nevaluate_result()\n Generates and returns a ``Result`` instance for this ``Match`` object.\n\n\n\nCustom Type Conversions\n-----------------------\n\nIf you wish to have matched fields automatically converted to your own type you\nmay pass in a dictionary of type conversion information to ``parse()`` and\n``compile()``.\n\nThe converter will be passed the field string matched. Whatever it returns\nwill be substituted in the ``Result`` instance for that field.\n\nYour custom type conversions may override the builtin types if you supply one\nwith the same identifier.\n\n>>> def shouty(string):\n... return string.upper()\n...\n>>> parse('{:shouty} world', 'hello world', dict(shouty=shouty))\n\n\nIf the type converter has the optional ``pattern`` attribute, it is used as\nregular expression for better pattern matching (instead of the default one).\n\n>>> def parse_number(text):\n... return int(text)\n>>> parse_number.pattern = r'\\d+'\n>>> parse('Answer: {number:Number}', 'Answer: 42', dict(Number=parse_number))\n\n>>> _ = parse('Answer: {:Number}', 'Answer: Alice', dict(Number=parse_number))\n>>> assert _ is None, \"MISMATCH\"\n\nYou can also use the ``with_pattern(pattern)`` decorator to add this\ninformation to a type converter function:\n\n>>> from parse import with_pattern\n>>> @with_pattern(r'\\d+')\n... def parse_number(text):\n... return int(text)\n>>> parse('Answer: {number:Number}', 'Answer: 42', dict(Number=parse_number))\n\n\nA more complete example of a custom type might be:\n\n>>> yesno_mapping = {\n... \"yes\": True, \"no\": False,\n... \"on\": True, \"off\": False,\n... \"true\": True, \"false\": False,\n... }\n>>> @with_pattern(r\"|\".join(yesno_mapping))\n... def parse_yesno(text):\n... return yesno_mapping[text.lower()]\n\n\nIf the type converter ``pattern`` uses regex-grouping (with parenthesis),\nyou should indicate this by using the optional ``regex_group_count`` parameter\nin the ``with_pattern()`` decorator:\n\n>>> @with_pattern(r'((\\d+))', regex_group_count=2)\n... def parse_number2(text):\n... return int(text)\n>>> parse('Answer: {:Number2} {:Number2}', 'Answer: 42 43', dict(Number2=parse_number2))\n\n\nOtherwise, this may cause parsing problems with unnamed/fixed parameters.\n\n\nPotential Gotchas\n-----------------\n\n`parse()` will always match the shortest text necessary (from left to right)\nto fulfil the parse pattern, so for example:\n\n>>> pattern = '{dir1}/{dir2}'\n>>> data = 'root/parent/subdir'\n>>> sorted(parse(pattern, data).named.items())\n[('dir1', 'root'), ('dir2', 'parent/subdir')]\n\nSo, even though `{'dir1': 'root/parent', 'dir2': 'subdir'}` would also fit\nthe pattern, the actual match represents the shortest successful match for\n`dir1`.\n\n----\n\n**Version history (in brief)**:\n\n- 1.12.1 Actually use the `case_sensitive` arg in compile (thanks @jacquev6)\n- 1.12.0 Do not assume closing brace when an opening one is found (thanks @mattsep)\n- 1.11.1 Revert having unicode char in docstring, it breaks Bamboo builds(?!)\n- 1.11.0 Implement `__contains__` for Result instances.\n- 1.10.0 Introduce a \"letters\" matcher, since \"w\" matches numbers\n also.\n- 1.9.1 Fix deprecation warnings around backslashes in regex strings\n (thanks Mickael Schoentgen). Also fix some documentation formatting\n issues.\n- 1.9.0 We now honor precision and width specifiers when parsing numbers\n and strings, allowing parsing of concatenated elements of fixed width\n (thanks Julia Signell)\n- 1.8.4 Add LICENSE file at request of packagers.\n Correct handling of AM/PM to follow most common interpretation.\n Correct parsing of hexadecimal that looks like a binary prefix.\n Add ability to parse case sensitively.\n Add parsing of numbers to Decimal with \"F\" (thanks John Vandenberg)\n- 1.8.3 Add regex_group_count to with_pattern() decorator to support\n user-defined types that contain brackets/parenthesis (thanks Jens Engel)\n- 1.8.2 add documentation for including braces in format string\n- 1.8.1 ensure bare hexadecimal digits are not matched\n- 1.8.0 support manual control over result evaluation (thanks Timo Furrer)\n- 1.7.0 parse dict fields (thanks Mark Visser) and adapted to allow\n more than 100 re groups in Python 3.5+ (thanks David King)\n- 1.6.6 parse Linux system log dates (thanks Alex Cowan)\n- 1.6.5 handle precision in float format (thanks Levi Kilcher)\n- 1.6.4 handle pipe \"|\" characters in parse string (thanks Martijn Pieters)\n- 1.6.3 handle repeated instances of named fields, fix bug in PM time\n overflow\n- 1.6.2 fix logging to use local, not root logger (thanks Necku)\n- 1.6.1 be more flexible regarding matched ISO datetimes and timezones in\n general, fix bug in timezones without \":\" and improve docs\n- 1.6.0 add support for optional ``pattern`` attribute in user-defined types\n (thanks Jens Engel)\n- 1.5.3 fix handling of question marks\n- 1.5.2 fix type conversion error with dotted names (thanks Sebastian Thiel)\n- 1.5.1 implement handling of named datetime fields\n- 1.5 add handling of dotted field names (thanks Sebastian Thiel)\n- 1.4.1 fix parsing of \"0\" in int conversion (thanks James Rowe)\n- 1.4 add __getitem__ convenience access on Result.\n- 1.3.3 fix Python 2.5 setup.py issue.\n- 1.3.2 fix Python 3.2 setup.py issue.\n- 1.3.1 fix a couple of Python 3.2 compatibility issues.\n- 1.3 added search() and findall(); removed compile() from ``import *``\n export as it overwrites builtin.\n- 1.2 added ability for custom and override type conversions to be\n provided; some cleanup\n- 1.1.9 to keep things simpler number sign is handled automatically;\n significant robustification in the face of edge-case input.\n- 1.1.8 allow \"d\" fields to have number base \"0x\" etc. prefixes;\n fix up some field type interactions after stress-testing the parser;\n implement \"%\" type.\n- 1.1.7 Python 3 compatibility tweaks (2.5 to 2.7 and 3.2 are supported).\n- 1.1.6 add \"e\" and \"g\" field types; removed redundant \"h\" and \"X\";\n removed need for explicit \"#\".\n- 1.1.5 accept textual dates in more places; Result now holds match span\n positions.\n- 1.1.4 fixes to some int type conversion; implemented \"=\" alignment; added\n date/time parsing with a variety of formats handled.\n- 1.1.3 type conversion is automatic based on specified field types. Also added\n \"f\" and \"n\" types.\n- 1.1.2 refactored, added compile() and limited ``from parse import *``\n- 1.1.1 documentation improvements\n- 1.1.0 implemented more of the `Format Specification Mini-Language`_\n and removed the restriction on mixing fixed-position and named fields\n- 1.0.0 initial release\n\nThis code is copyright 2012-2019 Richard Jones \nSee the end of the source file for the license of use.", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/r1chardj0n3s/parse", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "parse", "package_url": "https://pypi.org/project/parse/", "platform": "", "project_url": "https://pypi.org/project/parse/", "project_urls": { "Homepage": "https://github.com/r1chardj0n3s/parse" }, "release_url": "https://pypi.org/project/parse/1.12.1/", "requires_dist": null, "requires_python": "", "summary": "parse() is the opposite of format()", "version": "1.12.1" }, "last_serial": 5693766, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "3897c25ec45853b1e8314d04c175d19b", "sha256": "545fd0e4862011896316f3c36ab6b672733ecc4a06ac3d84b6e16a1f4caac9a7" }, "downloads": -1, "filename": "parse-1.0.0.tar.gz", "has_sig": false, "md5_digest": "3897c25ec45853b1e8314d04c175d19b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3768, "upload_time": "2011-11-17T06:33:50", "url": "https://files.pythonhosted.org/packages/87/a5/286d63ead2f448cb677ba6927cb3d2927e94930440d6333b634ea8b7f645/parse-1.0.0.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "4063992b9c048233891e086f5c2fe336", "sha256": "4d110efa25e36caf8dc4b2e966d227ba021185d26aacc30e3f0e498a9e7b8334" }, "downloads": -1, "filename": "parse-1.1.0.tar.gz", "has_sig": false, "md5_digest": "4063992b9c048233891e086f5c2fe336", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6090, "upload_time": "2011-11-18T00:44:26", "url": "https://files.pythonhosted.org/packages/a3/bd/7f85fb15fadc06c5e038ec45880e6fc393fd58aad5cb2b372dcbd893538c/parse-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "fe655dac7d5e5786acbedad24adb22d0", "sha256": "c383901d5e15b8f3f6c265d1afbb4e8a1011b9611bdf11104a2fdacd5fa9b4e7" }, "downloads": -1, "filename": "parse-1.1.1.tar.gz", "has_sig": false, "md5_digest": "fe655dac7d5e5786acbedad24adb22d0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6260, "upload_time": "2011-11-18T00:55:23", "url": "https://files.pythonhosted.org/packages/d6/6a/e067b870bdf02c1677fcb2a08ced2a77a814824c221e47fc66f43fb9bb9e/parse-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "f7963221deb0e6bdc1ac97028c265e54", "sha256": "e0351e79ba2f603c3531ef4d246871270c40fa21a6caccaa8229c1102aa95321" }, "downloads": -1, "filename": "parse-1.1.2.tar.gz", "has_sig": false, "md5_digest": "f7963221deb0e6bdc1ac97028c265e54", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6650, "upload_time": "2011-11-18T06:43:04", "url": "https://files.pythonhosted.org/packages/dd/a7/dfa52c8c01519450791fbdbdbde8d8898a69e805f65d39e5f55b90698c80/parse-1.1.2.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "77b00bac29063113768a207f80af31da", "sha256": "c9b93221bb79e8e56e1243ac4dafc0757adb550ac5a5044d153f04c879ec67dc" }, "downloads": -1, "filename": "parse-1.1.3.tar.gz", "has_sig": false, "md5_digest": "77b00bac29063113768a207f80af31da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7395, "upload_time": "2011-11-18T08:05:54", "url": "https://files.pythonhosted.org/packages/e9/f6/1a8e05495799bc341c389404225ab9422010ce5d5655de61214298be761a/parse-1.1.3.tar.gz" } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "24fe8e8d6b2f5d7351e81558f0591c79", "sha256": "724f128e2c4456feb1aefe3e363f506cc77eb07f27e797e53036d77cb6a65820" }, "downloads": -1, "filename": "parse-1.1.4.tar.gz", "has_sig": false, "md5_digest": "24fe8e8d6b2f5d7351e81558f0591c79", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12336, "upload_time": "2011-11-21T03:44:22", "url": "https://files.pythonhosted.org/packages/56/2a/da88e95d428faffc89f7ab65c62441b1ec0e769e2310d772f7e9f484e38e/parse-1.1.4.tar.gz" } ], "1.1.5": [ { "comment_text": "", "digests": { "md5": "d8452fcff2991faf64dda4c508ac9bcb", "sha256": "d06cade6847639856a6ad0051d7ddb879a6637751784562cc0d9609b0ebe64e1" }, "downloads": -1, "filename": "parse-1.1.5.tar.gz", "has_sig": false, "md5_digest": "d8452fcff2991faf64dda4c508ac9bcb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13217, "upload_time": "2011-11-21T04:41:29", "url": "https://files.pythonhosted.org/packages/4a/05/c91dd83208e77e8c53c12a4713166a02972a113c233e9c38fbf7725ffd86/parse-1.1.5.tar.gz" } ], "1.1.6": [ { "comment_text": "", "digests": { "md5": "81cff9a9219c9c40672603997abf64f9", "sha256": "374d9c0e3d3f4dfbad783f10d40a5716e665565382ab9486cc1d3634920073b7" }, "downloads": -1, "filename": "parse-1.1.6.tar.gz", "has_sig": false, "md5_digest": "81cff9a9219c9c40672603997abf64f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13710, "upload_time": "2011-11-21T07:38:39", "url": "https://files.pythonhosted.org/packages/05/29/0b1459826151b96e661325c6dfae96967b8b38ed594d43b65c00e14d5a05/parse-1.1.6.tar.gz" } ], "1.1.7": [ { "comment_text": "", "digests": { "md5": "33fcbdc7038fcf91212388ad06a5852d", "sha256": "3bf61a91696d2287c270f0c0a998d972ec9b39c4984b9e9d65d5ad2c23a881bf" }, "downloads": -1, "filename": "parse-1.1.7.tar.gz", "has_sig": false, "md5_digest": "33fcbdc7038fcf91212388ad06a5852d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13795, "upload_time": "2011-11-21T23:53:52", "url": "https://files.pythonhosted.org/packages/d0/8f/1c0644597f25993095b4c85fb27ea76b697d4addf604ba3dcae912b40ba5/parse-1.1.7.tar.gz" } ], "1.1.8": [ { "comment_text": "", "digests": { "md5": "b2c763a3189d3bd206f5f1543af2ff29", "sha256": "e701233f9277922053434e3f6180efdc088791dbf643f4aa70a730c4a1b46dcf" }, "downloads": -1, "filename": "parse-1.1.8.tar.gz", "has_sig": false, "md5_digest": "b2c763a3189d3bd206f5f1543af2ff29", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15490, "upload_time": "2011-11-22T02:36:59", "url": "https://files.pythonhosted.org/packages/6e/17/68e23391b36568bf3af3207acd2bd0c3e6c6bfbf85eb7777c1daf9cbfa06/parse-1.1.8.tar.gz" } ], "1.1.9": [ { "comment_text": "", "digests": { "md5": "7b3611ac60492b83f7e3663ae2cdc2aa", "sha256": "d391eefeb8ee087939599461f446929e41bc08c52a2620fc49da9f02aafa07a2" }, "downloads": -1, "filename": "parse-1.1.9.tar.gz", "has_sig": false, "md5_digest": "7b3611ac60492b83f7e3663ae2cdc2aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15526, "upload_time": "2011-11-22T04:49:25", "url": "https://files.pythonhosted.org/packages/ac/53/8f81fbc71c45137a3cd2d4ae285af84caa65210358bf7635c65c8d303833/parse-1.1.9.tar.gz" } ], "1.10.0": [ { "comment_text": "", "digests": { "md5": "c5f12d7a50ff450989cd6c148c5780a3", "sha256": "b4cec127aa48ed3303d8f5f58eaf375f893f0e278b5b110262589c5a4a1f3c56" }, "downloads": -1, "filename": "parse-1.10.0.tar.gz", "has_sig": false, "md5_digest": "c5f12d7a50ff450989cd6c148c5780a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36697, "upload_time": "2019-01-22T23:00:49", "url": "https://files.pythonhosted.org/packages/3c/dd/ef548716519709fb6e24dceb0c516543d076493c30018c4f0c3da5cc7850/parse-1.10.0.tar.gz" } ], "1.11.0": [ { "comment_text": "", "digests": { "md5": "ce7cd6fc258e1d7584e5177b79b35056", "sha256": "953e893ca4f6eb05a579f73a1f6abed0903bf935774b078ce1a3ab9eeb4fd6c1" }, "downloads": -1, "filename": "parse-1.11.0.tar.gz", "has_sig": false, "md5_digest": "ce7cd6fc258e1d7584e5177b79b35056", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36918, "upload_time": "2019-01-22T23:30:44", "url": "https://files.pythonhosted.org/packages/da/fa/a7af78d0cfd6fdbf0886f275840c10ad32fc1009f22adba625ceb41f383c/parse-1.11.0.tar.gz" } ], "1.11.1": [ { "comment_text": "", "digests": { "md5": "9148ef37ebcbd959e39619b4af6d1a7e", "sha256": "870dd675c1ee8951db3e29b81ebe44fd131e3eb8c03a79483a58ea574f3145c2" }, "downloads": -1, "filename": "parse-1.11.1.tar.gz", "has_sig": false, "md5_digest": "9148ef37ebcbd959e39619b4af6d1a7e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37027, "upload_time": "2019-01-23T02:03:44", "url": "https://files.pythonhosted.org/packages/60/1c/065a39ceaf2f2e1ed74130bda8c87b71e01a2315d78ab612af86c0914abb/parse-1.11.1.tar.gz" } ], "1.12.0": [ { "comment_text": "", "digests": { "md5": "649533e892bc0043b69840b85f52b457", "sha256": "1b68657434d371e5156048ca4a0c5aea5afc6ca59a2fea4dd1a575354f617142" }, "downloads": -1, "filename": "parse-1.12.0.tar.gz", "has_sig": false, "md5_digest": "649533e892bc0043b69840b85f52b457", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37213, "upload_time": "2019-04-07T01:13:24", "url": "https://files.pythonhosted.org/packages/c4/c0/324d280a3298cdad806c3fb64eef31aed5c4dbd15b72a309498fb71c6a17/parse-1.12.0.tar.gz" } ], "1.12.1": [ { "comment_text": "", "digests": { "md5": "8fc634769f1d841f14a52dd731ca447a", "sha256": "a5fca7000c6588d77bc65c28f3f21bfce03b5e44daa8f9f07c17fe364990d717" }, "downloads": -1, "filename": "parse-1.12.1.tar.gz", "has_sig": false, "md5_digest": "8fc634769f1d841f14a52dd731ca447a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28314, "upload_time": "2019-08-18T07:35:17", "url": "https://files.pythonhosted.org/packages/84/4d/5578a484f4a3ec5d4440a95731a104a96a12a6fb57385292d3e7b74d8f6d/parse-1.12.1.tar.gz" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "c4278e7091249d46758f12fcc2f84c4c", "sha256": "d6059766d2d718afd4ea77eb58bb04ff8351bd401817b4584ecf60eced854d79" }, "downloads": -1, "filename": "parse-1.3.tar.gz", "has_sig": false, "md5_digest": "c4278e7091249d46758f12fcc2f84c4c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14719, "upload_time": "2011-11-23T00:18:37", "url": "https://files.pythonhosted.org/packages/a8/74/a4fe3b8e09bbd8f38ce331679027a8bc899d1f3d1e7b861ede6ad84ae94c/parse-1.3.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "3fbcb1d01f5db4e8862f709f975cd48b", "sha256": "5619a88894c8d5391d110e400113e8af548216ea02d6aad7aa4713b42ea725e3" }, "downloads": -1, "filename": "parse-1.3.1.tar.gz", "has_sig": false, "md5_digest": "3fbcb1d01f5db4e8862f709f975cd48b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14825, "upload_time": "2011-11-25T02:02:48", "url": "https://files.pythonhosted.org/packages/1c/71/1ec5d7c7d37a38a508340c9f3ed14db64f055226a666b9fec85aff61a826/parse-1.3.1.tar.gz" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "c8a15ca61b6c58a743fd2585f974c359", "sha256": "84fc6010975c504350748fd2e064847455376b5744cd6791101f86653c3cf56b" }, "downloads": -1, "filename": "parse-1.3.2.tar.gz", "has_sig": false, "md5_digest": "c8a15ca61b6c58a743fd2585f974c359", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18806, "upload_time": "2011-11-25T02:05:19", "url": "https://files.pythonhosted.org/packages/7e/1e/99a6bb8efa7c65866b3d2d3d3e9edf55a4ae76dc6a5b7351af291b579b86/parse-1.3.2.tar.gz" } ], "1.3.3": [ { "comment_text": "", "digests": { "md5": "0c7331bef55a0f967628af34624c062c", "sha256": "95aba8823d38506afb4f343ad2c9d819f2aff724aefecc994355cbd10ff20780" }, "downloads": -1, "filename": "parse-1.3.3.tar.gz", "has_sig": false, "md5_digest": "0c7331bef55a0f967628af34624c062c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18846, "upload_time": "2011-11-29T01:25:48", "url": "https://files.pythonhosted.org/packages/29/c7/5d004e69b52046e4311ad649ab1c31a340ebf95f2ee33f3e4103c5921cc0/parse-1.3.3.tar.gz" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "6de28ecb842f3e47fbe09cd12123a304", "sha256": "64fa919781780b474284563690a6e3a97e3efcdef90a0011131a76877e2cb7a5" }, "downloads": -1, "filename": "parse-1.4.tar.gz", "has_sig": false, "md5_digest": "6de28ecb842f3e47fbe09cd12123a304", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19225, "upload_time": "2011-12-05T06:24:41", "url": "https://files.pythonhosted.org/packages/1c/e4/ec9d433880ec02c400c8031c012beb40aa7ede0558c90c6c66c941967f0f/parse-1.4.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "144c20400860b2d3d36106beee70d5cf", "sha256": "8737b733a195dd9cac9b8190cd61dd3737c6b5bb4d8070156c26539382f80b45" }, "downloads": -1, "filename": "parse-1.4.1.tar.gz", "has_sig": false, "md5_digest": "144c20400860b2d3d36106beee70d5cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19312, "upload_time": "2012-02-01T00:29:53", "url": "https://files.pythonhosted.org/packages/97/b5/f266f1fdf72b633f488bc7ab121cf862d6c863f7e9537226774756afa589/parse-1.4.1.tar.gz" } ], "1.5": [ { "comment_text": "", "digests": { "md5": "4f6774f1b8b11cd65be201df68303d64", "sha256": "3b466f1eb7d41fba2786858aa6ebeea7c78e8f96fdfaad934fa013523b875052" }, "downloads": -1, "filename": "parse-1.5.tar.gz", "has_sig": true, "md5_digest": "4f6774f1b8b11cd65be201df68303d64", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20371, "upload_time": "2012-09-26T06:17:08", "url": "https://files.pythonhosted.org/packages/ce/93/399b60dc5e5d7b9736aa8b82bce95c0b6f2e981d890de7b2c8df77aebdd2/parse-1.5.tar.gz" } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "a0add5b847407019d97d0ff6db3da36c", "sha256": "e144fdb3dae0912d043e05c2df9e64932a4c838493944dfaea86550bb76ed0f0" }, "downloads": -1, "filename": "parse-1.5.1.tar.gz", "has_sig": true, "md5_digest": "a0add5b847407019d97d0ff6db3da36c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20681, "upload_time": "2012-09-28T01:19:25", "url": "https://files.pythonhosted.org/packages/68/48/f3c1e552b11b15570c712adf54d4d67e4b4307609fd5f07e30452aac64c0/parse-1.5.1.tar.gz" } ], "1.5.2": [ { "comment_text": "", "digests": { "md5": "051f11b5958cbcc66533c9c3158a3a5f", "sha256": "8455daf7a014d74354f00163825e970b20b89329d72527b82e6da722b16bd868" }, "downloads": -1, "filename": "parse-1.5.2.tar.gz", "has_sig": true, "md5_digest": "051f11b5958cbcc66533c9c3158a3a5f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20810, "upload_time": "2012-09-28T22:36:39", "url": "https://files.pythonhosted.org/packages/7f/cf/c6ef1fbc3bd5ff7979afd2680073b682858f1ed191b5d73d7c5f7e2d6422/parse-1.5.2.tar.gz" } ], "1.5.3": [ { "comment_text": "", "digests": { "md5": "3f07164386f1ae782828af8fb356d0e2", "sha256": "39e9df64dca922e4159b5628f497071ec99b63e0153bc1322ca1a5127455ac38" }, "downloads": -1, "filename": "parse-1.5.3.tar.gz", "has_sig": true, "md5_digest": "3f07164386f1ae782828af8fb356d0e2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20895, "upload_time": "2012-10-15T23:29:25", "url": "https://files.pythonhosted.org/packages/41/a7/7a6c049164ec9c64d62fe89770316a5c12039691391409d8b0276b1d7b76/parse-1.5.3.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "6382a10446eaf3f26ca281562feb06a0", "sha256": "0700c84ae4583fbbb05e3e0ea74e3d1a72a2bb76a87fcccca7220e502a0132f6" }, "downloads": -1, "filename": "parse-1.6.0.tar.gz", "has_sig": true, "md5_digest": "6382a10446eaf3f26ca281562feb06a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22519, "upload_time": "2012-12-03T05:14:17", "url": "https://files.pythonhosted.org/packages/9d/e4/7b66988b7cd741292b10032506d2c73757a5c655173d78dd99d4978f0ee2/parse-1.6.0.tar.gz" } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "d82bc6fc1202249f4d811da97b1848f6", "sha256": "64c46b158fad5e3e02fd97b55c6b32ed87458cfa0beeb1f0239fedbfe04f2cd7" }, "downloads": -1, "filename": "parse-1.6.1.tar.gz", "has_sig": true, "md5_digest": "d82bc6fc1202249f4d811da97b1848f6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23084, "upload_time": "2012-12-04T04:34:22", "url": "https://files.pythonhosted.org/packages/12/5a/245050e94413e3b8b8730caba85db69e2447c4764142217dedddd89c75c8/parse-1.6.1.tar.gz" } ], "1.6.2": [ { "comment_text": "", "digests": { "md5": "ddc5810a209876296857bf85f541ce80", "sha256": "dbfd73f092719a534201a5f1707d6404491c142e5b4bb42154dc08e89b2bbf7c" }, "downloads": -1, "filename": "parse-1.6.2.tar.gz", "has_sig": true, "md5_digest": "ddc5810a209876296857bf85f541ce80", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23260, "upload_time": "2013-06-21T00:33:18", "url": "https://files.pythonhosted.org/packages/26/7a/e1e7becaf0eb508fc741eaf6785de59a1f947e30854a21ce5f4b8080e88b/parse-1.6.2.tar.gz" } ], "1.6.3": [ { "comment_text": "", "digests": { "md5": "d5b22f098cabd75cb8ca3341ecd348d4", "sha256": "a3881a39b21179fecaf754b9b822127d52db72b22e574eecb0fc2c5bc578b5bd" }, "downloads": -1, "filename": "parse-1.6.3.tar.gz", "has_sig": true, "md5_digest": "d5b22f098cabd75cb8ca3341ecd348d4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23835, "upload_time": "2013-10-15T00:24:58", "url": "https://files.pythonhosted.org/packages/ca/3f/34aad588cb0a4ec6b55288651fb17e87e2ca25a503583e8eb385f18d7fee/parse-1.6.3.tar.gz" } ], "1.6.4": [ { "comment_text": "", "digests": { "md5": "87bfd55c25d1aea2d7499197254f3a6f", "sha256": "a7cccad221632f1e2553d585b428b20d362738311e6f58933ef46b4389c16054" }, "downloads": -1, "filename": "parse-1.6.4.tar.gz", "has_sig": true, "md5_digest": "87bfd55c25d1aea2d7499197254f3a6f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24025, "upload_time": "2014-05-02T06:47:07", "url": "https://files.pythonhosted.org/packages/fd/f2/8d4e26b44e2ba68d6256ad184fc0751fd364024aaed1764521fec8ace600/parse-1.6.4.tar.gz" } ], "1.6.5": [ { "comment_text": "", "digests": { "md5": "c012619ca8a1532bfd64d79a9bc3e16d", "sha256": "c9545154ba6b0ede5b52c2877443a463dfc02f14fe43525d15255311939c3a72" }, "downloads": -1, "filename": "parse-1.6.5.tar.gz", "has_sig": true, "md5_digest": "c012619ca8a1532bfd64d79a9bc3e16d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24357, "upload_time": "2014-10-16T06:06:27", "url": "https://files.pythonhosted.org/packages/b9/eb/44c70a5704fdf55d26a33070a9a13a03f0d66a5f6b72cadf75620d9dc4c0/parse-1.6.5.tar.gz" } ], "1.6.6": [ { "comment_text": "", "digests": { "md5": "34121de9f078ed0ca6c0ba80a1af4fa0", "sha256": "efac1e5be02c04b28e99920d863e8a9c88ba5464f5e03e7a39c0907127387e16" }, "downloads": -1, "filename": "parse-1.6.6-py2-none-any.whl", "has_sig": true, "md5_digest": "34121de9f078ed0ca6c0ba80a1af4fa0", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 24133, "upload_time": "2014-11-17T04:20:39", "url": "https://files.pythonhosted.org/packages/88/f2/1a6c905c7a3d156c3d665a1bfa1ef3ca3d6de287840d5662b53744f62f8b/parse-1.6.6-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b7869836ebd4bf1faefc13a6de1b2dde", "sha256": "a4862be306f334c36ae7adc73af028c56ca0139b8e39435e935bde8d481dd99e" }, "downloads": -1, "filename": "parse-1.6.6-py3-none-any.whl", "has_sig": true, "md5_digest": "b7869836ebd4bf1faefc13a6de1b2dde", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 24137, "upload_time": "2014-11-17T04:21:55", "url": "https://files.pythonhosted.org/packages/83/c2/ad86ed2b91b20f94d33a017b5f2f8f515056b781071bc53fe91ee3bf30b4/parse-1.6.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "11bc8c60a30fe52db4ac9a827653d0ca", "sha256": "71435aaac494e08cec76de646de2aab8392c114e56fe3f81c565ecc7eb886178" }, "downloads": -1, "filename": "parse-1.6.6.tar.gz", "has_sig": true, "md5_digest": "11bc8c60a30fe52db4ac9a827653d0ca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24638, "upload_time": "2014-11-17T04:19:27", "url": "https://files.pythonhosted.org/packages/c3/e3/c2ca7f10c481b84ba7bf8c35c595ee4825d828fce7838fffc57f0ea0acc9/parse-1.6.6.tar.gz" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "589074b6df821d04c3fddf957edf0011", "sha256": "0b4290b90b3b06c7db335ad63415c695df87aabaa132f2540dc5856b4076f398" }, "downloads": -1, "filename": "parse-1.7.0.tar.gz", "has_sig": true, "md5_digest": "589074b6df821d04c3fddf957edf0011", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27083, "upload_time": "2017-02-27T00:06:44", "url": "https://files.pythonhosted.org/packages/47/be/186412e5571072b0da04e38c4b9431343a5fd51b0ea9eb42ef5241435558/parse-1.7.0.tar.gz" } ], "1.8.0": [ { "comment_text": "", "digests": { "md5": "6ea7e32cb35810113137f6073fb30639", "sha256": "8b4f28bbe7c0f24981669ea92b2ba704ee63b5346027e82be30118bb5788ff10" }, "downloads": -1, "filename": "parse-1.8.0.tar.gz", "has_sig": true, "md5_digest": "6ea7e32cb35810113137f6073fb30639", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28327, "upload_time": "2017-02-27T06:44:48", "url": "https://files.pythonhosted.org/packages/ae/87/f7fc0cdf512f45e69faf59eb29459f83f39537f5e538300b23013a03d886/parse-1.8.0.tar.gz" } ], "1.8.1": [ { "comment_text": "", "digests": { "md5": "c2b35d34c8a8946deb6fe0c78494c608", "sha256": "33f697f9e08bc204e72a3bab07cf4315ebc60497f62cc26c1a7263cadba0b764" }, "downloads": -1, "filename": "parse-1.8.1.tar.gz", "has_sig": true, "md5_digest": "c2b35d34c8a8946deb6fe0c78494c608", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27902, "upload_time": "2017-06-01T00:21:43", "url": "https://files.pythonhosted.org/packages/7f/59/e9c17439a4e99b21e54eabd6b4cee3dad84091c0d512da9912800dff3af6/parse-1.8.1.tar.gz" } ], "1.8.2": [ { "comment_text": "", "digests": { "md5": "42002338551bdfa0f01bbe4e679a17dd", "sha256": "8048dde3f5ca07ad7ac7350460952d83b63eaacecdac1b37f45fd74870d849d2" }, "downloads": -1, "filename": "parse-1.8.2.tar.gz", "has_sig": true, "md5_digest": "42002338551bdfa0f01bbe4e679a17dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27980, "upload_time": "2017-06-01T00:26:21", "url": "https://files.pythonhosted.org/packages/13/71/e0b5c968c552f75a938db18e88a4e64d97dc212907b4aca0ff71293b4c80/parse-1.8.2.tar.gz" } ], "1.8.4": [ { "comment_text": "", "digests": { "md5": "fa69ab2fe846f9b183411391f7c6897b", "sha256": "c3cdf6206f22aeebfa00e5b954fcfea13d1b2dc271c75806b6025b94fb490939" }, "downloads": -1, "filename": "parse-1.8.4.tar.gz", "has_sig": false, "md5_digest": "fa69ab2fe846f9b183411391f7c6897b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30911, "upload_time": "2018-05-27T00:24:28", "url": "https://files.pythonhosted.org/packages/79/e1/522401e2cb06d09497f2f56baa3b902116c97dec6f448d02b730e63b44a8/parse-1.8.4.tar.gz" } ], "1.9.0": [ { "comment_text": "", "digests": { "md5": "fd1157824c9246a8b7f050afcac852cb", "sha256": "9dd6048ea212cd032a342f9f6aa2b7bc222f7407c7e37bdc2777fecd36897437" }, "downloads": -1, "filename": "parse-1.9.0.tar.gz", "has_sig": false, "md5_digest": "fd1157824c9246a8b7f050afcac852cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36362, "upload_time": "2018-10-03T23:18:09", "url": "https://files.pythonhosted.org/packages/b6/98/809e53e5778c59c4af9eb920605e7a8ab439407efbe89a6d51a46efd1937/parse-1.9.0.tar.gz" } ], "1.9.1": [ { "comment_text": "", "digests": { "md5": "23d65010a8fb841ac7d3e7d12c0be1ad", "sha256": "a9924452e369f56f0223ebb2081183f59dab71066b9cb8a3b0e441e89d29e1f9" }, "downloads": -1, "filename": "parse-1.9.1.tar.gz", "has_sig": false, "md5_digest": "23d65010a8fb841ac7d3e7d12c0be1ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36520, "upload_time": "2019-01-22T22:44:06", "url": "https://files.pythonhosted.org/packages/9f/c2/b4cee23cc2c7e695e1cf9244b6cda793f776765cde0f1c36f8734cc8437d/parse-1.9.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "8fc634769f1d841f14a52dd731ca447a", "sha256": "a5fca7000c6588d77bc65c28f3f21bfce03b5e44daa8f9f07c17fe364990d717" }, "downloads": -1, "filename": "parse-1.12.1.tar.gz", "has_sig": false, "md5_digest": "8fc634769f1d841f14a52dd731ca447a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28314, "upload_time": "2019-08-18T07:35:17", "url": "https://files.pythonhosted.org/packages/84/4d/5578a484f4a3ec5d4440a95731a104a96a12a6fb57385292d3e7b74d8f6d/parse-1.12.1.tar.gz" } ] }