4 Star 20 Fork 12

还是相信爱过 / gitee-python-client

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
GistsApi.md 31.54 KB
一键复制 编辑 原始数据 按行查看 历史
还是相信爱过 提交于 2017-11-14 22:10 . init

gitee_client.GistsApi

All URIs are relative to https://gitee.com/api

Method HTTP request Description
delete_v5_gists_gist_id_comments_id DELETE /v5/gists/{gist_id}/comments/{id} 删除代码片段的评论
delete_v5_gists_id DELETE /v5/gists/{id} 删除该条代码片段
delete_v5_gists_id_star DELETE /v5/gists/{id}/star 取消Star代码片段
get_v5_gists GET /v5/gists 获取代码片段
get_v5_gists_gist_id_comments GET /v5/gists/{gist_id}/comments 获取代码片段的评论
get_v5_gists_gist_id_comments_id GET /v5/gists/{gist_id}/comments/{id} 获取单条代码片段的评论
get_v5_gists_id GET /v5/gists/{id} 获取单条代码片段
get_v5_gists_id_commits GET /v5/gists/{id}/commits 获取代码片段的commit
get_v5_gists_id_forks GET /v5/gists/{id}/forks 获取Fork该条代码片段的列表
get_v5_gists_id_star GET /v5/gists/{id}/star 判断代码片段是否已Star
get_v5_gists_public GET /v5/gists/public 获取公开的代码片段
get_v5_gists_starred GET /v5/gists/starred 获取用户Star的代码片段
get_v5_users_username_gists GET /v5/users/{username}/gists 获取指定用户的公开代码片段
patch_v5_gists_gist_id_comments_id PATCH /v5/gists/{gist_id}/comments/{id} 修改代码片段的评论
patch_v5_gists_id PATCH /v5/gists/{id} 修改代码片段
post_v5_gists POST /v5/gists 创建代码片段
post_v5_gists_gist_id_comments POST /v5/gists/{gist_id}/comments 增加代码片段的评论
post_v5_gists_id_forks POST /v5/gists/{id}/forks Fork代码片段
put_v5_gists_id_star PUT /v5/gists/{id}/star Star代码片段

delete_v5_gists_gist_id_comments_id

delete_v5_gists_gist_id_comments_id(gist_id, id, access_token=access_token)

删除代码片段的评论

删除代码片段的评论

Example

from __future__ import print_function
import time
import gitee_client
from gitee_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = gitee_client.GistsApi()
gist_id = 'gist_id_example' # str | 代码片段的ID
id = 56 # int | 评论的ID
access_token = 'access_token_example' # str | 用户授权码 (optional)

try: 
    # 删除代码片段的评论
    api_instance.delete_v5_gists_gist_id_comments_id(gist_id, id, access_token=access_token)
except ApiException as e:
    print("Exception when calling GistsApi->delete_v5_gists_gist_id_comments_id: %s\n" % e)

Parameters

Name Type Description Notes
gist_id str 代码片段的ID
id int 评论的ID
access_token str 用户授权码 [optional]

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

delete_v5_gists_id

delete_v5_gists_id(id, access_token=access_token)

删除该条代码片段

删除该条代码片段

Example

from __future__ import print_function
import time
import gitee_client
from gitee_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = gitee_client.GistsApi()
id = 'id_example' # str | 代码片段的ID
access_token = 'access_token_example' # str | 用户授权码 (optional)

try: 
    # 删除该条代码片段
    api_instance.delete_v5_gists_id(id, access_token=access_token)
except ApiException as e:
    print("Exception when calling GistsApi->delete_v5_gists_id: %s\n" % e)

Parameters

Name Type Description Notes
id str 代码片段的ID
access_token str 用户授权码 [optional]

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

delete_v5_gists_id_star

delete_v5_gists_id_star(id, access_token=access_token)

取消Star代码片段

取消Star代码片段

Example

from __future__ import print_function
import time
import gitee_client
from gitee_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = gitee_client.GistsApi()
id = 'id_example' # str | 代码片段的ID
access_token = 'access_token_example' # str | 用户授权码 (optional)

