def create_project(self, project_name: Text) -> Project:
url = self._format_new_project_endpoint(project_name)
response = self._post_json(url, headers=[('Content-Length', '0')])
return create(Project, response)
评论列表
文章目录