mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-25 08:37:07 +01:00
17 lines
476 B
Python
17 lines
476 B
Python
#!/usr/bin/env python
|
|
|
|
|
|
class Location(object):
|
|
def __init__(self, **kwargs):
|
|
param_defaults = {
|
|
'longitude': None,
|
|
'latitude': None,
|
|
}
|
|
|
|
for (param, default) in param_defaults.iteritems():
|
|
setattr(self, param, kwargs.get(param, default))
|
|
|
|
@staticmethod
|
|
def newFromJsonDict(data):
|
|
return Location(longitude=data.get('longitude', None),
|
|
latitude=data.get('latitude', None))
|