ebcdic


Nameebcdic JSON
Version 1.1.1 PyPI version JSON
download
home_pagehttps://pypi.python.org/pypi/ebcdic
SummaryAdditional EBCDIC codecs
upload_time2019-08-09 00:54:35
maintainer
docs_urlNone
authorThomas Aglassinger
requires_python
licenseBSD
keywords codec text unicode ebcdic
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ebcdic
======

``ebcdic`` is a Python package adding additional EBCDIC codecs for data
exchange with legacy system. It works with Python 2.7 and Python 3.4+.

`EBCDIC <https://en.wikipedia.org/wiki/EBCDIC>`_ is short for Extended Binary
Coded Decimal Interchange Code and is a family of character encodings that is
mainly used on mainframe computers. There is no real point in using it unless
you have to exchange data with legacy systems that still only support EBCDIC
as character encoding.


Installation
------------

The ``ebcdic`` package is available from https://pypi.python.org/pypi/ebcdic
and can be installed using pip::

  pip install ebcdic


Example usage
-------------

To encode ``'hello world'`` on EBCDIC systems in German speaking countries,
use::

  >>> import ebcdic
  >>> 'hello world'.encode('cp1141')
  b'\x88\x85\x93\x93\x96@\xa6\x96\x99\x93\x84O'


Supported codecs
----------------

The ``ebcdic`` package includes EBCDIC codecs for the following regions:

* cp290 - Japan (Katakana)
* cp420 - Arabic bilingual
* cp424 - Israel (Hebrew)
* cp833 - Korea Extended (single byte)
* cp838 - Thailand
* cp870 - Eastern Europe (Poland, Hungary, Czech, Slovakia, Slovenia,
  Croatian, Serbia, Bulgarian); represents Latin-2
* cp1097 - Iran (Farsi)
* cp1140 - Australia, Brazil, Canada, New Zealand, Portugal, South Africa,
  USA
* cp1141 - Austria, Germany, Switzerland
* cp1142 - Denmark, Norway
* cp1143 - Finland, Sweden
* cp1144 - Italy
* cp1145 - Latin America, Spain
* cp1146 - Great Britain, Ireland, North Ireland
* cp1147 - France
* cp1148 - International
* cp1148ms - International, Microsoft interpretation; similar to cp1148
  except that 0x15 is mapped to 0x85 ("next line") instead if 0x0a
  ("linefeed")
* cp1149 - Iceland

It also includes legacy codecs:

* cp037 - Australia, Brazil, Canada, New Zealand, Portugal, South Africa;
  similar to cp1140 but without Euro sign
* cp273 - Austria, Germany, Switzerland; similar to cp1141 but without Euro
  sign
* cp277 - Denmark, Norway; similar to cp1142 but without Euro sign
* cp278 - Finland, Sweden; similar to cp1143 but without Euro sign
* cp280 - Italy; similar to cp1141 but without Euro sign
* cp284 - Latin America, Spain; similar to cp1145 but without Euro sign
* cp285 - Great Britain, Ireland, North Ireland; similar to cp1146 but
  without Euro sign
* cp297 - France; similar to cp1147 but without Euro sign
* cp500 - International; similar to cp1148 but without Euro sign
* cp500ms - International, Microsoft interpretation; identical to
  codecs.cp500 similar to ebcdic.cp500 except that 0x15 is mapped to 0x85
  ("next line") instead if 0x0a ("linefeed")
* cp871 - Iceland; similar to cp1149 but without Euro sign
* cp875 - Greece;  similar to cp9067 but without Euro sign and a few
  other characters
* cp1025 - Cyrillic
* cp1047 - Open Systems (MVS C compiler)
* cp1112 - Estonia, Latvia, Lithuania (Baltic)
* cp1122 - Estonia;  similar to cp1157 but without Euro sign
* cp1123 - Ukraine; similar to cp1158 but without Euro sign

Codecs in the standard library overrule some of these codecs. At the time of
this writing this concerns cp037, cp273 (since 3.4), cp500 and cp1140.

To see get a list of EBCDIC codecs that are already provided by different
sources, use ``ebcdic.ignored_codec_names()``. For example, with Python 3.6
the result is::

  >>> ebcdic.ignored_codec_names()
  ['cp037', 'cp1140', 'cp273', 'cp424', 'cp500', 'cp875']


Unsupported codecs
------------------

According to a
`comprehensive list of code pages <https://www.aivosto.com/articles/charsets-codepages.html>`_,
there are additional codecs this package does not support yet. Possible
reasons and solutions are:

1. It's a double byte codec, e.g. cp834 (Korea). Technically ``CodecMapper``
   can easily support them by increasing the mapping size from 256 to 65536.
   Due lack of test date and access to Asian mainframes this was deemed too
   experimental for now.
