mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-22 07:06:26 +01:00
28 lines
512 B
Python
28 lines
512 B
Python
#!/usr/bin/env python
|
|
|
|
|
|
import json
|
|
from abc import ABCMeta, abstractmethod
|
|
|
|
|
|
class TelegramObject(object):
|
|
"""Base class for most telegram object"""
|
|
|
|
__metaclass__ = ABCMeta
|
|
|
|
def __str__(self):
|
|
return str(self.to_dict())
|
|
|
|
def __getitem__(self, item):
|
|
return self.__dict__[item]
|
|
|
|
@staticmethod
|
|
def de_json(data):
|
|
raise NotImplementedError
|
|
|
|
def to_json(self):
|
|
return json.dumps(self.to_dict())
|
|
|
|
@abstractmethod
|
|
def to_dict(self):
|
|
return
|