This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
tty2newsml/iptcmessage.py
2014-09-15 17:37:18 +02:00

12 lines
258 B
Python

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
class IPTCMessage(object):
def __init__(self, raw):
self.raw = raw
self.length = len(self.raw)
print("Message: %s" % repr(self.raw))
if __name__=='__main__':
print("Testmode!")