{ "info": { "author": "Vale Tolpegin", "author_email": "regex4dummies@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "Intended Audience :: Education", "Intended Audience :: Information Technology", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 2.7", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Artificial Intelligence", "Topic :: Scientific/Engineering :: Human Machine Interfaces", "Topic :: Scientific/Engineering :: Information Analysis", "Topic :: Text Processing", "Topic :: Text Processing :: Filters", "Topic :: Text Processing :: General", "Topic :: Text Processing :: Indexing", "Topic :: Text Processing :: Linguistic" ], "description": "regex4dummies: A Simple Way To Find Patterns\n============================================\n\n.. image:: https://travis-ci.org/DarkmatterVale/regex4dummies.svg?branch=master\n :target: https://travis-ci.org/DarkmatterVale/regex4dummies\n\n.. image:: https://codeclimate.com/github/DarkmatterVale/regex4dummies/badges/gpa.svg\n :target: https://codeclimate.com/github/DarkmatterVale/regex4dummies\n :alt: Code Climate\n\n.. image:: https://codeclimate.com/github/DarkmatterVale/regex4dummies/badges/issue_count.svg\n :target: https://codeclimate.com/github/DarkmatterVale/regex4dummies\n :alt: Issue Count\n\nSimple pattern finding in strings and natural language processing. Checkout regex4dummies' website at https://darkmattervale.github.io/regex4dummies/\n\n\nFeatures\n----------\n\n- Automatic pattern detection ( semantic and literal )\n- Multiple parsers ( implementations of nltk, pattern, and nlpnet )\n- Keyword searching to find specific phrases within text\n- Topic analysis & Important information extraction\n- Tokenizer and sentence dependency identifier\n- Phrase extraction ( noun, verb, prepositional )\n- String comparison\n\n\nRoadmap\n----------\n\nSome features I plan to implement in the future:\n\n- Machine Learning. This will allow the parsers to learn multiple grammatical \u201cstyles\u201d and be able to successfully parse a much wider selection of strings\n- Additional parsers\n\nIf you have feature requests, feel free to add an issue to the Github issue tracker. All contributions and requests are appreciated!\n\n\nUsage\n-------\n\nregex4dummies is very easy to use. Simply import the library, get some strings, and compare them!\n\n.. code-block:: Python\n\n from regex4dummies import regex4dummies\n from regex4dummies import Toolkit\n\n # Creating strings\n strings = [ \"This is the first test string.\", \"This is the second test string.\" ]\n\n regex = regex4dummies()\n\n # Identifying literal patterns in strings\n print regex.compare_strings( parser='default', pattern_detection=\"literal\", text=strings )\n\n # Identifying semantic patterns in strings using the nltk parser\n print regex.compare_strings( parser='nltk', pattern_detection=\"semantic\", text=strings )\n\nAbove is regex4dummies in its simplest form. It allows for additional features as well, including:\n\n.. code-block:: Python\n\n # Display the version of regex4dummies you are using\n print regex.__version__\n\n # To use the other parsers, replace the above line of code with either of the following:\n # print regex.compare_strings( parser='pattern', pattern_detection=\"semantic\", text=strings )\n # print regex.compare_strings( parser='nlpnet', pattern_detection=\"semantic\", text=strings )\n\n # To call all of the parsers, replace the above line of code with the following:\n # print regex.compare_strings( parser='', pattern_detection=\"semantic\", text=strings )\n\n # To get the topics of the strings, call the get_topics function\n print regex.get_topics( text=strings )\n\n # Printing pattern information\n pattern_information = regex.get_sentence_information()\n for objects in pattern_information:\n print \"[ Pattern ] : \" + objects.pattern\n print \"[ Subject ] : \" + objects.subject\n print \"[ Verb ] : \" + objects.verb\n print \"[ Object ] : \" + objects.object[0]\n print \"[ Prep Phrases ] : \" + str( objects.prepositional_phrases )\n print \"[ Reliability Score ] : \" + str( objects.reliability_score )\n print \"[ Applicability Score ] : \" + str( objects.applicability_score )\n print \"\"\n\nA newly released set of features include a tokenizer and dependency finder function. To use them, simply give a string as the first parameter, and the name of the parser you would like to use as the second for both functions.\n\n.. code-block:: Python\n\n # Testing the toolkit functions\n tool_tester = Toolkit()\n\n # Testing the tokenizer functions\n print tool_tester.tokenize( text=\"This is a test string.\", parser=\"\" )\n\n # Testing the dependency functions\n print tool_tester.find_dependencies( text=\"This is a test string.\", parser=\"pattern\" )\n\nOther features included are demonstrated below.\n\n.. code-block:: Python\n\n # Testing the information extraction functions\n regex.extract_important_information( text=[ \"This is a test string.\" ] )\n\n # Testing the ability to extract phrases\n print \"Noun Phrases: \" + str( tool_tester.extract_noun_phrases( text=\"This is a test string.\" ) )\n print \"Verb Phrases(Pattern): \" + str( tool_tester.extract_verb_phrases( text=\"This is a test string.\", parser=\"pattern\" ) )\n print \"Verb Phrases(Nlpnet): \" + str( tool_tester.extract_verb_phrases( text=\"This is a test string.\", parser=\"nlpnet\" ) )\n print \"Prepositional Phrases: \" + str( tool_tester.extract_prepositional_phrases( text=\"This is a test string in the house.\" ) )\n\n print \"String comparison: \" + str( tool_tester.compare_strings( String1=\"This is a test string.\", String2=\"This is a test string.\" ) )\n\n\nInstallation\n------------\n\nTo install this library, use pip.\n\n::\n\n $ pip install regex4dummies\n\nIn addition to the library, wget is a required command-line command to use the nlpnet parser. If you do not have wget or cannot get it, follow the below directions to still get the functionality of the nlpnet parser.\n\nInstructions to install the required dependency for nlpnet:\n\n1. Download the nlpnet_dependency file on the most recent release found in Github ( please not, when uncompressed, this file is over 350 MB large ).\n2. Place this directory into the same directory that nltk-data is located ( if you don't have that installed, just run the library and go through the GUI downloader )\n\nThat's it! The nlpnet parser should now be able to be used.\n\n\nPatch Notes\n-------------\n\nv1.4.6: Code refactoring, Download system rework\n\n- Brought code up to PEP8 standards\n- Redid download system. No more non-functional GUI; it uses automatic installation. In addition, the over size of the dependencies has decreased to ~700 MB from ~1.5 GB\n\n\nContributing\n--------------\n\nContributors are welcome and much needed! regex4dummies is still under heavy development, and needs all of the help it can get. If you have any feature ideas, feel free to create an issue on the github repository ( https://github.com/darkmattervale/regex4dummies/issues ) or fork the repository and create your addition.\n\nAny help you can give is much appreciated. The more help we get, the better regex4dummies will perform. Thanks for contributing!\n\n\nLicense\n---------\n\nPlease see LICENSE.txt for information about the MIT license\n\n\nCitations\n-----------\n\nnlpnet:\n\n- Fonseca, E. R. and Rosa, J.L.G. Mac-Morpho Revisited: Towards Robust Part-of-Speech Tagging. Proceedings of the 9th Brazilian Symposium in Information and Human Language Technology, 2013. p. 98-107 [PDF]", "description_content_type": null, "docs_url": null, "download_url": null, "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://darkmattervale.github.io/regex4dummies", "keywords": "TextBlob,NLTK,Pattern,NLP", "license": "MIT", "maintainer": null, "maintainer_email": null, "name": "regex4dummies", "package_url": "https://pypi.org/project/regex4dummies/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/regex4dummies/", "project_urls": { "Homepage": "https://darkmattervale.github.io/regex4dummies" }, "release_url": "https://pypi.org/project/regex4dummies/1.4.6/", "requires_dist": null, "requires_python": null, "summary": "A NLP library that simplifies pattern finding in strings", "version": "1.4.6" }, "last_serial": 1877708, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "d75f5caff659cee6f52a201f21161b62", "sha256": "9c02079cec906bcb5070b3b061442422eab2348731f714b123467a2011da8489" }, "downloads": -1, "filename": "regex4dummies-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d75f5caff659cee6f52a201f21161b62", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 5632, "upload_time": "2015-06-24T00:13:31", "url": "https://files.pythonhosted.org/packages/33/94/ca7e9b19550d46bf7a9cd8ff937073c77b8e630d36ee5983734f4975e6f3/regex4dummies-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "17fdba15fa2e4d4ad3dc81269df021c9", "sha256": "1e9b00e32257ee89827e600988e6da153af21984cc3b2d2a6e23f3341c1d87fe" }, "downloads": -1, "filename": "regex4dummies-1.0.0.tar.gz", "has_sig": false, "md5_digest": "17fdba15fa2e4d4ad3dc81269df021c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3835, "upload_time": "2015-06-24T00:13:46", "url": "https://files.pythonhosted.org/packages/44/7f/2a18fa924c5ddba627f86aef3e95c43d377e3b0addcf5a3222e8ff729f2a/regex4dummies-1.0.0.tar.gz" } ], "1.0.1": [], "1.0.2": [ { "comment_text": "", "digests": { "md5": "f8f02ee4ed9e794e70ed75d28487e81e", "sha256": "b81395b605ecb1a29b58e96b057030b3504362dd351b57eb989d0539f67118ec" }, "downloads": -1, "filename": "regex4dummies-1.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f8f02ee4ed9e794e70ed75d28487e81e", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 7568, "upload_time": "2015-06-25T01:50:23", "url": "https://files.pythonhosted.org/packages/b0/6c/500011a4ee21ae02871a36c5650d8fd117cce5878c017bc5860e8cac3ccb/regex4dummies-1.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "abffdbcbff1b5211993f75d1a6cfa7cb", "sha256": "29cd14609843d2033a1641e2701f01839a04537b6e256d2fc693575c526edc8b" }, "downloads": -1, "filename": "regex4dummies-1.0.2.tar.gz", "has_sig": false, "md5_digest": "abffdbcbff1b5211993f75d1a6cfa7cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4851, "upload_time": "2015-06-25T01:50:38", "url": "https://files.pythonhosted.org/packages/d5/28/e271d88eeb7b4b5aac29cae1e6059ec435e553b57d86eb077c5b95f12f28/regex4dummies-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "cb6aa52c500336d31ff5e6b1e2a7667d", "sha256": "b0989040497cb3aa95871abdd1cd7962f3a4487d5792bc8433e7b000336673de" }, "downloads": -1, "filename": "regex4dummies-1.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cb6aa52c500336d31ff5e6b1e2a7667d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 8838, "upload_time": "2015-06-25T13:13:01", "url": "https://files.pythonhosted.org/packages/b0/9f/80cea4f01b181c6b930faafe7095414b36827292a7eba0a9d9dfcfa2d531/regex4dummies-1.0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2b136a74109545ab8752a35f7132bdbe", "sha256": "d74fcec0aea98f67c57a7c312c7c4404823f0268685194c705d7c87656c40a7b" }, "downloads": -1, "filename": "regex4dummies-1.0.3.tar.gz", "has_sig": false, "md5_digest": "2b136a74109545ab8752a35f7132bdbe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5767, "upload_time": "2015-06-25T13:13:12", "url": "https://files.pythonhosted.org/packages/69/b9/1684da24d3420b27ab2d9fd16ac1b06177ffc288aa82fed42d739367812c/regex4dummies-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "b8087c4c0fde374b8c2a73c3c7329979", "sha256": "a882cc46d2c88f18019292cc1f2ad23128960bc71708c5ad0238934d584ffc10" }, "downloads": -1, "filename": "regex4dummies-1.0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b8087c4c0fde374b8c2a73c3c7329979", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 10345, "upload_time": "2015-06-26T13:57:53", "url": "https://files.pythonhosted.org/packages/fe/a7/3d34626235238a856deb04bf0605ebf8b3e2491df2496ac70e9bbb6d0987/regex4dummies-1.0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "986d6b29ac78c2a509df10c14f1d9691", "sha256": "d9b25eee8d9d63e290955646db348ad159368369d01036cd17ffd7c622c37354" }, "downloads": -1, "filename": "regex4dummies-1.0.4.tar.gz", "has_sig": false, "md5_digest": "986d6b29ac78c2a509df10c14f1d9691", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6584, "upload_time": "2015-06-26T13:58:07", "url": "https://files.pythonhosted.org/packages/f5/eb/a650e466f7ef8ec48c499f614e31edc130f8530b1fdc4feff70a5a1063fb/regex4dummies-1.0.4.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "16ee0474d0883bffe5cffe77522cb533", "sha256": "663989d0495535b09d0ac163e6f190b3a322450e63d0f7e39d2fa28d42b7cbec" }, "downloads": -1, "filename": "regex4dummies-1.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "16ee0474d0883bffe5cffe77522cb533", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 14130, "upload_time": "2015-06-27T23:37:02", "url": "https://files.pythonhosted.org/packages/47/a8/3a5ce06ef0ba732926a81d9b4e2fced0c1bdf0c51a807757191dd1d9bd63/regex4dummies-1.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ee94cc13b671014744ce4253e194cf0d", "sha256": "6c68f9279f71883b5f0d3d75e847f1768a2a132c1a41c8d40f9741dfc1b45195" }, "downloads": -1, "filename": "regex4dummies-1.1.0.tar.gz", "has_sig": false, "md5_digest": "ee94cc13b671014744ce4253e194cf0d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10487, "upload_time": "2015-06-27T23:37:13", "url": "https://files.pythonhosted.org/packages/ec/21/7f9322ddd9c9b7509d6b2d8cda0fe101bceeb9774d9b1f8c5ef4f09a7ba2/regex4dummies-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "5882965b8be7d056d3d3f9d8615ad80b", "sha256": "b92c645c09d1df6682def9362d02ce15758acf9cd334cca528b9ec10c48e2d73" }, "downloads": -1, "filename": "regex4dummies-1.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5882965b8be7d056d3d3f9d8615ad80b", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 14662, "upload_time": "2015-06-28T22:36:06", "url": "https://files.pythonhosted.org/packages/73/78/670475b9ee31e97429d4be15444d3f1178defbb035d609b7a00bdde4f4b5/regex4dummies-1.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1071fa179df9adc3cbaa722596baa115", "sha256": "384191a35b8bd9ec4a6225a09495266096ed16e59aa2acd2c30789d768b31336" }, "downloads": -1, "filename": "regex4dummies-1.1.1.tar.gz", "has_sig": false, "md5_digest": "1071fa179df9adc3cbaa722596baa115", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10953, "upload_time": "2015-06-28T22:36:14", "url": "https://files.pythonhosted.org/packages/cf/0d/0c2a45a20e9debb9a6dd7fd3be6edbade12fbb6625002cf79ae2c0fbecb4/regex4dummies-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "7c73ea3f67654c2dc8536efe2a872bc3", "sha256": "38b1a7a904959d8b04bb29820f1ccc8cd550b37344e382763479adcf15283348" }, "downloads": -1, "filename": "regex4dummies-1.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7c73ea3f67654c2dc8536efe2a872bc3", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 14667, "upload_time": "2015-06-28T22:46:30", "url": "https://files.pythonhosted.org/packages/39/7b/fbd80c61669fe1ee84fea9fa6a747c5f1d20293e6b60fd1faed30a19b24a/regex4dummies-1.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "63a16281c54fcc30327aa7de3ef44179", "sha256": "c0ca736f71b05b23e570b2d3dee466d0c76bad11e6f6a363ffd14357b00b4246" }, "downloads": -1, "filename": "regex4dummies-1.1.2.tar.gz", "has_sig": false, "md5_digest": "63a16281c54fcc30327aa7de3ef44179", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10948, "upload_time": "2015-06-28T22:46:41", "url": "https://files.pythonhosted.org/packages/0c/07/622b7864241b078ddcb015628964607b190cbd49ffcd6e95673c59bde292/regex4dummies-1.1.2.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "9e69bcabc1e699301eea6bf1c6c08ea7", "sha256": "ee51300b8a83b3bc30a3e0195d282a1bdd31bfc248621101a0dc3c86576e0628" }, "downloads": -1, "filename": "regex4dummies-1.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9e69bcabc1e699301eea6bf1c6c08ea7", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 14877, "upload_time": "2015-06-28T22:56:04", "url": "https://files.pythonhosted.org/packages/78/88/7e0e27db55b1c8d3eb3aae33ac5e9d3caeed2279c5dc66be72c5867a2974/regex4dummies-1.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3aa6b0589380228d5795e763e88c6755", "sha256": "5e585f9e27a3061300278b82322b37f8b8dce51574b08b3782043fd294ac6e6a" }, "downloads": -1, "filename": "regex4dummies-1.1.3.tar.gz", "has_sig": false, "md5_digest": "3aa6b0589380228d5795e763e88c6755", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11205, "upload_time": "2015-06-28T22:56:15", "url": "https://files.pythonhosted.org/packages/bd/57/f76f8e9b8947e01b0e9f5d51bb37edf7763ab2765912c530bf0f1bf701ba/regex4dummies-1.1.3.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "f2d3131611eb2a4084d2c0a37cee6bf1", "sha256": "5f654888c5c9fb5d46bd3d188495daa1c13dbe044c98699d95d41b5d795be596" }, "downloads": -1, "filename": "regex4dummies-1.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f2d3131611eb2a4084d2c0a37cee6bf1", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 20104, "upload_time": "2015-07-01T12:43:31", "url": "https://files.pythonhosted.org/packages/f5/ac/b84632297451a1cfe02d2e7e958187f9988e131d675769baec3c05633e43/regex4dummies-1.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3c3b4bc745a41268063721b310d9a140", "sha256": "e2dd0bb6500c5cba38f1b92faa6a3d89df8604e978ff62418cdb34f57b73180b" }, "downloads": -1, "filename": "regex4dummies-1.2.1.tar.gz", "has_sig": false, "md5_digest": "3c3b4bc745a41268063721b310d9a140", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15853, "upload_time": "2015-07-01T12:43:42", "url": "https://files.pythonhosted.org/packages/23/b5/b108298b20f13032453b8c32110d8e04b525271c0c28be0b9a5385098199/regex4dummies-1.2.1.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "0edb6c75f13c2372c702e69e5942f265", "sha256": "85a03dccc2833ee3c74d9fb664cb33370893b7281c9cf5b58e98fc39d479469c" }, "downloads": -1, "filename": "regex4dummies-1.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0edb6c75f13c2372c702e69e5942f265", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 20373, "upload_time": "2015-07-06T14:32:48", "url": "https://files.pythonhosted.org/packages/5f/04/043fc742807f99f4320c9bb107097eecce7365adf2710182fa0e8b4ff24f/regex4dummies-1.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2c2b1d4daae1df0ebacc35faa89675de", "sha256": "8083a6892c01c776d8926231888cd50b96dbd71e2fc2161e3a44f7792f61d33c" }, "downloads": -1, "filename": "regex4dummies-1.3.0.tar.gz", "has_sig": false, "md5_digest": "2c2b1d4daae1df0ebacc35faa89675de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16108, "upload_time": "2015-07-06T14:32:58", "url": "https://files.pythonhosted.org/packages/6d/16/d35cb408797fd7e4de5082f20c739c79dd3c5a92bfcf3897e96fb19ada96/regex4dummies-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "2b800455b65bbc0159fb59e4d1bcda4e", "sha256": "1024cb94cf888fb39379a07f44eb8cb4b31d6c868a1bcbc93f17a0ac4c55666c" }, "downloads": -1, "filename": "regex4dummies-1.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2b800455b65bbc0159fb59e4d1bcda4e", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 20783, "upload_time": "2015-07-07T12:52:38", "url": "https://files.pythonhosted.org/packages/f0/bf/d52ec50b19580ffa744bc52442ced7648d20a5144d4c403f6f0dbce484cc/regex4dummies-1.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fc0693622758cddf8238d04b6dfc218f", "sha256": "f1dbc01d4a6987c28abfa02685a559e24959350905d46984bf995a1c1c8e73d3" }, "downloads": -1, "filename": "regex4dummies-1.3.1.tar.gz", "has_sig": false, "md5_digest": "fc0693622758cddf8238d04b6dfc218f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16366, "upload_time": "2015-07-07T12:52:27", "url": "https://files.pythonhosted.org/packages/df/3d/5427ace9b2b7a67dc88c0fe5b3e0b0653f6ef03e56b9efcb08a3225e0a09/regex4dummies-1.3.1.tar.gz" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "bb41754bd3b4852d84cbbdb9f4fbb780", "sha256": "4078c056af2990e7b0d5baf590b4dca373f80c079ec04d2b28a1912680a18846" }, "downloads": -1, "filename": "regex4dummies-1.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bb41754bd3b4852d84cbbdb9f4fbb780", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 21800, "upload_time": "2015-07-08T13:56:07", "url": "https://files.pythonhosted.org/packages/4f/35/37ae5289550e7a3d84cc78c7849e5ec690720dfd722c76e45d445786c7cc/regex4dummies-1.3.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1bf465021a38fcfb028f35e819b62176", "sha256": "847b97308ab67e45263739f060da0a4c76253eefcd42dc92052c673a27f10ad0" }, "downloads": -1, "filename": "regex4dummies-1.3.2.tar.gz", "has_sig": false, "md5_digest": "1bf465021a38fcfb028f35e819b62176", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17245, "upload_time": "2015-07-08T13:56:17", "url": "https://files.pythonhosted.org/packages/35/45/e3dd7946e73a2f4567bc0b3f86407696715bcfc70904dd4e932b00c7bf17/regex4dummies-1.3.2.tar.gz" } ], "1.3.3": [ { "comment_text": "", "digests": { "md5": "b7b27b6f00c1b00b3d50a89238f01e13", "sha256": "9e61ffd2b80e2eebaf4c4526fa433cb2edb508085e9ffba63d98868f71fe6515" }, "downloads": -1, "filename": "regex4dummies-1.3.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b7b27b6f00c1b00b3d50a89238f01e13", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 23139, "upload_time": "2015-07-13T01:55:32", "url": "https://files.pythonhosted.org/packages/b7/1f/9d2270772549c5200e3df84dd5fd1e51c93cef5f5249af1402b02221398e/regex4dummies-1.3.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "66ced47fb8ad4023402d5837c1d94be5", "sha256": "d3d2c789cb8d0e26c4120b7edde4f764b4ea33381b85fb6d726b478438c0b3d9" }, "downloads": -1, "filename": "regex4dummies-1.3.3.tar.gz", "has_sig": false, "md5_digest": "66ced47fb8ad4023402d5837c1d94be5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18710, "upload_time": "2015-07-13T01:55:44", "url": "https://files.pythonhosted.org/packages/1b/df/59d4961805b33c979334082d94a5e68a77f9ded02b309d6319f3888b33b9/regex4dummies-1.3.3.tar.gz" } ], "1.3.4": [ { "comment_text": "", "digests": { "md5": "be045552c8407c6eedfcba36cc557782", "sha256": "bb40eccc7b92ced4574462a675cf1cf1a44adda6b193aef12a855ae44753bb62" }, "downloads": -1, "filename": "regex4dummies-1.3.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "be045552c8407c6eedfcba36cc557782", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 23940, "upload_time": "2015-07-20T21:13:27", "url": "https://files.pythonhosted.org/packages/83/6b/e214d9aad66244d7c48f5f62677b68c7d9ebaa1192f74f52eff90d2e6b9d/regex4dummies-1.3.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9c915354426de88b09590526fa5bae17", "sha256": "9f65dff04bc003979de344264c80425f45b9f8c2886dc138afc2a45ef90c87a1" }, "downloads": -1, "filename": "regex4dummies-1.3.4.tar.gz", "has_sig": false, "md5_digest": "9c915354426de88b09590526fa5bae17", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19416, "upload_time": "2015-07-20T21:13:37", "url": "https://files.pythonhosted.org/packages/be/e4/50e34c3b9cd326cd38f2fe7f760653ec69b62470d4c44a3b9dd8067b0344/regex4dummies-1.3.4.tar.gz" } ], "1.3.5": [ { "comment_text": "", "digests": { "md5": "716fc6518a38b9cb6032ddd05670c8e2", "sha256": "5d4599f5475a7c84acc0ac35d762848354f269a6a4ebcb7c19cc8fcb97c14f91" }, "downloads": -1, "filename": "regex4dummies-1.3.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "716fc6518a38b9cb6032ddd05670c8e2", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 21890, "upload_time": "2015-07-24T21:39:55", "url": "https://files.pythonhosted.org/packages/53/cf/f0900997b5288aa062bdc88e7b78f065346569b6f989bf7a0ac04aadf94c/regex4dummies-1.3.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d6ae7ec3d7c4e2256f4dbcac38f83756", "sha256": "a3dfb29bd369b8ac11b5cd0401f4f85056564b995686e9e937d3b06a6ada6924" }, "downloads": -1, "filename": "regex4dummies-1.3.5.tar.gz", "has_sig": false, "md5_digest": "d6ae7ec3d7c4e2256f4dbcac38f83756", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17227, "upload_time": "2015-07-24T21:40:05", "url": "https://files.pythonhosted.org/packages/ce/a5/524a3f1ca0159c319d0918634ffe7b650de9f8d4ccbacfe0edabd5006ec8/regex4dummies-1.3.5.tar.gz" } ], "1.3.6": [ { "comment_text": "", "digests": { "md5": "bbb4e2b332ef2b9901a0f8b7a65e673a", "sha256": "2ea937fa2f68fe7e6f01638f236cfbc44f60e118c41395b9c7e614b9967b9fa0" }, "downloads": -1, "filename": "regex4dummies-1.3.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bbb4e2b332ef2b9901a0f8b7a65e673a", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 29505, "upload_time": "2015-07-25T13:50:50", "url": "https://files.pythonhosted.org/packages/b2/45/b7f8587b1f04dd3b7ccb4fc74fbe5d78720d772b12442051cf5c6d14795e/regex4dummies-1.3.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "03042f17b73d3a1feb0d51bf1f10976c", "sha256": "1ae7603786754bd0222c3102e810f6a6889b5d27aecb40eadea3dd74c4917c8a" }, "downloads": -1, "filename": "regex4dummies-1.3.6.tar.gz", "has_sig": false, "md5_digest": "03042f17b73d3a1feb0d51bf1f10976c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21603, "upload_time": "2015-07-25T13:50:38", "url": "https://files.pythonhosted.org/packages/6d/f8/f7a118471bfd40977a3b23692272de5becd7f0738a53f904211d9f160e91/regex4dummies-1.3.6.tar.gz" } ], "1.3.7": [ { "comment_text": "", "digests": { "md5": "449eb41fd2abe511f2232d1ae6aa0165", "sha256": "6c9ce6b66c84474d57d4201dd25e1a4dbdf39d35a294b40100064b42493bd812" }, "downloads": -1, "filename": "regex4dummies-1.3.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "449eb41fd2abe511f2232d1ae6aa0165", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 30277, "upload_time": "2015-07-28T17:29:02", "url": "https://files.pythonhosted.org/packages/75/b5/a72082b6f26b3c0d38653fd9d8b5d788bc80cebf59c53ab20e0e7f247b2a/regex4dummies-1.3.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7a8ec1efd86d3a4bd545d6715b0a94f2", "sha256": "0c4f13f1d29fea5fc3f1f15bfb6a386efc7e0250082509cd9a49b72f8013df9a" }, "downloads": -1, "filename": "regex4dummies-1.3.7.tar.gz", "has_sig": false, "md5_digest": "7a8ec1efd86d3a4bd545d6715b0a94f2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22336, "upload_time": "2015-07-28T17:28:51", "url": "https://files.pythonhosted.org/packages/78/d0/315debf084b21a70087a2880f1621b8e41e3aa55cd9b2209622186833208/regex4dummies-1.3.7.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "565e41330fc9237aefaebcff1a4067bb", "sha256": "2a00430841bb4ec0bd70e48c9049ad488e77ac96b2a300ca3be038df9f3e637b" }, "downloads": -1, "filename": "regex4dummies-1.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "565e41330fc9237aefaebcff1a4067bb", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 28747, "upload_time": "2015-08-01T16:40:11", "url": "https://files.pythonhosted.org/packages/78/cf/52b54689e8f1da7d56005c8058d93706fcf9456f7987c23653d8d217e12c/regex4dummies-1.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "93f65467a8baa1f828e81efa529680d3", "sha256": "766ff0978a02a47e3a13e68818b0f8ad5ddf8951815cdc609cfc3a0e1a441252" }, "downloads": -1, "filename": "regex4dummies-1.4.0.tar.gz", "has_sig": false, "md5_digest": "93f65467a8baa1f828e81efa529680d3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19044, "upload_time": "2015-08-01T16:39:50", "url": "https://files.pythonhosted.org/packages/43/47/ec1fa5473dda07659efe1e1fbb046272355450893a6848315394e18f3153/regex4dummies-1.4.0.tar.gz" } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "af8f80b816a647dad011a28671f2ebae", "sha256": "377433076e913c1d7584730b65442e575f8cc812c00955edfc3f9ef95e188f74" }, "downloads": -1, "filename": "regex4dummies-1.4.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "af8f80b816a647dad011a28671f2ebae", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 30786, "upload_time": "2015-08-27T16:26:48", "url": "https://files.pythonhosted.org/packages/ee/93/cd921e32cb99ed251e38f7257102bcaaf00570baaf36b8d29c599d6ee5f9/regex4dummies-1.4.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4890e5490c7b316b4ba4b3a6f7326ca0", "sha256": "2c436766d187a44b17afcf5834acb72639059d53cae58372fc1544ca8b2f415b" }, "downloads": -1, "filename": "regex4dummies-1.4.2.tar.gz", "has_sig": false, "md5_digest": "4890e5490c7b316b4ba4b3a6f7326ca0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20640, "upload_time": "2015-08-27T16:26:36", "url": "https://files.pythonhosted.org/packages/7d/7f/584e458648ea7e11c3f391caabb1329b1b46bdc6f30968f39d0bd5db2465/regex4dummies-1.4.2.tar.gz" } ], "1.4.3": [ { "comment_text": "", "digests": { "md5": "88cdb6d647943772988a28cd7942c5eb", "sha256": "5257854ddc8abf39fe10c3d405d939047cd5b152e6ff93e634b735b078ddd9dc" }, "downloads": -1, "filename": "regex4dummies-1.4.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "88cdb6d647943772988a28cd7942c5eb", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 37306, "upload_time": "2015-09-24T01:08:23", "url": "https://files.pythonhosted.org/packages/38/21/33fecfff6dc9ba4de2f220ed1b222128412fdb08b66d4fb6012d43a747d4/regex4dummies-1.4.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1708003c08c0957ccbec83d17d931b93", "sha256": "68eabd4d553c527e9a5a417d0e5f3d68da1d76980a7986a0cc64b80d4fb11ba4" }, "downloads": -1, "filename": "regex4dummies-1.4.3.tar.gz", "has_sig": false, "md5_digest": "1708003c08c0957ccbec83d17d931b93", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23725, "upload_time": "2015-09-24T01:08:09", "url": "https://files.pythonhosted.org/packages/f7/00/c5f3bb257d36fb0d3e7cfcdcb29926892e03448b9ef04838748457e0ce33/regex4dummies-1.4.3.tar.gz" } ], "1.4.4": [ { "comment_text": "", "digests": { "md5": "026c154932c6b3f9945f86f49f5989d9", "sha256": "a1d9363f4e497a2353a72d7e8de345789e0c5319d76fc5060b7a687b3b1d2ddb" }, "downloads": -1, "filename": "regex4dummies-1.4.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "026c154932c6b3f9945f86f49f5989d9", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 51904, "upload_time": "2015-11-06T00:45:52", "url": "https://files.pythonhosted.org/packages/dd/f4/3da224c760e3e23bb7dd3b6fdbf1987a1bd115a5d0e53a660e7f6444bc06/regex4dummies-1.4.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "18bca8777c0186cc4a84da6c912a3786", "sha256": "f00223b1ce3949929e0e66402e460f6109fae52c97502d2955f389b4398a9335" }, "downloads": -1, "filename": "regex4dummies-1.4.4.tar.gz", "has_sig": false, "md5_digest": "18bca8777c0186cc4a84da6c912a3786", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25405, "upload_time": "2015-11-06T00:46:06", "url": "https://files.pythonhosted.org/packages/b1/2d/a2a5c1f1d2f211fd2e60f0ec5e399c4700a75eafd7cbb571ed8841b9e89a/regex4dummies-1.4.4.tar.gz" } ], "1.4.5": [ { "comment_text": "", "digests": { "md5": "5a5af1908970f10a6ce1cc893e727db1", "sha256": "b7e219769da3a410fd1c816731ca79ab0bdd654fe53a57a1a70f5160ae6c0684" }, "downloads": -1, "filename": "regex4dummies-1.4.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5a5af1908970f10a6ce1cc893e727db1", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 52427, "upload_time": "2015-11-18T01:08:52", "url": "https://files.pythonhosted.org/packages/79/e7/670985e76270bb37549f1e8d9fdc627700b43d8ac7c6a225e86345ca2187/regex4dummies-1.4.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a08708216e5f396e68b7a85e44b06a73", "sha256": "aa7d71b61628489db3f266dd0b657485bcff110f668c4359aa1bb5f1a64ade7e" }, "downloads": -1, "filename": "regex4dummies-1.4.5.tar.gz", "has_sig": false, "md5_digest": "a08708216e5f396e68b7a85e44b06a73", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25515, "upload_time": "2015-11-18T01:09:02", "url": "https://files.pythonhosted.org/packages/9e/c4/97fdce0803bb60977ead7bfef5335fcac02ff74412de29d5c89bf7271e6e/regex4dummies-1.4.5.tar.gz" } ], "1.4.6": [ { "comment_text": "", "digests": { "md5": "373a47b4090c523be05e85962e970fd8", "sha256": "034162cb76069672236abfb7dec0d7ee3bc2e592e9e2e0291e2c96b00e43c16c" }, "downloads": -1, "filename": "regex4dummies-1.4.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "373a47b4090c523be05e85962e970fd8", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 51981, "upload_time": "2015-12-25T23:12:33", "url": "https://files.pythonhosted.org/packages/27/2d/ef3fe8fefa3f2390170e1bce3aabae0532b5f0bd5516b483fb07e3ee2311/regex4dummies-1.4.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1fd09dc2a06d0b039993ab9ec8680ceb", "sha256": "f473eb2c7f161952d78f97fc5a9ac50331d6f9afd7a7ba8633a822bdc791a598" }, "downloads": -1, "filename": "regex4dummies-1.4.6.tar.gz", "has_sig": false, "md5_digest": "1fd09dc2a06d0b039993ab9ec8680ceb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24497, "upload_time": "2015-12-25T23:12:47", "url": "https://files.pythonhosted.org/packages/2a/2a/70b9cfb025208b0b01f278ab55103a3406d88a080be5be10042f91f99f96/regex4dummies-1.4.6.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "373a47b4090c523be05e85962e970fd8", "sha256": "034162cb76069672236abfb7dec0d7ee3bc2e592e9e2e0291e2c96b00e43c16c" }, "downloads": -1, "filename": "regex4dummies-1.4.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "373a47b4090c523be05e85962e970fd8", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 51981, "upload_time": "2015-12-25T23:12:33", "url": "https://files.pythonhosted.org/packages/27/2d/ef3fe8fefa3f2390170e1bce3aabae0532b5f0bd5516b483fb07e3ee2311/regex4dummies-1.4.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1fd09dc2a06d0b039993ab9ec8680ceb", "sha256": "f473eb2c7f161952d78f97fc5a9ac50331d6f9afd7a7ba8633a822bdc791a598" }, "downloads": -1, "filename": "regex4dummies-1.4.6.tar.gz", "has_sig": false, "md5_digest": "1fd09dc2a06d0b039993ab9ec8680ceb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24497, "upload_time": "2015-12-25T23:12:47", "url": "https://files.pythonhosted.org/packages/2a/2a/70b9cfb025208b0b01f278ab55103a3406d88a080be5be10042f91f99f96/regex4dummies-1.4.6.tar.gz" } ] }