try: 
    # 取消Star代码片段
    api_instance.delete_v5_gists_id_star(id, access_token=access_token)
except ApiException as e:
    print("Exception when calling GistsApi->delete_v5_gists_id_star: %s\n" % e)

Parameters

Name Type Description Notes
id str 代码片段的ID
access_token str 用户授权码 [optional]

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

get_v5_gists

list[Code] get_v5_gists(access_token=access_token, since=since, page=page, per_page=per_page)

获取代码片段

获取代码片段

Example

from __future__ import print_function
import time
import gitee_client
from gitee_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = gitee_client.GistsApi()
access_token = 'access_token_example' # str | 用户授权码 (optional)
since = 'since_example' # str | 起始的更新时间,要求时间格式为 ISO 8601 (optional)
page = 1 # int | 当前的页码 (optional) (default to 1)
per_page = 20 # int | 每页的数量 (optional) (default to 20)

try: 
    # 获取代码片段
    api_response = api_instance.get_v5_gists(access_token=access_token, since=since, page=page, per_page=per_page)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling GistsApi->get_v5_gists: %s\n" % e)

Parameters

Name Type Description Notes
access_token str 用户授权码 [optional]
since str 起始的更新时间,要求时间格式为 ISO 8601 [optional]
page int 当前的页码 [optional] [default to 1]
per_page int 每页的数量 [optional] [default to 20]

Return type

list[Code]

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

get_v5_gists_gist_id_comments

list[CodeComment] get_v5_gists_gist_id_comments(gist_id, access_token=access_token, page=page, per_page=per_page)

获取代码片段的评论

获取代码片段的评论

Example

from __future__ import print_function
import time
import gitee_client
from gitee_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = gitee_client.GistsApi()
gist_id = 'gist_id_example' # str | 代码片段的ID
access_token = 'access_token_example' # str | 用户授权码 (optional)
page = 1 # int | 当前的页码 (optional) (default to 1)
per_page = 20 # int | 每页的数量 (optional) (default to 20)

try: 
    # 获取代码片段的评论
    api_response = api_instance.get_v5_gists_gist_id_comments(gist_id, access_token=access_token, page=page, per_page=per_page)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling GistsApi->get_v5_gists_gist_id_comments: %s\n" % e)

Parameters

Name Type Description Notes
gist_id str 代码片段的ID
access_token str 用户授权码 [optional]
page int 当前的页码 [optional] [default to 1]
per_page int 每页的数量 [optional] [default to 20]

Return type

list[CodeComment]

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

get_v5_gists_gist_id_comments_id

CodeComment get_v5_gists_gist_id_comments_id(gist_id, id, access_token=access_token)

获取单条代码片段的评论

获取单条代码片段的评论

Example

from __future__ import print_function
import time
import gitee_client
from gitee_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = gitee_client.GistsApi()
gist_id = 'gist_id_example' # str | 代码片段的ID
id = 56 # int | 评论的ID
access_token = 'access_token_example' # str | 用户授权码 (optional)

try: 
    # 获取单条代码片段的评论
    api_response = api_instance.get_v5_gists_gist_id_comments_id(gist_id, id, access_token=access_token)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling GistsApi->get_v5_gists_gist_id_comments_id: %s\n" % e)

Parameters

Name Type Description Notes
gist_id str 代码片段的ID
id int 评论的ID
access_token str 用户授权码 [optional]

Return type

CodeComment

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

get_v5_gists_id

CodeForksHistory get_v5_gists_id(id, access_token=access_token)

获取单条代码片段

获取单条代码片段

Example

from __future__ import print_function
import time
import gitee_client
from gitee_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = gitee_client.GistsApi()
id = 'id_example' # str | 代码片段的ID
access_token = 'access_token_example' # str | 用户授权码 (optional)

