Archived
1
0
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

11 lines
218 B
Python

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