Change Log ========== 0.2.3 - 2012-01-17 ------------------ * ``mllp_send --loose`` accepts & converts Unix newlines in addition to Windows newlines 0.2.2 - 2011-12-17 ------------------ * :ref:`mllp_send ` now takes the ``--loose`` options, which allows sending HL7 messages that may not exactly meet the standard (Windows newlines separating segments instead of carriage returns). 0.2.1 - 2011-08-30 ------------------ * Added MLLP client (:py:class:`hl7.client.MLLPClient`) and command line tool, :ref:`mllp_send `. 0.2.0 - 2011-06-12 ------------------ * Converted ``hl7.segment`` and ``hl7.segments`` into methods on :py:class:`hl7.Message`. * Support dict-syntax for getting Segments from a Message (e.g. ``message['OBX']``) * Use unicode throughout python-hl7 since the HL7 spec allows non-ASCII characters. It is up to the caller of :py:func:`hl7.parse` to convert non-ASCII messages into unicode. * Refactored from single hl7.py file into the hl7 module. * Added Sphinx `documentation `_. Moved project to `github `_. 0.1.1 - 2009-06-27 ------------------ * Apply Python 3 trove classifier 0.1.0 - 2009-03-13 ------------------ * Support message-defined separation characters * Message, Segment, Field classes 0.0.3 - 2009-01-09 ------------------ * Initial release