try: 
    # 获取单条代码片段
    api_response = api_instance.get_v5_gists_id(id, access_token=access_token)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling GistsApi->get_v5_gists_id: %s\n" % e)

Parameters

Name Type Description Notes
id str 代码片段的ID
access_token str 用户授权码 [optional]

Return type

CodeForksHistory

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

get_v5_gists_id_commits

CodeForksHistory get_v5_gists_id_commits(id, access_token=access_token)

获取代码片段的commit

获取代码片段的commit

Example

from __future__ import print_function
import time
import gitee_client
from gitee_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = gitee_client.GistsApi()
id = 'id_example' # str | 代码片段的ID
access_token = 'access_token_example' # str | 用户授权码 (optional)

try: 
    # 获取代码片段的commit
    api_response = api_instance.get_v5_gists_id_commits(id, access_token=access_token)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling GistsApi->get_v5_gists_id_commits: %s\n" % e)

Parameters

Name Type Description Notes
id str 代码片段的ID
access_token str 用户授权码 [optional]

Return type

CodeForksHistory

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

get_v5_gists_id_forks

CodeForks get_v5_gists_id_forks(id, access_token=access_token, page=page, per_page=per_page)

获取Fork该条代码片段的列表

获取Fork该条代码片段的列表

Example

from __future__ import print_function
import time
import gitee_client
from gitee_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = gitee_client.GistsApi()
id = 'id_example' # str | 代码片段的ID
access_token = 'access_token_example' # str | 用户授权码 (optional)
page = 1 # int | 当前的页码 (optional) (default to 1)
per_page = 20 # int | 每页的数量 (optional) (default to 20)

try: 
    # 获取Fork该条代码片段的列表
    api_response = api_instance.get_v5_gists_id_forks(id, access_token=access_token, page=page, per_page=per_page)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling GistsApi->get_v5_gists_id_forks: %s\n" % e)

Parameters

Name Type Description Notes
id str 代码片段的ID
access_token str 用户授权码 [optional]
page int 当前的页码 [optional] [default to 1]
per_page int 每页的数量 [optional] [default to 20]

Return type

CodeForks

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

get_v5_gists_id_star

get_v5_gists_id_star(id, access_token=access_token)

判断代码片段是否已Star

判断代码片段是否已Star

Example

from __future__ import print_function
import time
import gitee_client
from gitee_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = gitee_client.GistsApi()
id = 'id_example' # str | 代码片段的ID
access_token = 'access_token_example' # str | 用户授权码 (optional)

try: 
    # 判断代码片段是否已Star
    api_instance.get_v5_gists_id_star(id, access_token=access_token)
except ApiException as e:
    print("Exception when calling GistsApi->get_v5_gists_id_star: %s\n" % e)

Parameters

Name Type Description Notes
id str 代码片段的ID
access_token str 用户授权码 [optional]

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

get_v5_gists_public

list[Code] get_v5_gists_public(access_token=access_token, since=since, page=page, per_page=per_page)

获取公开的代码片段

获取公开的代码片段

Example

from __future__ import print_function
import time
import gitee_client
from gitee_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = gitee_client.GistsApi()
access_token = 'access_token_example' # str | 用户授权码 (optional)
since = 'since_example' # str | 起始的更新时间,要求时间格式为 ISO 8601 (optional)
page = 1 # int | 当前的页码 (optional) (default to 1)
per_page = 20 # int | 每页的数量 (optional) (default to 20)

try: 
    # 获取公开的代码片段
    api_response = api_instance.get_v5_gists_public(access_token=access_token, since=since, page=page, per_page=per_page)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling GistsApi->get_v5_gists_public: %s\n" % e)

Parameters

Name Type Description Notes
access_token str 用户授权码 [optional]
since str 起始的更新时间,要求时间格式为 ISO 8601 [optional]
page int 当前的页码 [optional] [default to 1]
per_page int 每页的数量 [optional] [default to 20]

Return type

list[Code]

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

get_v5_gists_starred

list[Code] get_v5_gists_starred(access_token=access_token, since=since, page=page, per_page=per_page)

