本文整理汇总了Python中users.User.run方法的典型用法代码示例。如果您正苦于以下问题:Python User.run方法的具体用法?Python User.run怎么用?Python User.run使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类users.User
的用法示例。
在下文中一共展示了User.run方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: author
# 需要导入模块: from users import User [as 别名]
# 或者: from users.User import run [as 别名]
#!/usr/bin/env python3
# VagrIRC Initialization Bot
# Written in 2015 by Daniel Oaks <[email protected]>
#
# To the extent possible under law, the author(s) have dedicated all copyright
# and related and neighboring rights to this software to the public domain
# worldwide. This software is distributed without any warranty.
#
# You should have received a copy of the CC0 Public Domain Dedication along
# with this software. If not, see
# <http://creativecommons.org/publicdomain/zero/1.0/>.
import os
import json
from users import User
init_dir = os.path.dirname(os.path.abspath(__file__))
# join users one-by-one and execute commands
users_filename = os.path.join(init_dir, 'users.json')
with open(users_filename) as users_file:
users = json.loads(users_file.read())
for info in users:
user = User(**info)
user.run()