{ "info": { "author": "Colin Duquesnoy", "author_email": "colin.duquesnoy@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Win32 (MS Windows)", "Environment :: X11 Applications :: Qt", "Intended Audience :: Developers", "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Topic :: Text Editors :: Integrated Development Environments (IDE)" ], "description": "OpenCobolIDE\n------------\n\n.. image:: https://img.shields.io/pypi/v/OpenCobolIDE.svg\n :target: https://pypi.python.org/pypi/OpenCobolIDE/\n :alt: Latest PyPI version\n\n.. image:: https://img.shields.io/pypi/dm/OpenCobolIDE.svg\n :target: https://pypi.python.org/pypi/OpenCobolIDE/\n :alt: Number of PyPI downloads\n\n.. image:: https://img.shields.io/pypi/l/OpenCobolIDE.svg\n\n.. image:: https://travis-ci.org/OpenCobolIDE/OpenCobolIDE.svg?branch=master\n :target: https://travis-ci.org/OpenCobolIDE/OpenCobolIDE\n :alt: Build status\n\n.. image:: https://coveralls.io/repos/OpenCobolIDE/OpenCobolIDE/badge.svg?branch=master\n :target: https://coveralls.io/r/OpenCobolIDE/OpenCobolIDE?branch=master\n :alt: Coverage Status\n\n\nOpenCobolIDE is a simple and lightweight COBOL IDE based on the GnuCOBOL\ncompiler.\n\n\nThe software is written in Python using `PyQt5`_ (or `PyQt4`_) and `pyQode`_\n\n\nStarting from version 4.7, **OpenCobolIDE has entered in maintainance mode**. **No new features will be accepted, only bug fixes**.\n\nThe next major version of OpenCobolIDE will be `HackEdit`_ , *a brand new project that will replace OCIDE when it is ready, currently in alpha...*\n\nFeatures:\n---------\n\n- COBOL syntax highlighter\n- COBOL code completion\n- COBOL code folding\n- configurable margins\n- navigable tree view of division, sections, paragraphs etc (fully synchronised\n with the code folding panel)\n- auto-indentation\n- tool for computing PIC fields offsets\n- compile as a program (.exe) or as a subprogram (.so/.dll)\n- run the program from the editor or from a configurable external terminal (\n necessary if you are using the SCREEN section).\n- dark color schemes and theme\n- cross platform: works on **GNU/Linux**, **Windows** and **Mac OSX**\n- dbpre integration on Linux, esqlOC on Windows\n\n\nLicense\n-------\n\nOpenCobolIDE is released under the **GPL** version 3\n\n\nDependencies\n------------\n\n- `GnuCOBOL`_\n- `Python3`_ >= 3.3\n- `PyQt5`_ (preferred) or `PyQt4`_\n- `setuptools`_\n\n*Starting from v4.7, the following pure python dependencies are bundled with OCIDE (this makes packaging easier):*\n\n- `pyqode.qt`_\n- `pyqode.core`_\n- `pyqode.cobol`_\n- `Pygments`_\n- `qdarkstyle`_\n- `keyring`_\n- `githubpy`_\n\n\nInstallation\n------------\n\nGNU/Linux\n#########\n\n*Note: starting from v4.6.2, the installed executable name is lowercase: opencobolide*\n\nUbuntu\n++++++\n\nA debian package is available here: https://launchpad.net/cobcide/+download\n\nThis package should work on any Ubuntu version >= 14.04 and on any version\nderived from Ubuntu.\n\nFedora\n++++++\n\nA RPM package for Fedora 23 is available here: https://launchpad.net/cobcide/+download\n\n\nArchLinux\n+++++++++\n\nOpenCobolIDE is available from the `AUR`_.\n\nYou can install using one of the many available AUR helper; e.g. using yaourt::\n\n yaourt -S opencobolide\n\nKaOS\n++++\n\nOpenCobolIDE is up in the KaOs Community Packages (KCP)::\n\n kcp -i gnu-cobol\n kcp -i opencobolide\n\n\nOther distributions\n+++++++++++++++++++\n\nInstall Python3, PyQt5, GnuCOBOL and pip for Python3 using your package manager, then run the following commands::\n\n sudo pip3 install OpenCobolIDE --upgrade\n\n\nNote that if you have both PyQt5 and PyQt4 on your system, the IDE will use\nPyQt5 by default. To force the use of PyQt4, you should set the\n``QT_API`` environment variable to ``pyqt4``.\n\n\nWindows\n#######\n\nThere is a windows installer available here: https://launchpad.net/cobcide/+download\n\nMac OSX\n#######\n\nThere is a dmg image available here: https://launchpad.net/cobcide/+download\n\nBefore running the app, you first have to install the GnuCOBOL compiler, e.g.\nusing homebrew::\n\n brew install gnu-cobol\n\n\nIf you installed the compiler in a non-standard path and it is not recognized\nby the IDE, you can specify the path to the compiler in the preferences\ndialog (``Compiler`` tab)\n\n\nResources\n---------\n\n- `Downloads`_\n- `Source repository`_\n- `Issue tracker`_\n- `Documentation`_\n\n\nScreenshots\n-----------\n\n* Home page:\n\n.. image:: https://raw.githubusercontent.com/OpenCobolIDE/OpenCobolIDE/master/doc/source/_static/Home.png\n :align: center\n\n* Editor:\n\n.. image:: https://raw.githubusercontent.com/OpenCobolIDE/OpenCobolIDE/master/doc/source/_static/MainWindow.png\n :align: center\n\n* Code folding:\n\n.. image:: https://raw.githubusercontent.com/OpenCobolIDE/OpenCobolIDE/master/doc/source/_static/Folding.png\n :align: center\n\n* Offset calculator\n\n.. image:: https://raw.githubusercontent.com/OpenCobolIDE/OpenCobolIDE/master/doc/source/_static/PicOffsets.png\n :align: center\n\n\n* Dark style support\n\n.. image:: https://raw.githubusercontent.com/OpenCobolIDE/OpenCobolIDE/master/doc/source/_static/Dark.png\n :align: center\n\n\n.. _PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/download\n.. _Downloads: https://launchpad.net/cobcide/+download\n.. _Source repository: https://github.com/OpenCobolIDE/OpenCobolIDE/\n.. _Issue tracker: https://github.com/OpenCobolIDE/OpenCobolIDE/issues?state=open\n.. _Documentation: http://opencobolide.readthedocs.org/en/latest/\n.. _Pygments: http://pygments.org/\n.. _pyqode.core: https://github.com/pyQode/pyqode.core/\n.. _pyqode.cobol: https://github.com/pyQode/pyqode.cobol/\n.. _pyqode.qt: https://github.com/pyQode/pyqode.qt/\n.. _GnuCOBOL: http://sourceforge.net/projects/open-cobol/\n.. _setuptools: https://pypi.python.org/pypi/setuptools\n.. _Python3: http://python.org/\n.. _PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/download\n.. _qdarkstyle: https://github.com/ColinDuquesnoy/QDarkStyleSheet\n.. _pyQode: https://github.com/pyQode/\n.. _githubpy: https://pypi.python.org/pypi/githubpy\n.. _keyring: https://pypi.python.org/pypi/keyring\n.. _HackEdit: https://github.com/HackEdit/hackedit\n.. _AUR: https://aur.archlinux.org/packages/opencobolide/", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/OpenCobolIDE/OpenCobolIDE", "keywords": "Cobol; OpenCobol; IDE", "license": "GPL v3", "maintainer": "", "maintainer_email": "", "name": "OpenCobolIDE", "package_url": "https://pypi.org/project/OpenCobolIDE/", "platform": "", "project_url": "https://pypi.org/project/OpenCobolIDE/", "project_urls": { "Homepage": "https://github.com/OpenCobolIDE/OpenCobolIDE" }, "release_url": "https://pypi.org/project/OpenCobolIDE/4.7.6/", "requires_dist": null, "requires_python": "", "summary": "A simple COBOL IDE", "version": "4.7.6" }, "last_serial": 2546179, "releases": { "2.0.1": [ { "comment_text": "", "digests": { "md5": "4bbafde7c4e63da79cc1c19bd2884910", "sha256": "50f73347ef4cd50dd19fba37b890e176fa5f50997962d05b9e753db0c4c9cf00" }, "downloads": -1, "filename": "OpenCobolIDE-2.0.1-py3.3.egg", "has_sig": false, "md5_digest": "4bbafde7c4e63da79cc1c19bd2884910", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 420338, "upload_time": "2013-10-20T21:38:39", "url": "https://files.pythonhosted.org/packages/dc/0d/2e387c3a33cdeb92af02cda510ca21c70fc3d1461b1067fb758e8f4c7f9e/OpenCobolIDE-2.0.1-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "eb7d4914649beed694982577cb1ee6de", "sha256": "de0a550a2112917eff50a5a7d61a711a0c9c6b474d9b0a66f1b6adf45331b4d8" }, "downloads": -1, "filename": "OpenCobolIDE-2.0.1.tar.gz", "has_sig": false, "md5_digest": "eb7d4914649beed694982577cb1ee6de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1024042, "upload_time": "2013-10-20T21:38:34", "url": "https://files.pythonhosted.org/packages/4a/94/1a45682cf562aee7350b162ed6d35a38b2014163dd75fa8373fad40b1040/OpenCobolIDE-2.0.1.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "0c83cc15ab62c0f5b71d16a79d89212c", "sha256": "f3fd94083db9acb44bdcd0243043637f18950ea1f28ff6dbae62b12964764324" }, "downloads": -1, "filename": "OpenCobolIDE-2.1.0-py2.7.egg", "has_sig": false, "md5_digest": "0c83cc15ab62c0f5b71d16a79d89212c", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 421479, "upload_time": "2013-12-08T17:24:10", "url": "https://files.pythonhosted.org/packages/a0/37/65be6f59a1db7f85a8ad3069dc3a8642b26f86e1ab588d4e02c89a348f00/OpenCobolIDE-2.1.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "12e5bd8775f5244657bdffba76ee50b6", "sha256": "512970314c5eafcf4fad86eccc3c641ade1bc2c2291c897c07a3b0d1dfeb3364" }, "downloads": -1, "filename": "OpenCobolIDE-2.1.0-py3.3.egg", "has_sig": false, "md5_digest": "12e5bd8775f5244657bdffba76ee50b6", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 423898, "upload_time": "2013-12-08T17:23:27", "url": "https://files.pythonhosted.org/packages/d1/d9/6ae962e2860d05bfe8b669e6313c55628c2bb74b8b5b38087453c08f4086/OpenCobolIDE-2.1.0-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "d3bc280acadf8469c70987799eb9c9e5", "sha256": "9f7c35f9862e24eaaf33694c1290a32df19df93e3072b32b1a27c481206cebbd" }, "downloads": -1, "filename": "OpenCobolIDE-2.1.0.tar.gz", "has_sig": false, "md5_digest": "d3bc280acadf8469c70987799eb9c9e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1025703, "upload_time": "2013-12-08T17:23:16", "url": "https://files.pythonhosted.org/packages/2d/a3/d12a189a9b2d57ab82d936cb3856f57e3c020a530002af501af3871aa318/OpenCobolIDE-2.1.0.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "465e3e63288b8f2ce456209e7576b532", "sha256": "b4cfaca262e404dc159136669e30503f50d27f24423d87ea577506cf68f8de77" }, "downloads": -1, "filename": "OpenCobolIDE-2.2.0-py2.7.egg", "has_sig": false, "md5_digest": "465e3e63288b8f2ce456209e7576b532", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 267332, "upload_time": "2014-03-08T13:52:13", "url": "https://files.pythonhosted.org/packages/c3/3d/3569cfc5c68d6dea12da78dffa7fafbff42e8aac6599b470ce18228e3a02/OpenCobolIDE-2.2.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "37261394d7e389d3903c2868c2e1bdb2", "sha256": "94b32d613b1404413f34be2e27f425fb1e7bcc41001e1fcd59a0fb905c786ff9" }, "downloads": -1, "filename": "OpenCobolIDE-2.2.0-py3.3.egg", "has_sig": false, "md5_digest": "37261394d7e389d3903c2868c2e1bdb2", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 270533, "upload_time": "2014-03-08T13:52:34", "url": "https://files.pythonhosted.org/packages/82/ec/d6957d337aa820adb4f0d782c464fc83accc99d4c04a04f50101d611bf9d/OpenCobolIDE-2.2.0-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "1d02b544bdfe09c4297e03fe9204b5e9", "sha256": "8abfc2e27497379430e1786a21f79d1fbc8fed5fcc7062bad5b3075bdfc2c5f6" }, "downloads": -1, "filename": "OpenCobolIDE-2.2.0.tar.gz", "has_sig": false, "md5_digest": "1d02b544bdfe09c4297e03fe9204b5e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1527983, "upload_time": "2014-03-08T13:52:06", "url": "https://files.pythonhosted.org/packages/a7/4d/86e6ac4b9e9547a37ec854e94b393a2e65caa3d20812aca2e4b23c60c098/OpenCobolIDE-2.2.0.tar.gz" } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "a4e3f16b8baa5ba2e6f5b0b7ff0e04d9", "sha256": "56f9d325cb9cfcef1b650281d557273ea8c1422a33702319e16792ed020c6c35" }, "downloads": -1, "filename": "OpenCobolIDE-2.3.0-py3.4.egg", "has_sig": false, "md5_digest": "a4e3f16b8baa5ba2e6f5b0b7ff0e04d9", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 326221, "upload_time": "2014-04-06T14:44:29", "url": "https://files.pythonhosted.org/packages/38/1c/610fc78a65cb7f8b7776ec19497ffebe7cfaad9fcf0a911c60f6ba364404/OpenCobolIDE-2.3.0-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "9b4fc6a6124aa3870126543f034b83cd", "sha256": "cd0f3745104ad2fadaae2acb28d2fea36615a83952ab212dcbec1e5195af7722" }, "downloads": -1, "filename": "OpenCobolIDE-2.3.0.tar.gz", "has_sig": false, "md5_digest": "9b4fc6a6124aa3870126543f034b83cd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1384215, "upload_time": "2014-04-06T14:44:22", "url": "https://files.pythonhosted.org/packages/12/75/ed705799f55d65c6e75a6f33b59887225eac2b0f11171168bd5f56b60716/OpenCobolIDE-2.3.0.tar.gz" } ], "2.3.1": [ { "comment_text": "", "digests": { "md5": "537d08b7a23ee6de9d740365738a953f", "sha256": "5b88ebd9ca9a1b041e2003f9403b14e57ba55c2beb095c3ad5d771c52c6f0314" }, "downloads": -1, "filename": "OpenCobolIDE-2.3.1.tar.gz", "has_sig": false, "md5_digest": "537d08b7a23ee6de9d740365738a953f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1572769, "upload_time": "2014-04-13T15:07:34", "url": "https://files.pythonhosted.org/packages/84/10/c047de76ecf06ee07e055cb40b8a4f5267eeb1164bb0abab34f633918e0f/OpenCobolIDE-2.3.1.tar.gz" } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "99f86aee3db83cb99836bc6ab9b70482", "sha256": "80674de844d87e32715a6fb22b123de8a23065bc3a0c1123f9a37944009d8d95" }, "downloads": -1, "filename": "OpenCobolIDE-3.0.0.tar.gz", "has_sig": false, "md5_digest": "99f86aee3db83cb99836bc6ab9b70482", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1459659, "upload_time": "2014-07-03T19:00:20", "url": "https://files.pythonhosted.org/packages/1c/d1/44a4d8732df0d315c130d4c42ec853c31ce584e1970c0d222bb0c4f7aabe/OpenCobolIDE-3.0.0.tar.gz" } ], "4.0.0": [ { "comment_text": "", "digests": { "md5": "ebbbf3ebc0dcbb2bf3faf11fd234b235", "sha256": "c6ca9a0d56dd6b593397c8f8f1c829f593fff6b07bfa2b4c9d780ef5b59f30e5" }, "downloads": -1, "filename": "OpenCobolIDE-4.0.0.tar.gz", "has_sig": false, "md5_digest": "ebbbf3ebc0dcbb2bf3faf11fd234b235", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1883788, "upload_time": "2014-09-06T13:23:07", "url": "https://files.pythonhosted.org/packages/e8/2f/c48e63cb91d26862bac27bb34d1a46077bfb98e862d2c0a1abbe3c8139cd/OpenCobolIDE-4.0.0.tar.gz" } ], "4.1": [ { "comment_text": "", "digests": { "md5": "5d8459cd82ed63732d75797098f4ef8b", "sha256": "b1a4ccb58629d06203f1b88e330cde7d8a06de7828f7af8250e9a29ac87476e6" }, "downloads": -1, "filename": "OpenCobolIDE-4.1.tar.gz", "has_sig": false, "md5_digest": "5d8459cd82ed63732d75797098f4ef8b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1889526, "upload_time": "2014-09-26T14:26:39", "url": "https://files.pythonhosted.org/packages/26/04/0b481be62f6cbafe3d969b7bf0ffc88ed0eb9601866c0810c55b02456d1e/OpenCobolIDE-4.1.tar.gz" } ], "4.1.1": [ { "comment_text": "", "digests": { "md5": "52ad32852beb216638ab38973094fc9e", "sha256": "6cd23a3809100dcd0cf176c3e97b9ea5cc915dd8d624b34a488f22c8ecb1d550" }, "downloads": -1, "filename": "OpenCobolIDE-4.1.1.tar.gz", "has_sig": false, "md5_digest": "52ad32852beb216638ab38973094fc9e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1889563, "upload_time": "2014-10-01T16:08:20", "url": "https://files.pythonhosted.org/packages/4c/ed/88e205d43809534d9c1029e0140a1da3202feee01c591ae21a8f07aee93a/OpenCobolIDE-4.1.1.tar.gz" } ], "4.2.0": [ { "comment_text": "", "digests": { "md5": "b642d6fe00ff3ae86665be2d8ee6fb63", "sha256": "48e8f3bf1fb7e70949623da876c0efb6da3011d33eb1e38423dbc49599337709" }, "downloads": -1, "filename": "OpenCobolIDE-4.2.0.tar.gz", "has_sig": false, "md5_digest": "b642d6fe00ff3ae86665be2d8ee6fb63", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2224874, "upload_time": "2014-11-30T16:00:15", "url": "https://files.pythonhosted.org/packages/22/9b/57c7bd2156c15dc86402170d9a629d9bcacca7c7685499f282ee92e26cf9/OpenCobolIDE-4.2.0.tar.gz" } ], "4.3.0": [ { "comment_text": "", "digests": { "md5": "9e95f71f6b854cfeb036929ab48d33e0", "sha256": "f953f21edbb52b2dab07bc514d1dbbabc69b384e53f2555c8d1006b86cd44ef2" }, "downloads": -1, "filename": "OpenCobolIDE-4.3.0.tar.gz", "has_sig": false, "md5_digest": "9e95f71f6b854cfeb036929ab48d33e0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2647355, "upload_time": "2015-01-09T18:38:48", "url": "https://files.pythonhosted.org/packages/7a/c4/309667510052d1019d32bb4caee2cda83f4500c38f3655ce5414444de4ee/OpenCobolIDE-4.3.0.tar.gz" } ], "4.3.1.0": [ { "comment_text": "", "digests": { "md5": "630af4a50feebda5748941213313eebe", "sha256": "51af4aa1b3e8d2d26592792deaeb9ea7e6551aadb9e40d23abccbae233f5fc79" }, "downloads": -1, "filename": "OpenCobolIDE-4.3.1.0.tar.gz", "has_sig": false, "md5_digest": "630af4a50feebda5748941213313eebe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3899852, "upload_time": "2015-02-18T19:05:07", "url": "https://files.pythonhosted.org/packages/55/88/cbfe827d6a13a813c49075f15b0320addba33407058915964e0c67fa3dbb/OpenCobolIDE-4.3.1.0.tar.gz" } ], "4.4.0": [ { "comment_text": "", "digests": { "md5": "fb85e26cf225f0f2e28c557ee1d28447", "sha256": "8e56ec83fde6d3754c3bb409c5f67e106bfd11c85cf5be05e0119a41d18285bd" }, "downloads": -1, "filename": "OpenCobolIDE-4.4.0.tar.gz", "has_sig": false, "md5_digest": "fb85e26cf225f0f2e28c557ee1d28447", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3900834, "upload_time": "2015-03-09T17:48:58", "url": "https://files.pythonhosted.org/packages/bf/ae/730d79c86c028b65731589ae1bc2c66afdabb4aa1096514e5dab851cf5cb/OpenCobolIDE-4.4.0.tar.gz" } ], "4.5.0": [ { "comment_text": "", "digests": { "md5": "c9d01fb9daf0c3d10d44bcd18a768b6a", "sha256": "19771cea72d0d6cbbdd4dbbbe83c892c7ec1f3a41e3ae4569f003e5b14f59a79" }, "downloads": -1, "filename": "OpenCobolIDE-4.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "c9d01fb9daf0c3d10d44bcd18a768b6a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 364797, "upload_time": "2015-05-01T13:05:37", "url": "https://files.pythonhosted.org/packages/ff/68/fe4db30f7c50fa1c19e2cc1a3697307ed9a59fb6603b98f238d8ce3a4094/OpenCobolIDE-4.5.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a236e3ff254b41147d0cbd066e8c1221", "sha256": "df8806bd6fd57a615fbf5b822742270bae3ddb93788217ea9854fb1750886b98" }, "downloads": -1, "filename": "OpenCobolIDE-4.5.0.tar.gz", "has_sig": false, "md5_digest": "a236e3ff254b41147d0cbd066e8c1221", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3899605, "upload_time": "2015-05-01T13:05:49", "url": "https://files.pythonhosted.org/packages/0b/4e/fca9a297345f004b741852727ab7d4dddcec1d5e2ee73247722f749aa14b/OpenCobolIDE-4.5.0.tar.gz" } ], "4.5.1": [ { "comment_text": "", "digests": { "md5": "2cf8c0187204261e732809d45612a04d", "sha256": "ee78006dae71267841b91c73689db9a6ff8009b1b739ca580b53c798b926c75a" }, "downloads": -1, "filename": "OpenCobolIDE-4.5.1-py3-none-any.whl", "has_sig": false, "md5_digest": "2cf8c0187204261e732809d45612a04d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 365894, "upload_time": "2015-05-16T12:54:01", "url": "https://files.pythonhosted.org/packages/ba/5c/2876d35a609076e7a73e5803b31799a0ba5029b73ce4687739a6f14d8fc8/OpenCobolIDE-4.5.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "090d9e05d4a79976276b6549f9831d31", "sha256": "f2f1c405d582f770f02f4db72d93cc8b2bba90ff9db4480b2c5cc0b0929242bf" }, "downloads": -1, "filename": "OpenCobolIDE-4.5.1.tar.gz", "has_sig": false, "md5_digest": "090d9e05d4a79976276b6549f9831d31", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3901720, "upload_time": "2015-05-16T12:54:11", "url": "https://files.pythonhosted.org/packages/2e/87/159d0ee201238bfa48395c5da6747a21a506ac1af459462821cdef290dbb/OpenCobolIDE-4.5.1.tar.gz" } ], "4.6.0": [ { "comment_text": "", "digests": { "md5": "ef91ac50e147b89d595fbc6c6ebbe8ec", "sha256": "9e8a2ae393d0838d554d08d1f581185cf3b946f70d63ef71d9c1c6cf29f9b1b8" }, "downloads": -1, "filename": "OpenCobolIDE-4.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "ef91ac50e147b89d595fbc6c6ebbe8ec", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 372373, "upload_time": "2015-05-31T12:44:44", "url": "https://files.pythonhosted.org/packages/34/f1/05859144885eb7219154f9cac85285bc24aa0f63bb37f9fa30c11ce0aa4f/OpenCobolIDE-4.6.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0c3c23b6e4bd6ea3e494921c33fe2f2a", "sha256": "3e838548a0599467bf310fb1c72b5c1413d68c9722a7173f97c56a66a3e45ade" }, "downloads": -1, "filename": "OpenCobolIDE-4.6.0.tar.gz", "has_sig": false, "md5_digest": "0c3c23b6e4bd6ea3e494921c33fe2f2a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4037106, "upload_time": "2015-05-31T12:44:55", "url": "https://files.pythonhosted.org/packages/fb/2f/77295ebb8e06eb62085c8a5b640a461344ef803dc182f6890c92c444a157/OpenCobolIDE-4.6.0.tar.gz" } ], "4.6.2": [ { "comment_text": "", "digests": { "md5": "85754bfb69d74cff36b60d8aa26fd080", "sha256": "c62965b09c021fdc00a06f279c08839996410c838c06ab317cff78c8449ea7ed" }, "downloads": -1, "filename": "OpenCobolIDE-4.6.2-py3-none-any.whl", "has_sig": false, "md5_digest": "85754bfb69d74cff36b60d8aa26fd080", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 373747, "upload_time": "2015-06-07T13:15:54", "url": "https://files.pythonhosted.org/packages/a7/7c/3da2390fb6563d655513441c8c2d4780a070e58647d87627bf256c92eed4/OpenCobolIDE-4.6.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "81ea9c3cd61bd9ae4dfea1fca03c206c", "sha256": "1ff83872ad4eaf1f700da2305d4b824d02bab3e6ca4cf3314b45b5a26123926f" }, "downloads": -1, "filename": "OpenCobolIDE-4.6.2.tar.gz", "has_sig": false, "md5_digest": "81ea9c3cd61bd9ae4dfea1fca03c206c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3906188, "upload_time": "2015-06-07T13:16:04", "url": "https://files.pythonhosted.org/packages/d2/d1/b0c50e0a6b294ef5aa2e48055da322d0974d1f48ba6bf5662ae7e0f80e8e/OpenCobolIDE-4.6.2.tar.gz" } ], "4.6.3": [ { "comment_text": "", "digests": { "md5": "29f054502f0d5af44164b798ad1d3168", "sha256": "b09d6af966560556efe2ec08e64b70fcf5bf8d8638ae55314296f46a77b48dfa" }, "downloads": -1, "filename": "OpenCobolIDE-4.6.3.tar.gz", "has_sig": false, "md5_digest": "29f054502f0d5af44164b798ad1d3168", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3907976, "upload_time": "2015-06-28T12:33:53", "url": "https://files.pythonhosted.org/packages/62/9b/9457ae6297795d7d3d7c6b3b94d09837c63e076820d420338e5862c90239/OpenCobolIDE-4.6.3.tar.gz" } ], "4.6.4": [ { "comment_text": "", "digests": { "md5": "90e92971632026d49461a735bb846aa2", "sha256": "ee47f679b2e8bae88e3d0213afeec6288074811c7500b29940444924140f3578" }, "downloads": -1, "filename": "OpenCobolIDE-4.6.4.tar.gz", "has_sig": false, "md5_digest": "90e92971632026d49461a735bb846aa2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3917691, "upload_time": "2015-08-02T14:34:37", "url": "https://files.pythonhosted.org/packages/05/24/76679bd07011320f593093db2ad028b3b30b42915b35bbe91e534c0f1ecd/OpenCobolIDE-4.6.4.tar.gz" } ], "4.6.5": [ { "comment_text": "", "digests": { "md5": "685cb2fc06e66deb1f8dd9cfea20cdc0", "sha256": "1f992c56bec70f85c4b7543d0979bfcb5fc598ae8e136ff619dab8b8a27a11f1" }, "downloads": -1, "filename": "OpenCobolIDE-4.6.5.tar.gz", "has_sig": false, "md5_digest": "685cb2fc06e66deb1f8dd9cfea20cdc0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3917221, "upload_time": "2015-09-17T19:24:28", "url": "https://files.pythonhosted.org/packages/c6/8d/48ceff2fbf355a81a17b17c36850a5bdfd47e4888a682df5c98a1fb1af21/OpenCobolIDE-4.6.5.tar.gz" } ], "4.6.6": [ { "comment_text": "", "digests": { "md5": "607c9b7beabced7d9b75a3994a968ff2", "sha256": "f285736f7213d7ee5c739c67399e344bc3c7d485a2d9cd8e69ec57cc31c7ca4c" }, "downloads": -1, "filename": "OpenCobolIDE-4.6.6.tar.gz", "has_sig": false, "md5_digest": "607c9b7beabced7d9b75a3994a968ff2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3915841, "upload_time": "2015-09-25T16:34:38", "url": "https://files.pythonhosted.org/packages/12/25/32e5d5a687656c6978299f0cd47d2cc135f05d0bfcd1b315ed60345702fa/OpenCobolIDE-4.6.6.tar.gz" } ], "4.7.0": [ { "comment_text": "", "digests": { "md5": "1d3270275706bdce8083cbb2e47001c6", "sha256": "e684a185fdd50b0e0f5de334e1ed2a1dc6506fcc8d867b421707cc5b0363f365" }, "downloads": -1, "filename": "OpenCobolIDE-4.7.0.tar.gz", "has_sig": false, "md5_digest": "1d3270275706bdce8083cbb2e47001c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5353642, "upload_time": "2016-01-25T14:09:18", "url": "https://files.pythonhosted.org/packages/b3/53/20c2c674586ce6ecbe40321facc0fdabe5b32706d88cbbf785c457960457/OpenCobolIDE-4.7.0.tar.gz" } ], "4.7.1": [ { "comment_text": "", "digests": { "md5": "3051a9f110ec076e4638f09baaaf20ed", "sha256": "e0ce6a755f0634d388f3d9581220a3691049392ab2e72607ed77f4629e0bac23" }, "downloads": -1, "filename": "OpenCobolIDE-4.7.1.tar.gz", "has_sig": false, "md5_digest": "3051a9f110ec076e4638f09baaaf20ed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7192556, "upload_time": "2016-01-30T16:13:05", "url": "https://files.pythonhosted.org/packages/81/7d/19bd317203074b75edfebe95d3f8ba358154321effdfd159a68bbd8924f8/OpenCobolIDE-4.7.1.tar.gz" } ], "4.7.2": [ { "comment_text": "", "digests": { "md5": "3abe4d0e8427b9a162f02b83bdcfb7df", "sha256": "563bd52ee8a2803ea268f4ede8ee01d818679c2d91e34f5ab5ec9616d03cc443" }, "downloads": -1, "filename": "OpenCobolIDE-4.7.2.tar.gz", "has_sig": false, "md5_digest": "3abe4d0e8427b9a162f02b83bdcfb7df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7105109, "upload_time": "2016-02-14T11:23:49", "url": "https://files.pythonhosted.org/packages/16/6f/1835acd48d98987ff3b18ffa0b35cd884442af673ff9f431aea16a9c5a52/OpenCobolIDE-4.7.2.tar.gz" } ], "4.7.3": [ { "comment_text": "", "digests": { "md5": "25a4705ee07261e6b89095447aa6f4eb", "sha256": "57ef41252331da1e1c0e4e4efbcd7754f2378100d336c83e2cf3b0f893e190ae" }, "downloads": -1, "filename": "OpenCobolIDE-4.7.3.1.tar.gz", "has_sig": false, "md5_digest": "25a4705ee07261e6b89095447aa6f4eb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7045132, "upload_time": "2016-04-21T17:24:20", "url": "https://files.pythonhosted.org/packages/ed/a4/2f81f43efc9e2854d3d469b1618d65d38c616f614153ff9b21103772295a/OpenCobolIDE-4.7.3.1.tar.gz" } ], "4.7.4": [ { "comment_text": "", "digests": { "md5": "d608a4abed36559f7cad193f6a5f41b7", "sha256": "039cfd9b0a508d9c8fc7ce26234e7ba224896f7fb6490ef7325c9c6a8304e2d6" }, "downloads": -1, "filename": "OpenCobolIDE-4.7.4.tar.gz", "has_sig": false, "md5_digest": "d608a4abed36559f7cad193f6a5f41b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7066793, "upload_time": "2016-07-04T16:56:01", "url": "https://files.pythonhosted.org/packages/88/a4/5345d465897159eea2ded7722d47c116765399ad666be5fcc1f073839764/OpenCobolIDE-4.7.4.tar.gz" } ], "4.7.5": [ { "comment_text": "", "digests": { "md5": "f2e7bf352f5806a9c0a4de1de0aef03b", "sha256": "8078b3fb98aa4cfe92af93a2c1aeba36df8ac976597d57c8520c322f6fa43fbe" }, "downloads": -1, "filename": "OpenCobolIDE-4.7.5.tar.gz", "has_sig": false, "md5_digest": "f2e7bf352f5806a9c0a4de1de0aef03b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7061350, "upload_time": "2016-08-28T10:40:07", "url": "https://files.pythonhosted.org/packages/d5/89/35ee63ec035ccd51bb1978b0ceb4fd86a1a4f2a321ec61dd9b277b908294/OpenCobolIDE-4.7.5.tar.gz" } ], "4.7.6": [ { "comment_text": "", "digests": { "md5": "10b6fd23034274225378f028221926b4", "sha256": "645bb56f2b99d5792952da9ffbdbc530dc6403892fdddf9191273c3b7716a5b1" }, "downloads": -1, "filename": "OpenCobolIDE-4.7.6.tar.gz", "has_sig": false, "md5_digest": "10b6fd23034274225378f028221926b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12882541, "upload_time": "2016-12-30T14:52:00", "url": "https://files.pythonhosted.org/packages/30/19/bbcf13bca5c0baf34ef5aad2763f8ab92c1e6a9653703cbcda38af62e092/OpenCobolIDE-4.7.6.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "10b6fd23034274225378f028221926b4", "sha256": "645bb56f2b99d5792952da9ffbdbc530dc6403892fdddf9191273c3b7716a5b1" }, "downloads": -1, "filename": "OpenCobolIDE-4.7.6.tar.gz", "has_sig": false, "md5_digest": "10b6fd23034274225378f028221926b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12882541, "upload_time": "2016-12-30T14:52:00", "url": "https://files.pythonhosted.org/packages/30/19/bbcf13bca5c0baf34ef5aad2763f8ab92c1e6a9653703cbcda38af62e092/OpenCobolIDE-4.7.6.tar.gz" } ] }