文件名称:giturlparse.py:解析并重写git url(支持GitHub,Bitbucket,Assembla ...)
文件大小:13KB
文件格式:ZIP
更新时间:2024-05-31 07:39:21
Python
giturlparse.py 解析并重写git urls(支持GitHub,Bitbucket,FriendCode,Assembla ...) 正在安装 pip install giturlparse.py 例子 解析 from giturlparse import parse p = parse ( 'git@bitbucket.org:AaronO/some-repo.git' ) p . host , p . owner , p . repo # => ('bitbucket.org', 'AaronO', 'some-repo') 改写 from giturlparse import parse url = 'git@github.com:Org/Private-repo.git' p = parse ( url ) p . url2ssh , p . url2https
【文件预览】:
giturlparse.py-master
----setup.py(846B)
----.gitignore(303B)
----LICENSE(10KB)
----giturlparse()
--------__init__.py(270B)
--------result.py(2KB)
--------parser.py(2KB)
--------tests()
--------platforms()
----README.md(1KB)