获取用户Star的代码片段

获取用户Star的代码片段

Example

from __future__ import print_function
import time
import gitee_client
from gitee_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = gitee_client.GistsApi()
access_token = 'access_token_example' # str | 用户授权码 (optional)
since = 'since_example' # str | 起始的更新时间,要求时间格式为 ISO 8601 (optional)
page = 1 # int | 当前的页码 (optional) (default to 1)
per_page = 20 # int | 每页的数量 (optional) (default to 20)

try: 
    # 获取用户Star的代码片段
    api_response = api_instance.get_v5_gists_starred(access_token=access_token, since=since, page=page, per_page=per_page)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling GistsApi->get_v5_gists_starred: %s\n" % e)

Parameters

Name Type Description Notes
access_token str 用户授权码 [optional]
since str 起始的更新时间,要求时间格式为 ISO 8601 [optional]
page int 当前的页码 [optional] [default to 1]
per_page int 每页的数量 [optional] [default to 20]

Return type

list[Code]

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

get_v5_users_username_gists

list[Code] get_v5_users_username_gists(username, access_token=access_token, page=page, per_page=per_page)

获取指定用户的公开代码片段

获取指定用户的公开代码片段

Example

from __future__ import print_function
import time
import gitee_client
from gitee_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = gitee_client.GistsApi()
username = 'username_example' # str | 用户名(username/login)
access_token = 'access_token_example' # str | 用户授权码 (optional)
page = 1 # int | 当前的页码 (optional) (default to 1)
per_page = 20 # int | 每页的数量 (optional) (default to 20)

try: 
    # 获取指定用户的公开代码片段
    api_response = api_instance.get_v5_users_username_gists(username, access_token=access_token, page=page, per_page=per_page)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling GistsApi->get_v5_users_username_gists: %s\n" % e)

Parameters

Name Type Description Notes
username str 用户名(username/login)
access_token str 用户授权码 [optional]
page int 当前的页码 [optional] [default to 1]
per_page int 每页的数量 [optional] [default to 20]

Return type

list[Code]

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

patch_v5_gists_gist_id_comments_id

CodeComment patch_v5_gists_gist_id_comments_id(gist_id, id, body, access_token=access_token)

修改代码片段的评论

修改代码片段的评论

Example

from __future__ import print_function
import time
import gitee_client
from gitee_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = gitee_client.GistsApi()
gist_id = 'gist_id_example' # str | 代码片段的ID
id = 56 # int | 评论的ID
body = 'body_example' # str | 评论内容
access_token = 'access_token_example' # str | 用户授权码 (optional)

try: 
    # 修改代码片段的评论
    api_response = api_instance.patch_v5_gists_gist_id_comments_id(gist_id, id, body, access_token=access_token)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling GistsApi->patch_v5_gists_gist_id_comments_id: %s\n" % e)

Parameters

Name Type Description Notes
gist_id str 代码片段的ID
id int 评论的ID
body str 评论内容
access_token str 用户授权码 [optional]

Return type

CodeComment

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

patch_v5_gists_id

CodeForksHistory patch_v5_gists_id(id, files, description, access_token=access_token, public=public)

修改代码片段

修改代码片段

Example

from __future__ import print_function
import time
import gitee_client
from gitee_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = gitee_client.GistsApi()
id = 'id_example' # str | 代码片段的ID
files = {'key': 'files_example'} # dict(str, str) | Hash形式的代码片段文件名以及文件内容。如: { \"file1.txt\": { \"content\": \"String file contents\" } }
description = 'description_example' # str | 代码片段描述,1~30个字符
access_token = 'access_token_example' # str | 用户授权码 (optional)
public = true # bool | 公开/私有,默认: 私有 (optional)

try: 
    # 修改代码片段
    api_response = api_instance.patch_v5_gists_id(id, files, description, access_token=access_token, public=public)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling GistsApi->patch_v5_gists_id: %s\n" % e)

Parameters

