12 lines
258 B
Python
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!")
|