本文整理汇总了Python中messages.Messages.send_notification方法的典型用法代码示例。如果您正苦于以下问题:Python Messages.send_notification方法的具体用法?Python Messages.send_notification怎么用?Python Messages.send_notification使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类messages.Messages
的用法示例。
在下文中一共展示了Messages.send_notification方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get_user_or_auto_register
# 需要导入模块: from messages import Messages [as 别名]
# 或者: from messages.Messages import send_notification [as 别名]
def get_user_or_auto_register(user_dict):
try:
username = user_dict.get("username", None)
phone = user_dict.get("phone", None)
if not username:
return Users.get_none()
user = Users.get_user(username)
if not user:
user = Users.add(user_dict)
if not user:
return Users.get_none()
else:
data_list = [phone]
Messages.send_notification(phone, data_list)
return user
return user
except Exception as ex:
Logs.print_current_function_name_and_line_number(ex)
return Users.get_none()