Name Type Description Notes
id str 代码片段的ID
files dict(str, str) Hash形式的代码片段文件名以及文件内容。如: { "file1.txt": { "content": "String file contents" } }
description str 代码片段描述,1~30个字符
access_token str 用户授权码 [optional]
public bool 公开/私有,默认: 私有 [optional]

Return type

CodeForksHistory

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

post_v5_gists

list[CodeForksHistory] post_v5_gists(files, description, access_token=access_token, public=public)

创建代码片段

创建代码片段

Example

from __future__ import print_function
import time
import gitee_client
from gitee_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = gitee_client.GistsApi()
files = {'key': 'files_example'} # dict(str, str) | Hash形式的代码片段文件名以及文件内容。如: { \"file1.txt\": { \"content\": \"String file contents\" } }
description = 'description_example' # str | 代码片段描述,1~30个字符
access_token = 'access_token_example' # str | 用户授权码 (optional)
public = true # bool | 公开/私有,默认: 私有 (optional)

try: 
    # 创建代码片段
    api_response = api_instance.post_v5_gists(files, description, access_token=access_token, public=public)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling GistsApi->post_v5_gists: %s\n" % e)

Parameters

Name Type Description Notes
files dict(str, str) Hash形式的代码片段文件名以及文件内容。如: { "file1.txt": { "content": "String file contents" } }
description str 代码片段描述,1~30个字符
access_token str 用户授权码 [optional]
public bool 公开/私有,默认: 私有 [optional]

Return type

list[CodeForksHistory]

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

post_v5_gists_gist_id_comments

CodeComment post_v5_gists_gist_id_comments(gist_id, body, access_token=access_token)

增加代码片段的评论

增加代码片段的评论

Example

from __future__ import print_function
import time
import gitee_client
from gitee_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = gitee_client.GistsApi()
gist_id = 'gist_id_example' # str | 代码片段的ID
body = 'body_example' # str | 评论内容
access_token = 'access_token_example' # str | 用户授权码 (optional)

try: 
    # 增加代码片段的评论
    api_response = api_instance.post_v5_gists_gist_id_comments(gist_id, body, access_token=access_token)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling GistsApi->post_v5_gists_gist_id_comments: %s\n" % e)

Parameters

Name Type Description Notes
gist_id str 代码片段的ID
body str 评论内容
access_token str 用户授权码 [optional]

Return type

CodeComment

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

post_v5_gists_id_forks

post_v5_gists_id_forks(id, access_token=access_token)

Fork代码片段

Fork代码片段

Example

from __future__ import print_function
import time
import gitee_client
from gitee_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = gitee_client.GistsApi()
id = 'id_example' # str | 代码片段的ID
access_token = 'access_token_example' # str | 用户授权码 (optional)

try: 
    # Fork代码片段
    api_instance.post_v5_gists_id_forks(id, access_token=access_token)
except ApiException as e:
    print("Exception when calling GistsApi->post_v5_gists_id_forks: %s\n" % e)

Parameters

Name Type Description Notes
id str 代码片段的ID
access_token str 用户授权码 [optional]

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

put_v5_gists_id_star

put_v5_gists_id_star(id, access_token=access_token)

Star代码片段

Star代码片段

Example

from __future__ import print_function
import time
import gitee_client
from gitee_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = gitee_client.GistsApi()
id = 'id_example' # str | 代码片段的ID
access_token = 'access_token_example' # str | 用户授权码 (optional)

try: 
    # Star代码片段
    api_instance.put_v5_gists_id_star(id, access_token=access_token)
except ApiException as e:
    print("Exception when calling GistsApi->put_v5_gists_id_star: %s\n" % e)

Parameters

Name Type Description Notes
id str 代码片段的ID
access_token str 用户授权码 [optional]

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

Python
1
https://gitee.com/wuyu15255872976/gitee-python-client.git
git@gitee.com:wuyu15255872976/gitee-python-client.git
wuyu15255872976
gitee-python-client
gitee-python-client
master

搜索帮助