GithubAuthentification.py 文件源码

python
阅读 19 收藏 0 点赞 0 评论 0

项目:repo-classifier 作者: linkvt 项目源码 文件源码
def __init__(self):
        config = configparser.ConfigParser()
        config.read("github.conf")

        fileUsername = config.get("DEFAULT", "username")
        filePassword = config.get("DEFAULT", "password")
        fileToken = config.get("DEFAULT", "token")

        if not fileUsername and not fileToken:
            logger.error("Username and Token is not filled in github.conf file. Please input login data.")
            raise LookupError("github.conf is not properly filled.")

        if fileToken:
            self.api = Github(fileToken)
        else:
            self.api = Github(fileUsername, filePassword)
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号