2. The codec contains combining characters, e.g. cp1132 (Lao) which allows
   to represent more than 256 characters combining several characters.
3. Java does not include a mapping for the respective code page, e.g.
   cp410/880 (Cyrillic). You can add such a codec based on the information
   found at the link above and submit an enhancement request for the Java
   standard library. Once it is released, simply add the new codec to
   the ``build.xml`` as described below.
4. I missed a codec. Simply open an issue on Github at
   https://github.com/roskakori/CodecMapper/issues and it will be added with
   the next version.


Source code
-----------

These codecs have been generated using CodecMapper, available from
https://github.com/roskakori/CodecMapper. Read the README in order to
to build the ebcdic package from source.

To add another 8 bit EBCDIC codec just extend the ant target ``ebcdic`` in
``build.xml`` using a line like::

   <arg value="cpXXX" />

Replace ``XXX`` by the number of the 8 bit code page you want to include.

Then run::

  ant test

to build and test the distribution.

The ``ebcdic/setup.py`` automatically includes the new encoding in the package
and ``ebcdic/__init__.py`` registers it during ``import ebcdic``, so no
further steps are needed.


Changes
-------

Version 1.1.1, 2019-08-09

* Moved license information from README to LICENSE (#5). This required the
  distribution to change from sdist to wheel because apparently it is a
  major challenge to include a text file in a platform independent way (#11).

  Sadly this breaks compatibility with Python 2.6, 3.1, 3.2 and 3.3. If you
  still need ``ebcdic`` with one of these Python versions, use
  ``ebcdic-1.0.0``.

  This took several attempts and intermediate releases that where broken in
  different ways on different platforms. To prevent people from accidentally
  installing one of these broken releases they have been removed from PyPI.
  If you still want to take a look at them, use the
  `respective tags <https://github.com/roskakori/CodecMapper/releases>`_.

Version 1.0.0, 2019-06-06

* Changed development status to "Production/Stable".
* Added international code pages cp500ms and cp1148ms which are the Microsoft
  interpretations of the respective IBM code pages. The only difference is
  that 0x1f is mapped to 0x85 ("next line") instead of 0x0a ("new line").
  Note that codecs.cp500 included with the Python standard library also uses
  the Microsoft interpretation (#4).
* Added Arabian bilingual code page 420.
* Added Baltic code page 1112.
* Added Cyrillic code page 1025.
* Added Eastern Europe code page 870.
* Added Estonian code pages 1122 and 1157.
* Added Greek code page 875.
* Added Farsi Bilingual code page 1097.
* Added Hebrew code page 424 and 803.
* Added Korean code page 833.
* Added Meahreb/French code page 425.
* Added Japanese (Katakana) code page 290.
* Added Thailand code page 838.
* Added Turkish code page 322.
* Added Ukraine code page 1123.
* Added Python 3.5 to 3.8 as supported version.
* Improved PEP8 conformance of generated codecs.


Version 0.7, 2014-11-17

* Clarified which codecs are already part of the standard library and that
  these codecs overrule the ``ebcdic`` package. Also added a function
  ``ebcdic.ignored_codec_names()`` that returns the name of the EBCDIC codecs
  provided by other means. To obtain access to ``ebcdic`` codecs overruled by
  the standard library, use ``ebcdic.lookup()``.
* Cleaned up (PEP8, __all__, typos, ...).


Version 0.6, 2014-11-15

* Added support for Python 2.6+ and 3.1+ (#1).
* Included a modified version of ``gencodec.py`` that still builds maps
  instead of tables so the generated codecs work with Python versions earlier
  than 3.3. It also does a `from __future__ import unicode_literals` so the
  codecs even work with Python 2.6+ using the same source code. As a side
  effect, this simplifies building the codecs because it removes the the need
  for a local copy of the cpython source code.


Version 0.5, 2014-11-13

* Initial public release

            

Raw data

            {
    "_id": null,
    "home_page": "https://pypi.python.org/pypi/ebcdic",
    "name": "ebcdic",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "codec text unicode ebcdic",
    "author": "Thomas Aglassinger",
    "author_email": "roskakori@users.sourceforge.net",
    "download_url": "",
    "platform": "",
    "description": "ebcdic\n======\n\n``ebcdic`` is a Python package adding additional EBCDIC codecs for data\nexchange with legacy system. It works with Python 2.7 and Python 3.4+.\n\n`EBCDIC <https://en.wikipedia.org/wiki/EBCDIC>`_ is short for Extended Binary\nCoded Decimal Interchange Code and is a family of character encodings that is\nmainly used on mainframe computers. There is no real point in using it unless\nyou have to exchange data with legacy systems that still only support EBCDIC\nas character encoding.\n\n\nInstallation\n------------\n\nThe ``ebcdic`` package is available from https://pypi.python.org/pypi/ebcdic\nand can be installed using pip::\n\n  pip install ebcdic\n\n\nExample usage\n-------------\n\nTo encode ``'hello world'`` on EBCDIC systems in German speaking countries,\nuse::\n\n  >>> import ebcdic\n  >>> 'hello world'.encode('cp1141')\n  b'\\x88\\x85\\x93\\x93\\x96@\\xa6\\x96\\x99\\x93\\x84O'\n\n\nSupported codecs\n----------------\n\nThe ``ebcdic`` package includes EBCDIC codecs for the following regions:\n\n* cp290 - Japan (Katakana)\n* cp420 - Arabic bilingual\n* cp424 - Israel (Hebrew)\n* cp833 - Korea Extended (single byte)\n* cp838 - Thailand\n* cp870 - Eastern Europe (Poland, Hungary, Czech, Slovakia, Slovenia,\n  Croatian, Serbia, Bulgarian); represents Latin-2\n* cp1097 - Iran (Farsi)\n* cp1140 - Australia, Brazil, Canada, New Zealand, Portugal, South Africa,\n  USA\n* cp1141 - Austria, Germany, Switzerland\n* cp1142 - Denmark, Norway\n* cp1143 - Finland, Sweden\n* cp1144 - Italy\n* cp1145 - Latin America, Spain\n* cp1146 - Great Britain, Ireland, North Ireland\n* cp1147 - France\n* cp1148 - International\n* cp1148ms - International, Microsoft interpretation; similar to cp1148\n  except that 0x15 is mapped to 0x85 (\"next line\") instead if 0x0a\n  (\"linefeed\")\n* cp1149 - Iceland\n\nIt also includes legacy codecs:\n\n* cp037 - Australia, Brazil, Canada, New Zealand, Portugal, South Africa;\n  similar to cp1140 but without Euro sign\n* cp273 - Austria, Germany, Switzerland; similar to cp1141 but without Euro\n  sign\n* cp277 - Denmark, Norway; similar to cp1142 but without Euro sign\n* cp278 - Finland, Sweden; similar to cp1143 but without Euro sign\n* cp280 - Italy; similar to cp1141 but without Euro sign\n* cp284 - Latin America, Spain; similar to cp1145 but without Euro sign\n* cp285 - Great Britain, Ireland, North Ireland; similar to cp1146 but\n  without Euro sign\n* cp297 - France; similar to cp1147 but without Euro sign\n* cp500 - International; similar to cp1148 but without Euro sign\n* cp500ms - International, Microsoft interpretation; identical to\n  codecs.cp500 similar to ebcdic.cp500 except that 0x15 is mapped to 0x85\n  (\"next line\") instead if 0x0a (\"linefeed\")\n* cp871 - Iceland; similar to cp1149 but without Euro sign\n* cp875 - Greece;  similar to cp9067 but without Euro sign and a few\n  other characters\n* cp1025 - Cyrillic\n* cp1047 - Open Systems (MVS C compiler)\n* cp1112 - Estonia, Latvia, Lithuania (Baltic)\n* cp1122 - Estonia;  similar to cp1157 but without Euro sign\n* cp1123 - Ukraine; similar to cp1158 but without Euro sign\n\nCodecs in the standard library overrule some of these codecs. At the time of\nthis writing this concerns cp037, cp273 (since 3.4), cp500 and cp1140.\n\nTo see get a list of EBCDIC codecs that are already provided by different\nsources, use ``ebcdic.ignored_codec_names()``. For example, with Python 3.6\nthe result is::\n\n  >>> ebcdic.ignored_codec_names()\n  ['cp037', 'cp1140', 'cp273', 'cp424', 'cp500', 'cp875']\n\n\nUnsupported codecs\n------------------\n\nAccording to a\n`comprehensive list of code pages <https://www.aivosto.com/articles/charsets-codepages.html>`_,\nthere are additional codecs this package does not support yet. Possible\nreasons and solutions are:\n\n1. It's a double byte codec, e.g. cp834 (Korea). Technically ``CodecMapper``\n   can easily support them by increasing the mapping size from 256 to 65536.\n   Due lack of test date and access to Asian mainframes this was deemed too\n   experimental for now.\n2. The codec contains combining characters, e.g. cp1132 (Lao) which allows\n   to represent more than 256 characters combining several characters.\n3. Java does not include a mapping for the respective code page, e.g.\n   cp410/880 (Cyrillic). You can add such a codec based on the information\n   found at the link above and submit an enhancement request for the Java\n   standard library. Once it is released, simply add the new codec to\n   the ``build.xml`` as described below.\n4. I missed a codec. Simply open an issue on Github at\n   https://github.com/roskakori/CodecMapper/issues and it will be added with\n   the next version.\n\n\nSource code\n-----------\n\nThese codecs have been generated using CodecMapper, available from\nhttps://github.com/roskakori/CodecMapper. Read the README in order to\nto build the ebcdic package from source.\n\nTo add another 8 bit EBCDIC codec just extend the ant target ``ebcdic`` in\n``build.xml`` using a line like::\n\n   <arg value=\"cpXXX\" />\n\nReplace ``XXX`` by the number of the 8 bit code page you want to include.\n\nThen run::\n\n  ant test\n\nto build and test the distribution.\n\nThe ``ebcdic/setup.py`` automatically includes the new encoding in the package\nand ``ebcdic/__init__.py`` registers it during ``import ebcdic``, so no\nfurther steps are needed.\n\n\nChanges\n-------\n\nVersion 1.1.1, 2019-08-09\n\n* Moved license information from README to LICENSE (#5). This required the\n  distribution to change from sdist to wheel because apparently it is a\n  major challenge to include a text file in a platform independent way (#11).\n\n  Sadly this breaks compatibility with Python 2.6, 3.1, 3.2 and 3.3. If you\n  still need ``ebcdic`` with one of these Python versions, use\n  ``ebcdic-1.0.0``.\n\n  This took several attempts and intermediate releases that where broken in\n  different ways on different platforms. To prevent people from accidentally\n  installing one of these broken releases they have been removed from PyPI.\n  If you still want to take a look at them, use the\n  `respective tags <https://github.com/roskakori/CodecMapper/releases>`_.\n\nVersion 1.0.0, 2019-06-06\n\n* Changed development status to \"Production/Stable\".\n* Added international code pages cp500ms and cp1148ms which are the Microsoft\n  interpretations of the respective IBM code pages. The only difference is\n  that 0x1f is mapped to 0x85 (\"next line\") instead of 0x0a (\"new line\").\n  Note that codecs.cp500 included with the Python standard library also uses\n  the Microsoft interpretation (#4).\n* Added Arabian bilingual code page 420.\n* Added Baltic code page 1112.\n* Added Cyrillic code page 1025.\n* Added Eastern Europe code page 870.\n* Added Estonian code pages 1122 and 1157.\n* Added Greek code page 875.\n* Added Farsi Bilingual code page 1097.\n* Added Hebrew code page 424 and 803.\n* Added Korean code page 833.\n* Added Meahreb/French code page 425.\n* Added Japanese (Katakana) code page 290.\n* Added Thailand code page 838.\n* Added Turkish code page 322.\n* Added Ukraine code page 1123.\n* Added Python 3.5 to 3.8 as supported version.\n* Improved PEP8 conformance of generated codecs.\n\n\nVersion 0.7, 2014-11-17\n\n* Clarified which codecs are already part of the standard library and that\n  these codecs overrule the ``ebcdic`` package. Also added a function\n  ``ebcdic.ignored_codec_names()`` that returns the name of the EBCDIC codecs\n  provided by other means. To obtain access to ``ebcdic`` codecs overruled by\n  the standard library, use ``ebcdic.lookup()``.\n* Cleaned up (PEP8, __all__, typos, ...).\n\n\nVersion 0.6, 2014-11-15\n\n* Added support for Python 2.6+ and 3.1+ (#1).\n* Included a modified version of ``gencodec.py`` that still builds maps\n  instead of tables so the generated codecs work with Python versions earlier\n  than 3.3. It also does a `from __future__ import unicode_literals` so the\n  codecs even work with Python 2.6+ using the same source code. As a side\n  effect, this simplifies building the codecs because it removes the the need\n  for a local copy of the cpython source code.\n\n\nVersion 0.5, 2014-11-13\n\n* Initial public release\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Additional EBCDIC codecs",
    "version": "1.1.1",
    "split_keywords": [
        "codec",
        "text",
        "unicode",
        "ebcdic"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "68ae042f2c36ab2a4f9c664a657a6478",
                "sha256": "33b4cb729bc2d0bf46cc1847b0e5946897cb8d3f53520c5b9aa5fa98d7e735f1"
            },
            "downloads": -1,
            "filename": "ebcdic-1.1.1-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "68ae042f2c36ab2a4f9c664a657a6478",
            "packagetype": "bdist_wheel",
            "python_version": "3.6",
            "requires_python": null,
            "size": 128537,
            "upload_time": "2019-08-09T00:54:35",
            "upload_time_iso_8601": "2019-08-09T00:54:35.544455Z",
            "url": "https://files.pythonhosted.org/packages/0d/2f/633031205333bee5f9f93761af8268746aa75f38754823aabb8570eb245b/ebcdic-1.1.1-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2019-08-09 00:54:35",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "ebcdic"
}
        
Elapsed time: 0.01370s