def get_client(): u"""デフォルトのGitLabクライアントを取得する @rtype : GitlabClient """ from config import get_or_rise return GitlabClient(get_or_rise("gitlab.host"), get_or_rise("gitlab.private-token"))
def get_client(): u"""デフォルトのGitLabクライアントを取得する @rtype : GitlabClient """ from config import get_or_rise return GitlabClient( get_or_rise("gitlab.host"), get_or_rise("gitlab.private-token") )
def get_project(): u"""gitのconfigに設定されているプロジェクト名をAPIに利用できる形式で取得する""" from config import get_or_rise from string import replace project = get_or_rise("gitlab.project") return replace(project, u"/", u"%2F")