Python IntelHex library
Find a file
2024-12-07 16:41:06 +01:00
docs IntelHex 2.3.0 2020-10-20 22:15:08 +02:00
intelhex Implemented __contains__ that enables use of in 2024-11-28 16:00:25 +01:00
.bzrignore update readme again 2018-01-30 07:24:23 +02:00
.gitignore Update .gitignore 2020-10-19 21:54:07 +02:00
AUTHORS.rst Implemented __contains__ that enables use of in 2024-11-28 16:00:25 +01:00
LICENSE.txt Update news for 2.2 and contributors list. 2018-01-11 14:50:16 +02:00
Makefile Makefile: add dev target for pip install -e 2021-06-06 12:58:34 +02:00
MANIFEST.in Fix Readme reference and clarify Python 2.7 status 2020-10-20 21:45:27 +02:00
NEWS.rst Implemented __contains__ that enables use of in 2024-11-28 16:00:25 +01:00
README.rst Fix Readme reference and clarify Python 2.7 status 2020-10-20 21:45:27 +02:00
requirements-dev.txt Update dev requirements based on last release 2020-10-24 20:58:10 +02:00
setup.cfg Use entrypoints for the scripts 2020-10-21 12:23:05 -04:00
setup.py Update Python target versions 2024-12-07 16:38:38 +01:00
test-all-python.sh Update Python target versions 2024-12-07 16:38:38 +01:00
test_memory.py added get_memory_size() method: approx memory footprint of IntelHex object plus data. 2016-04-03 21:15:49 +03:00
tox.ini Update Python target versions 2024-12-07 16:38:38 +01:00

Python IntelHex library
***********************

Introduction
------------
The Intel HEX file format is widely used in microprocessors and microcontrollers 
area (embedded systems etc) as the de facto standard 
for representation of code to be programmed into microelectronic devices.

This work implements an ``intelhex`` Python library to read, write, 
create from scratch and manipulate data from Intel HEX file format.

The distribution package also includes several convenience Python scripts,
including "classic" ``hex2bin`` and ``bin2hex`` converters and more, 
those based on the library itself. Check the docs to know more.

License
-------
The code is distributed under BSD license,
see `LICENSE.txt <https://github.com/python-intelhex/intelhex/blob/master/LICENSE.txt>`_.

In short: you can use IntelHex library in your project without *any*
restrictions.

Supported Python versions
-------------------------
IntelHex library supports Python 3 (3.5 or later) only. The 2.2.1 release was
the last one which has been checked against Python 2.7 and Python 3 until 3.5.

Install
-------
Install using ``pip`` (recommended, no separate download required)::

    pip install intelhex

Download
--------
* https://pypi.org/project/IntelHex/
* https://github.com/python-intelhex/intelhex/releases

Source code, bug reports, patches
---------------------------------
IntelHex on GitHub:

https://github.com/python-intelhex/intelhex

User manual
-----------
User manual for IntelHex is available in the sources ``docs/manual/`` directory.
You can browse User Manual online:

https://readthedocs.org/projects/python-intelhex/

Changelog
---------
See `NEWS.rst <https://github.com/python-intelhex/intelhex/blob/master/NEWS.rst>`_