{ "info": { "author": "dslackw", "author_email": "d.zlatanidis@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Operating System :: Microsoft :: MS-DOS", "Operating System :: Microsoft :: Windows", "Operating System :: Microsoft :: Windows :: Windows 7", "Operating System :: Microsoft :: Windows :: Windows Vista", "Operating System :: Microsoft :: Windows :: Windows XP", "Operating System :: POSIX", "Operating System :: POSIX :: BSD :: BSD/OS", "Operating System :: POSIX :: BSD :: FreeBSD", "Operating System :: POSIX :: Linux", "Operating System :: POSIX :: Other", "Operating System :: Unix", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.0", "Programming Language :: Python :: 3.1", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Topic :: Text Editors", "Topic :: Text Editors :: Documentation", "Topic :: Text Editors :: Text Processing", "Topic :: Text Editors :: Word Processors", "Topic :: Text Processing :: Filters", "Topic :: Text Processing :: General", "Topic :: Utilities" ], "description": ".. image:: https://img.shields.io/pypi/v/pysed.svg\r\n :target: https://pypi.python.org/pypi/pysed/\r\n.. image:: https://travis-ci.org/dslackw/pysed.svg?branch=master\r\n :target: https://travis-ci.org/dslackw/pysed\r\n.. image:: https://landscape.io/github/dslackw/pysed/master/landscape.png\r\n :target: https://landscape.io/github/dslackw/pysed/master\r\n.. image:: https://img.shields.io/codacy/5ef917a8c6354d8f9d984183c8fb5847.svg\r\n :target: https://www.codacy.com/public/dzlatanidis/pysed/dashboard\r\n.. image:: https://img.shields.io/pypi/dm/pysed.svg\r\n :target: https://pypi.python.org/pypi/pysed\r\n.. image:: https://img.shields.io/badge/license-GPLv3-blue.svg\r\n :target: https://github.com/dslackw/pysed\r\n.. image:: https://img.shields.io/github/stars/dslackw/pysed.svg\r\n :target: https://github.com/dslackw/pysed\r\n.. image:: https://img.shields.io/github/forks/dslackw/pysed.svg\r\n :target: https://github.com/dslackw/pysed\r\n.. image:: https://img.shields.io/github/issues/dslackw/pysed.svg\r\n :target: https://github.com/dslackw/pysed/issues\r\n\r\n.. contents:: Table of Contents:\r\n\r\nAbout\r\n=====\r\n\r\nPysed is a stream editor, is used to perform basic text transformations\r\nfrom a file or from pipeline. It reads text, line by line, from a file \r\nand replace, insert or print all text or specific area.\r\n\r\n\r\nInstallation\r\n------------\r\n\r\n.. code-block:: bash\r\n\r\n $ pip install pysed --upgrade\r\n\r\n uninstall\r\n\r\n $ pip uninstall pysed\r\n \r\n\r\nCommand Line Tool Usage\r\n-----------------------\r\n\r\n.. code-block:: bash\r\n\r\n Usage: pysed [OPTION] {patt} {repl} {lines/max/flag} [[input-file], --write]\r\n\r\n pysed is utility that parses and transforms text\r\n\r\n Optional arguments:\r\n -h, --help Print this help message and exit\r\n -v, --version Print program version and exit\r\n -r, --replace Search and replace text\r\n -f, --findall Find all from pattern in text\r\n -s, --search Search for the first matching\r\n -m, --match Pattern matching in the beginning\r\n -l, --lines Search pattern and print lines\r\n -g, --highlight Highlight and print text\r\n -t, --stat Print text statistics\r\n --write Write changes to file\r\n\r\n\r\n\r\nRegex flags\r\n------------------\r\n\r\n.. list-table::\r\n :widths: 20 80\r\n :header-rows: 1\r\n\r\n * - Syntax\t\r\n - Python syntax,\tMeaning\r\n * - I or IGNORECASE\t\r\n - re.IGNORECASE,\tignore case.\r\n * - M or MULTILINE\t\r\n - re.MULTILINE,\tmake begin/end {^, $} consider each line.\r\n * - S or DOTALL\t\r\n - re.DOTALL,\tmake . match newline too.\r\n * - U or UNICODE\r\n - re.UNICODE,\tmake {\\w, \\W, \\b, \\B} follow Unicode rules.\r\n * - L or LOCALE\r\n - re.LOCALE,\tmake {\\w, \\W, \\b, \\B} follow locale.\r\n * - X or VERBOSE\t\r\n - re.VERBOSE,\tallow comment in regex.\r\n\r\n \r\nUsage Examples\r\n--------------\r\n\r\n.. code-block:: bash\r\n\r\n $ cat text.txt\r\n This is my cat,\r\n whose name is Betty.\r\n This is my dog,\r\n whose name is Frank.\r\n This is my fish,\r\n whose name is George.\r\n This is my goat,\r\n whose name is Adam.\r\n \r\n Replace text:\r\n\r\n $ pysed -r \"name\" \"surname\" text.txt\r\n This is my cat,\r\n whose surname is Betty.\r\n This is my dog,\r\n whose surname is Frank.\r\n This is my fish,\r\n whose surname is George.\r\n This is my goat,\r\n whose surname is Adam.\r\n\r\n Replace text in specific lines:\r\n \r\n $ pysed -r \"name\" \"surname\" 2,4 text.txt\r\n This is my cat,\r\n whose surname is Betty.\r\n This is my dog,\r\n whose surname is Frank.\r\n This is my fish,\r\n whose name is George.\r\n This is my goat,\r\n whose name is Adam.\r\n \r\n Replace text in specific lines and max:\r\n \r\n $ pysed -r \"is\" \"IS\" 1,7/1 text.txt\r\n ThIS is my cat,\r\n whose surname is Betty.\r\n This is my dog,\r\n whose surname is Frank.\r\n This is my fish,\r\n whose name is George.\r\n ThIS is my goat,\r\n whose name is Adam.\r\n\r\n Add character to the beginning of each line:\r\n\r\n $ pysed -r \"^\" \"# \" text.txt\r\n # This is my cat,\r\n # whose name is Betty.\r\n # This is my dog,\r\n # whose name is Frank.\r\n # This is my fish,\r\n # whose name is George.\r\n # This is my goat,\r\n # whose name is Adam.\r\n \r\n Add character to the end of each line:\r\n \r\n $ pysed -r \"$\" \" #\" text.txt\r\n This is my cat, #\r\n whose name is Betty. #\r\n This is my dog, #\r\n whose name is Frank. #\r\n This is my fish, #\r\n whose name is George. #\r\n This is my goat, #\r\n whose name is Adam. #\r\n \r\n Find all matching pattern: \r\n\r\n $ pysed -f \"name \" text.txt\r\n name name name name\r\n \r\n Find all matching pattern in specific lines: \r\n\r\n $ pysed -f \"name \" \"\" 2,4 text.txt\r\n name name\r\n \r\n Search and print lines:\r\n \r\n $ pysed -l \"name\" text.txt\r\n - This is my cat,\r\n 2 whose name is Betty.\r\n - This is my dog,\r\n 4 whose name is Frank.\r\n - This is my fish,\r\n 6 whose name is George.\r\n - This is my goat,\r\n 8 whose name is Adam.\r\n \r\n Highlight text:\r\n\r\n $ pysed -g \"name\" \"red\" text.txt\r\n This is my cat,\r\n whose name is Betty.\r\n This is my dog,\r\n whose name is Frank.\r\n This is my fish,\r\n whose name is George.\r\n This is my goat,\r\n whose name is Adam.\r\n\r\n Print statics text:\r\n\r\n $ pysed -t text.txt\r\n Lines: 8, Words: 32, Chars: 125, Blanks: 27\r\n\r\n Use the argument \"--write\" in any case when you want to save the changes:\r\n \r\n $ pysed -r \"name\" \"surname\" text.txt --write\r\n\r\n \r\n Use as piping:\r\n\r\n $ echo \"This is my cat, whose name is Betty\" | pysed -r \"cat\" \"dog\"\r\n This is my dog, whose name is Betty\r\n\r\n $ repl=\"fish\"\r\n $ echo \"This is my cat, whose name is Betty\" | pysed -r \"cat\" $repl\r\n This is my fish, whose name is Betty\r\n \r\n $ echo \"This is my cat, whose name is Betty\" | pysed -r \"[^\\W]+\" \"-\"\r\n - - - -, - - - -\r\n \r\n $ echo \"This is my cat, whose name is Betty\" | pysed -r \"is\" \"IS\" 1/1\r\n ThIS is my cat, whose name is Betty\r\n\r\n $ echo \"910a13de57dfbdf6f06675db975f8407\" | pysed -r \"[^\\d+]\"\r\n 91013576066759758407\r\n\r\n $ echo \"910a13de57dfbdf6f06675db975f8407\" | pysed -f \"\\d+\"\r\n 910 13 57 6 06675 975 8407\r\n \r\n $ echo \"910a13de57dfbdf6f06675db975f8407\" | pysed -s \"\\d+\"\r\n 910\r\n \r\n $ echo \"910a13de57dfbdf6f06675db975f8407\" | pysed -s \"(\\d+)(\\w+)\" \"\" 0/1\r\n 910\r\n \r\n $ echo \"910a13de57dfbdf6f06675db975f8407\" | pysed -s \"(\\d+)(\\w+)\" \"\" 0/2\r\n a13de57dfbdf6f06675db975f8407\r\n\r\n $ echo \"The temperature today is at +12 degrees Celsius\" | pysed -s \".\\d+\"\r\n +12\r\n \r\n $ echo \"/usr/local/bin\" | pysed -r \"/local\" \"\"\r\n /usr/bin\r\n\r\n $ echo \"/usr/local/bin\" | pysed -r \"/LoCal\" \"\" //IGNORECASE\r\n /usr/bin\r\n\r\n Use with command \"find\". You can use \"find\" and \"pysed\" commands in combination to find \r\n and replace text in multiple files. For example:\r\n\r\n $ find . -name *.py -exec pysed -r \"lefttext\" \"righttext\" {} --write \\;\r\n \r\n this command finds 'lefttext' string in all python files and replace it with 'righttext'.\r\n\r\nPlease report `Issues `_\r\n\r\nCopyright \r\n---------\r\n\r\n- Copyright \u00a9 Dimitris Zlatanidis\r\n- Linux is a Registered Trademark of Linus Torvalds.", "description_content_type": null, "docs_url": null, "download_url": "https://sourceforge.net/projects/python-sed/", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/dslackw/pysed", "keywords": "sed, stream, editor, txt, doc, cli", "license": "-------------------------------------------------------------------------\r\nCopyright (C) 2014-2015 dslackw\r\n\r\nThis program is free software: you can redistribute it and/or modify\r\nit under the terms of the GNU General Public License as published by\r\nthe Free Software Foundation, either version 3 of the License, or\r\n(at your option) any later version.\r\nThis program is distributed in the hope that it will be useful,\r\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\r\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r\nGNU General Public License for more details.\r\nYou should have received a copy of the GNU General Public License\r\nalong with this program. If not, see .\r\n------------------------------------------------------------------------", "maintainer": "dslackw", "maintainer_email": "d.zlatanidis@gmail.com", "name": "pysed", "package_url": "https://pypi.org/project/pysed/", "platform": "", "project_url": "https://pypi.org/project/pysed/", "project_urls": { "Download": "https://sourceforge.net/projects/python-sed/", "Homepage": "https://github.com/dslackw/pysed" }, "release_url": "https://pypi.org/project/pysed/0.7.8/", "requires_dist": null, "requires_python": null, "summary": "CLI utility that parses and transforms text", "version": "0.7.8" }, "last_serial": 1618511, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "2277c82ebbffd47e5eef90b1487889a2", "sha256": "ff0666720b991420776cfd192546fbe905c39754bbe6a85b62c3a67ab44782af" }, "downloads": -1, "filename": "pysed-0.0.1.tar.gz", "has_sig": false, "md5_digest": "2277c82ebbffd47e5eef90b1487889a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13689, "upload_time": "2014-06-10T21:35:31", "url": "https://files.pythonhosted.org/packages/b2/95/ec1dd8f38b7a0bd80c5d27934d2d9c6e7ca26d71d5c422209c4a2263c144/pysed-0.0.1.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "a5c900b6522c30db179014f40a9ffe8d", "sha256": "414d02c52f5b22e9b331d3dade94e9d83349817c0978f0d4f27f020209b2cc36" }, "downloads": -1, "filename": "pysed-0.0.2.tar.gz", "has_sig": false, "md5_digest": "a5c900b6522c30db179014f40a9ffe8d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14759, "upload_time": "2014-06-11T01:08:19", "url": "https://files.pythonhosted.org/packages/b3/76/c86fcd979c4be83724610a0ae2ff6a261291222d4fc33546a5e76f4cfb47/pysed-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "1a8cb00e1ed5b1243a207c9d3e7047cd", "sha256": "75260c21dc62ac06ea90bca3aa5d1224859c2029b51c0bae59c4a0a6b98757c0" }, "downloads": -1, "filename": "pysed-0.0.3.tar.gz", "has_sig": false, "md5_digest": "1a8cb00e1ed5b1243a207c9d3e7047cd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14812, "upload_time": "2014-06-11T13:59:17", "url": "https://files.pythonhosted.org/packages/b3/66/398d5d791f0660ba777a42ee457fcac0ef7e121099596ad0b632b4f808ca/pysed-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "a741f10bd75c64f2c0c9279c33952c8e", "sha256": "2f4bb96968ef4048d12939229fc576915ac5073dfc174daa2d5fb964a57f4d3a" }, "downloads": -1, "filename": "pysed-0.0.4.tar.gz", "has_sig": false, "md5_digest": "a741f10bd75c64f2c0c9279c33952c8e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14800, "upload_time": "2014-06-12T02:25:26", "url": "https://files.pythonhosted.org/packages/d1/ed/88a210894a228bc6526cfb08a7e5ede2d197e1fe0b6288881e2082dece28/pysed-0.0.4.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "cca096ab2717eb7067a111ff2d110764", "sha256": "620d3ed849370205d5b1ea4129a1092aa23e4b7f84f2c598cc7b41015557f559" }, "downloads": -1, "filename": "pysed-0.0.5.tar.gz", "has_sig": false, "md5_digest": "cca096ab2717eb7067a111ff2d110764", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15066, "upload_time": "2014-06-13T23:43:55", "url": "https://files.pythonhosted.org/packages/49/a0/e83d4436e401add663def0bcf3e7f26f9f869dfcd36e45ef9de3e9f10c50/pysed-0.0.5.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "6e1baa75c79c24d6bbace3d4d48539d7", "sha256": "4d010e0ad2df3a558364bf349d43d17541cc265cfb407ea65bcaf098ca5c1c6d" }, "downloads": -1, "filename": "pysed-0.0.6.tar.gz", "has_sig": false, "md5_digest": "6e1baa75c79c24d6bbace3d4d48539d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15128, "upload_time": "2014-06-14T00:58:55", "url": "https://files.pythonhosted.org/packages/72/d7/3462f18571d6dbbe92fa2b42768a35417938a56e45a99bcff1a27d338699/pysed-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "0db6c72a692c6e5b36b98adb9a407a5a", "sha256": "26b019449ccf164076f7d91901e2ab0336d27adeb784d247b6ee0aafd9b412db" }, "downloads": -1, "filename": "pysed-0.0.7.tar.gz", "has_sig": false, "md5_digest": "0db6c72a692c6e5b36b98adb9a407a5a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15486, "upload_time": "2014-06-14T14:10:53", "url": "https://files.pythonhosted.org/packages/9e/dd/506635b64fea5adb19ccbd1c640dad42977753e3667b806e480526be1ba0/pysed-0.0.7.tar.gz" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "bd22eccaee98538d5135a110873b3f78", "sha256": "43eb3438b5ace91fb40d805cd2b54fce79d11f9adf1fecb5a2ada9f906aaf8c8" }, "downloads": -1, "filename": "pysed-0.0.8.tar.gz", "has_sig": false, "md5_digest": "bd22eccaee98538d5135a110873b3f78", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15793, "upload_time": "2014-06-15T04:52:20", "url": "https://files.pythonhosted.org/packages/f4/ef/7c9c5832d357029947d11db997ed1ac91fc56a788f07c2a773a65e5858cf/pysed-0.0.8.tar.gz" } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "7ddc9c142667bd56b0d06d68ad4302e1", "sha256": "bfc69e394d669c72deb27e88ebbd441d6f5d6dc97717caafbcf426a88374825c" }, "downloads": -1, "filename": "pysed-0.0.9.tar.gz", "has_sig": false, "md5_digest": "7ddc9c142667bd56b0d06d68ad4302e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15783, "upload_time": "2014-06-15T13:43:01", "url": "https://files.pythonhosted.org/packages/33/9d/adf5d855b9ee57d7f9482fa7ceff07daf1aedf24fd9e561db1075df26b20/pysed-0.0.9.tar.gz" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "986758f013ff30520f59640fabe640f4", "sha256": "c6071f6a25c36ca56a44690bb12db5fb6acef00df259d1c0b4db4ca7237483a5" }, "downloads": -1, "filename": "pysed-0.1.0.tar.gz", "has_sig": false, "md5_digest": "986758f013ff30520f59640fabe640f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16266, "upload_time": "2014-06-16T03:28:47", "url": "https://files.pythonhosted.org/packages/a3/94/003499d32eb67354f9b3c4c8267fc6005ca1ae3514ef1b0bdd0bfa1676fd/pysed-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "d91ca7a139d98a1526404ebc78e09c51", "sha256": "3d838ead138044a3d01f3603491fbfdedcd1f74e1bb4f07a0aed4c73f1595f1a" }, "downloads": -1, "filename": "pysed-0.1.1.tar.gz", "has_sig": false, "md5_digest": "d91ca7a139d98a1526404ebc78e09c51", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16269, "upload_time": "2014-06-16T22:34:33", "url": "https://files.pythonhosted.org/packages/bf/39/abc1ab8ed0cbe81796a140fcdf3e848a90e2d988f7dbdd5e026c65c430f9/pysed-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "936042b2c5fbddf0cf0dbe85ca06e2be", "sha256": "bca856bff98655c2d61a2325f65645f3d7b06e2528b2fcee62da4db52775ab54" }, "downloads": -1, "filename": "pysed-0.1.2.tar.gz", "has_sig": false, "md5_digest": "936042b2c5fbddf0cf0dbe85ca06e2be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16905, "upload_time": "2014-06-18T07:53:29", "url": "https://files.pythonhosted.org/packages/1a/32/3145029c88aa98958269edb72a04a757927af8babd202ca3c7e44db4f6a5/pysed-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "0d76ec05f0dd4050bbc63d34bf9b3191", "sha256": "02e10014bddebb9cddb6773e600132845ecbcd1b2f01d0a37e101466bc931a80" }, "downloads": -1, "filename": "pysed-0.1.3.tar.gz", "has_sig": false, "md5_digest": "0d76ec05f0dd4050bbc63d34bf9b3191", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16852, "upload_time": "2014-06-19T00:34:55", "url": "https://files.pythonhosted.org/packages/05/38/76a49578f19ee0304db558e70350d4d0d7be97c922f5e478338686cf6b82/pysed-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "c6c769930619a3a77fe09915f33a18b9", "sha256": "8926de091838d0d2d386235ca25181e774b4bc3aee64a3edfc61cee135bf9f5d" }, "downloads": -1, "filename": "pysed-0.1.4.tar.gz", "has_sig": false, "md5_digest": "c6c769930619a3a77fe09915f33a18b9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16913, "upload_time": "2014-06-21T07:49:21", "url": "https://files.pythonhosted.org/packages/b4/5b/6c232e9c65c785e650cab2fc3f84d170e802b60538092654a796c8f32070/pysed-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "51587512a58951cf9765387ac6126fb7", "sha256": "846658199827224089b473a00d505345090e11b6a92526a99441a471c7a8fe22" }, "downloads": -1, "filename": "pysed-0.1.5.tar.gz", "has_sig": false, "md5_digest": "51587512a58951cf9765387ac6126fb7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17319, "upload_time": "2014-06-25T02:50:39", "url": "https://files.pythonhosted.org/packages/40/77/d90c9e6bc36cd46a2024641efea0b43d356963855bdd6fa5df37c41bbc30/pysed-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "5131980fd82cec31b3076f1076cb3de4", "sha256": "29e5a369540a16dd57d35d47c01619c641bb3ace1f228a67752d279a554c4636" }, "downloads": -1, "filename": "pysed-0.1.6.tar.gz", "has_sig": false, "md5_digest": "5131980fd82cec31b3076f1076cb3de4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17368, "upload_time": "2014-06-26T04:30:09", "url": "https://files.pythonhosted.org/packages/8f/89/462f396e826ea24d48ee611a74474c8e7db30a3773d8408cf5c27f91c8b8/pysed-0.1.6.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "9e41fda3f47b620e305b7462e291ccc4", "sha256": "5501a137413797895d0f0fcae0f98c4d04e016f83a99a753066fe39ab55e400e" }, "downloads": -1, "filename": "pysed-0.1.7.tar.gz", "has_sig": false, "md5_digest": "9e41fda3f47b620e305b7462e291ccc4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17417, "upload_time": "2014-06-26T13:20:48", "url": "https://files.pythonhosted.org/packages/52/32/6933bf237403711cc824de838e46bf684c1b6292ccc17fb7d686f6004a01/pysed-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "bb272ba19c5973d9accad851bc6a3a75", "sha256": "179885cdbe2097e56a36190d09464707de8f204e076682c776d1496acce9870c" }, "downloads": -1, "filename": "pysed-0.1.8.tar.gz", "has_sig": false, "md5_digest": "bb272ba19c5973d9accad851bc6a3a75", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17930, "upload_time": "2014-06-28T01:02:56", "url": "https://files.pythonhosted.org/packages/87/f0/3cf2f979f23e84ef92d814601f1737089bdddb36f5289786e6157aaa9424/pysed-0.1.8.tar.gz" } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "5195e4359b009c1dfe6509fbecc91771", "sha256": "ef8802136601f4c35065527443a61ea25665a303433a52b2fb5c7db017a6994e" }, "downloads": -1, "filename": "pysed-0.1.9.tar.gz", "has_sig": false, "md5_digest": "5195e4359b009c1dfe6509fbecc91771", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18206, "upload_time": "2014-06-28T14:34:10", "url": "https://files.pythonhosted.org/packages/0d/27/3e24be2e70e61e42a7a99d781c90a13b4d9c7fd4ca63fb25793a698ce268/pysed-0.1.9.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "47cd7de0b8bf5f4bd72b4e2d157ac427", "sha256": "8753803f171ac45f295cd50c7074e5cb99b7cd09c3daa05f5b536107b1dbfcbf" }, "downloads": -1, "filename": "pysed-0.2.0.tar.gz", "has_sig": false, "md5_digest": "47cd7de0b8bf5f4bd72b4e2d157ac427", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18614, "upload_time": "2014-07-01T14:27:31", "url": "https://files.pythonhosted.org/packages/72/13/2090dc2529e497bfa67d13ce4a473d1889e040b1c008351010ae1da75a1a/pysed-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "36094ec740bc6f73ae158703df51f7c2", "sha256": "f3a95e5d5dd9bb3810cf4c45a520f00a527c9f406b8ea75df33bf8ac418b4926" }, "downloads": -1, "filename": "pysed-0.2.1.tar.gz", "has_sig": false, "md5_digest": "36094ec740bc6f73ae158703df51f7c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18717, "upload_time": "2014-07-03T10:31:02", "url": "https://files.pythonhosted.org/packages/ce/5d/22997eca8b6a11972c1116f3a3d010577ef746ec71b719ecf85fe3a32ac4/pysed-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "c96b6a158aeac2de1ac954622581b578", "sha256": "b256286e5f37c9ca90eb140cd7217fe20d337bda68ef05eacb2a9282a54aeb26" }, "downloads": -1, "filename": "pysed-0.2.2.tar.gz", "has_sig": false, "md5_digest": "c96b6a158aeac2de1ac954622581b578", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18887, "upload_time": "2014-07-04T10:18:19", "url": "https://files.pythonhosted.org/packages/c8/9b/38639f9ec31575fe416c39a188c4524801ba616dbb16f56d6d914bc2f2f8/pysed-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "03c4692d934bf9cb2b7c9ec4dfd79ef5", "sha256": "8e9ceba5f1e2b34912a7c9e0df9ac22202ab277124cf0b6e36020d66bd292715" }, "downloads": -1, "filename": "pysed-0.2.3.tar.gz", "has_sig": false, "md5_digest": "03c4692d934bf9cb2b7c9ec4dfd79ef5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18898, "upload_time": "2014-07-04T15:00:15", "url": "https://files.pythonhosted.org/packages/c9/4c/f74dbfa437aeaa0261943767d09041869b52a3389fcd596d4257cbdf5f6b/pysed-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "261d03fcdc1c5ee1b0f68422ac9719e8", "sha256": "2d845a78176be8b848a578b30876ffbeb8faeddbc63e3a5b0f66d053bd0bf4ac" }, "downloads": -1, "filename": "pysed-0.2.4.tar.gz", "has_sig": false, "md5_digest": "261d03fcdc1c5ee1b0f68422ac9719e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19015, "upload_time": "2014-07-04T22:43:24", "url": "https://files.pythonhosted.org/packages/c1/ab/d259927e69f643e80fc49986a40a1c35aaf61c2f08bcbc87ec68e22f7811/pysed-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "26a7816c88412ec087afe0c639be1f12", "sha256": "7ff1a15e4920b8e94d6fa2ed27b79f4ae1d1dc2e91e8084f9087c193156f5974" }, "downloads": -1, "filename": "pysed-0.2.5.tar.gz", "has_sig": false, "md5_digest": "26a7816c88412ec087afe0c639be1f12", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19343, "upload_time": "2014-07-06T15:46:25", "url": "https://files.pythonhosted.org/packages/c2/9a/6c99b76b3d680584bccfd48dcde0c52cae7730ae45111c01b4e10c5b74e2/pysed-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "4cf334be8c05c32cb947fbf6c201861c", "sha256": "4684dd32c670b0039189801b4f391a5f642e443bf6f43aad9a33a83578b1897e" }, "downloads": -1, "filename": "pysed-0.2.6.tar.gz", "has_sig": false, "md5_digest": "4cf334be8c05c32cb947fbf6c201861c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19592, "upload_time": "2014-07-09T03:34:25", "url": "https://files.pythonhosted.org/packages/63/b5/8008d9fa76e8bb3dbc9d80b1c89bce2296d3798d21ee528946a01532a13a/pysed-0.2.6.tar.gz" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "4c4bb74f5db1de127e787b488fc80a57", "sha256": "addc63fbe90fcb975d6f68ed228c6a83cca557bcf21fe71025948bf28e6d7f95" }, "downloads": -1, "filename": "pysed-0.2.7.tar.gz", "has_sig": false, "md5_digest": "4c4bb74f5db1de127e787b488fc80a57", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19885, "upload_time": "2014-07-13T21:13:37", "url": "https://files.pythonhosted.org/packages/f1/23/75c91b427e8fae3fd4736c8d0fa514b304d16308be6a2431dbdf4ef795b4/pysed-0.2.7.tar.gz" } ], "0.2.8": [ { "comment_text": "", "digests": { "md5": "5431e175d308159f03401d8ab8e8198d", "sha256": "d235e5e2e83a369963e216c51fe84e304a6b426ad64a6c5bc175be50c6e547fc" }, "downloads": -1, "filename": "pysed-0.2.8.tar.gz", "has_sig": false, "md5_digest": "5431e175d308159f03401d8ab8e8198d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19926, "upload_time": "2014-07-13T23:28:03", "url": "https://files.pythonhosted.org/packages/af/48/b6d44fa4e9d972f88b3aff24211f96fd421aa34fca279c1e8734c3b63392/pysed-0.2.8.tar.gz" } ], "0.2.9": [ { "comment_text": "", "digests": { "md5": "6d6db56591362f6a5e5595636a1ea563", "sha256": "bbbd175a831371eeb5e812e12e8f36f27f0c0b0a74e7a0903fae2a3791b382e1" }, "downloads": -1, "filename": "pysed-0.2.9.tar.gz", "has_sig": false, "md5_digest": "6d6db56591362f6a5e5595636a1ea563", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20140, "upload_time": "2014-07-14T03:53:11", "url": "https://files.pythonhosted.org/packages/9c/ad/262ef0fecd5d82feb4ed31ab7ad018b4391733cbdde5aa946a5aede72ccb/pysed-0.2.9.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "815f8ef7b8b537233a94ea0c93109f2c", "sha256": "425bef0e3bc9f6ecd5f9860f2efad1ca79fcd15c0b61fd8f9413957e805bbbbf" }, "downloads": -1, "filename": "pysed-0.3.0.tar.gz", "has_sig": false, "md5_digest": "815f8ef7b8b537233a94ea0c93109f2c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20293, "upload_time": "2014-07-14T12:57:44", "url": "https://files.pythonhosted.org/packages/c1/6f/28f14128e3b0ab3b38ab40fb85f5ca4f6ecea1b7a3afeaf18129dcb7b6f2/pysed-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "29a721bb548c77846b12c4e8a2a4a514", "sha256": "bab9237b57e9c372b97fd1d61d08ac969e1f010c250f46ace14b112f936be9d5" }, "downloads": -1, "filename": "pysed-0.3.1.tar.gz", "has_sig": false, "md5_digest": "29a721bb548c77846b12c4e8a2a4a514", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21041, "upload_time": "2014-07-18T04:38:02", "url": "https://files.pythonhosted.org/packages/34/bb/8325dc616be4836ff14046b3f772b75d58c6d6b2a93cfb367658a4deebc6/pysed-0.3.1.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "a95da05718c73b67c274397072693374", "sha256": "10ad567674dc6239ec9bff38c2cf5cb80bee9597fa17cf9d9f1e1eac0ee0c380" }, "downloads": -1, "filename": "pysed-0.5.0.tar.gz", "has_sig": false, "md5_digest": "a95da05718c73b67c274397072693374", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19802, "upload_time": "2015-04-08T03:09:00", "url": "https://files.pythonhosted.org/packages/11/be/6d232f8c9dffbea6539a52b2ed9dbc5e0d2e808c02b949f08ab65a585851/pysed-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "aeb9d5b386edcb9e71351140c9ed1a13", "sha256": "f6102e1f8baf95df413aabeeda34f5032d1474a88f863fdc0d5b02cff03c55b0" }, "downloads": -1, "filename": "pysed-0.5.1.tar.gz", "has_sig": false, "md5_digest": "aeb9d5b386edcb9e71351140c9ed1a13", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19914, "upload_time": "2015-04-08T19:58:00", "url": "https://files.pythonhosted.org/packages/73/53/1b97a537c4091ceb68ce04ada8c3ce103d1f59e2643a4f752f1e66463e48/pysed-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "eba05671e730241dc110de91140e676c", "sha256": "a5b1dcae98166bcdbce81173c99a15bda6bcfe8debe2b327e55ad4c4341cd681" }, "downloads": -1, "filename": "pysed-0.5.2.tar.gz", "has_sig": false, "md5_digest": "eba05671e730241dc110de91140e676c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20800, "upload_time": "2015-04-09T02:12:54", "url": "https://files.pythonhosted.org/packages/2b/e6/81e3e4a5f126b6bbb2400eae4fcf38b80d94392a6210c402142b967e9a43/pysed-0.5.2.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "e1fc41a903244688cf87555635d3f3da", "sha256": "f494d555e3b76dabf00c50a2f307953e00825e301317a73a7d21302ac94e86af" }, "downloads": -1, "filename": "pysed-0.6.0.tar.gz", "has_sig": false, "md5_digest": "e1fc41a903244688cf87555635d3f3da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22186, "upload_time": "2015-04-09T22:26:46", "url": "https://files.pythonhosted.org/packages/78/e9/9146d301eed090979866279b9e5e82a00a0a9ff5bebe79d476f439b2f3c6/pysed-0.6.0.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "6d5182581df0d0df868f4faf66a74a13", "sha256": "672332d0b5794239f7206d30a58e59f84a33c58f6c71eeecdf0505b3610ccda1" }, "downloads": -1, "filename": "pysed-0.6.2.tar.gz", "has_sig": false, "md5_digest": "6d5182581df0d0df868f4faf66a74a13", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22505, "upload_time": "2015-04-11T04:24:21", "url": "https://files.pythonhosted.org/packages/7d/28/2ccc54c2ab26b6f26aab52808c3bdd178f5e28d8f28c90bc46b62ed7477b/pysed-0.6.2.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "4e35ba3f4c976d5d6234c35cfe9ad5be", "sha256": "2a873a5d8ca7e4bbd4f884a00c1781e5b942f1c73e59b58420a076a6260bdafc" }, "downloads": -1, "filename": "pysed-0.7.0.tar.gz", "has_sig": false, "md5_digest": "4e35ba3f4c976d5d6234c35cfe9ad5be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20906, "upload_time": "2015-04-11T17:37:35", "url": "https://files.pythonhosted.org/packages/a1/f3/1fa859b31ef73eb18c00ca2ec49a60dcdec671188167e1a563a9e8b88df9/pysed-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "3ec09c09e8556cc162f0ccbeedffab69", "sha256": "e4b8101c178ee946de42ead0e6990dd9258b1da6d6191a3175d92bbdb37347d5" }, "downloads": -1, "filename": "pysed-0.7.1.tar.gz", "has_sig": false, "md5_digest": "3ec09c09e8556cc162f0ccbeedffab69", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21027, "upload_time": "2015-04-11T20:58:17", "url": "https://files.pythonhosted.org/packages/bb/c2/e7a218bdc8dae292fdb43dfb565e8a30662952a5ce3c11980a4687e26aa4/pysed-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "c65c54c9a3f89e4263a25343c003fb74", "sha256": "f594bb9cb0db68be494e57f4ad1e8cd70bcfbd034b376644e4551e2a29f6f32e" }, "downloads": -1, "filename": "pysed-0.7.2.tar.gz", "has_sig": false, "md5_digest": "c65c54c9a3f89e4263a25343c003fb74", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21056, "upload_time": "2015-04-12T14:38:21", "url": "https://files.pythonhosted.org/packages/59/5a/a5887d3a9c26874a537bc3ee6f02b54bba8f02c036a73ba3220052badca7/pysed-0.7.2.tar.gz" } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "45b10e2e5cbea5ec35c00c6b58666d72", "sha256": "9478962e7f05092576d5e665bdafce70adaa00c6fb6f28ca432077fbd1d3edea" }, "downloads": -1, "filename": "pysed-0.7.3.tar.gz", "has_sig": false, "md5_digest": "45b10e2e5cbea5ec35c00c6b58666d72", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23246, "upload_time": "2015-04-14T23:23:35", "url": "https://files.pythonhosted.org/packages/1f/7a/c9791217f7d04d73a066a87baf43827aa12d608e9e4bd960985292aca34d/pysed-0.7.3.tar.gz" } ], "0.7.4": [ { "comment_text": "", "digests": { "md5": "b9b9efd0d01ba948f8ca79d402488dde", "sha256": "eaec215e6acaffc437db9cc2c58c8d62bc225729623213bb6e18ef5b646aeb4d" }, "downloads": -1, "filename": "pysed-0.7.4.tar.gz", "has_sig": false, "md5_digest": "b9b9efd0d01ba948f8ca79d402488dde", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21128, "upload_time": "2015-04-18T13:19:01", "url": "https://files.pythonhosted.org/packages/2c/be/a1f958376a5da83fbc6941ec295872bc3e49cf3f959201674fec45f01f95/pysed-0.7.4.tar.gz" } ], "0.7.5": [ { "comment_text": "", "digests": { "md5": "234967c3b3c7d467469fb55a4b0b678a", "sha256": "8cd7f74e6b40e8e323172f1e9d80f019af33f9624e686dd4778ad1bbe075ff1d" }, "downloads": -1, "filename": "pysed-0.7.5.tar.gz", "has_sig": false, "md5_digest": "234967c3b3c7d467469fb55a4b0b678a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20987, "upload_time": "2015-04-20T02:26:50", "url": "https://files.pythonhosted.org/packages/2d/b2/60726ac3a349078b16371b732c86ee9846c97eb77af34aee3a6fc5486cfa/pysed-0.7.5.tar.gz" } ], "0.7.6": [ { "comment_text": "", "digests": { "md5": "5578433ceab5ec4bbfe21b222c499ba5", "sha256": "b75da22ed5f161fe4d62456c33fa5d800946445b2f9eebba44eea7a41ade8a5e" }, "downloads": -1, "filename": "pysed-0.7.6.tar.gz", "has_sig": false, "md5_digest": "5578433ceab5ec4bbfe21b222c499ba5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22722, "upload_time": "2015-04-27T01:38:43", "url": "https://files.pythonhosted.org/packages/cf/34/e13310addb75d691a8e2920f8660966639346aeb55b2aedf82e13f82cf95/pysed-0.7.6.tar.gz" }, { "comment_text": "", "digests": { "md5": "42f14ec732668dc375604a39f5cb8871", "sha256": "ab2fe84f6e4ed9f4de870afb256aef6d06e03284db126bf43df5cb531324842d" }, "downloads": -1, "filename": "pysed-0.7.6.zip", "has_sig": false, "md5_digest": "42f14ec732668dc375604a39f5cb8871", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30069, "upload_time": "2015-04-30T23:48:34", "url": "https://files.pythonhosted.org/packages/35/4e/9494cd69d2068c4e6ac0af77525fcdbbdf78d063a7981aa92973c9c2e000/pysed-0.7.6.zip" } ], "0.7.7": [ { "comment_text": "", "digests": { "md5": "92883ece7f600102a9ad31ac9f13cacd", "sha256": "68f6b7a2d3d01f02b037237356a88b60cc0431f62920e450f2206a0dd4769288" }, "downloads": -1, "filename": "pysed-0.7.7.tar.gz", "has_sig": false, "md5_digest": "92883ece7f600102a9ad31ac9f13cacd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22848, "upload_time": "2015-06-17T01:39:40", "url": "https://files.pythonhosted.org/packages/4b/8d/18177e171809092c3fa097e969083434229097b2afd8aa7e7feaa3136287/pysed-0.7.7.tar.gz" } ], "0.7.8": [ { "comment_text": "", "digests": { "md5": "daee87677454961e7eb0ee523b9338f5", "sha256": "41e926114bdea0380c63d814573e931c494226b060749a0fd6211f88b9126b5e" }, "downloads": -1, "filename": "pysed-0.7.8.tar.gz", "has_sig": false, "md5_digest": "daee87677454961e7eb0ee523b9338f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22810, "upload_time": "2015-07-03T20:03:58", "url": "https://files.pythonhosted.org/packages/d1/ef/685dd52f3ab79a459f89ca115b0dd902db32e46f3d58e72e0e5017de762e/pysed-0.7.8.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "daee87677454961e7eb0ee523b9338f5", "sha256": "41e926114bdea0380c63d814573e931c494226b060749a0fd6211f88b9126b5e" }, "downloads": -1, "filename": "pysed-0.7.8.tar.gz", "has_sig": false, "md5_digest": "daee87677454961e7eb0ee523b9338f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22810, "upload_time": "2015-07-03T20:03:58", "url": "https://files.pythonhosted.org/packages/d1/ef/685dd52f3ab79a459f89ca115b0dd902db32e46f3d58e72e0e5017de762e/pysed-0.7.8.tar.gz" } ] }