Skip to main content

A Git URL parsing module (supports parsing and rewriting)

Project description

Parse & rewrite git urls (supports GitHub, Bitbucket, FriendCode, Assembla, Gitlab …)

This is a fork of giturlparse.py with updated parsers.

Original project can be found at https://github.com/FriendCode/giturlparse.py

Installing

pip install giturlparse

Examples

Parse

from giturlparse import parse

p = parse('git@bitbucket.org:AaronO/some-repo.git')

p.host, p.owner, p.repo

# => ('bitbucket.org', 'AaronO', 'some-repo')

Rewrite

from giturlparse import parse

url = 'git@github.com:Org/Private-repo.git'

p = parse(url)

p.url2ssh, p.url2https, p.url2git, p.url2http
# => ('git@github.com:Org/Private-repo.git', 'https://github.com/Org/Private-repo.git', 'git://github.com/Org/Private-repo.git', None)

URLS

Alternative URLs for same repo:

from giturlparse import parse

url = 'git@github.com:Org/Private-repo.git'

parse(url).urls
# => {
#     'ssh': 'git@github.com:Org/Private-repo.git',
#     'https': 'https://github.com/Org/Private-repo.git',
#     'git': 'git://github.com/Org/Private-repo.git'
# }

Validate::

from giturlparse import parse, validate

url = 'git@github.com:Org/Private-repo.git'

parse(url).valid
# => True

# Or

validate(url)
# => True

Tests

python setup.py test

License

Apache v2 (Check out LICENSE file)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

giturlparse-0.9.1.tar.gz (9.4 kB view details)

Uploaded Source

Built Distribution

giturlparse-0.9.1-py2.py3-none-any.whl (15.0 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file giturlparse-0.9.1.tar.gz.

File metadata

  • Download URL: giturlparse-0.9.1.tar.gz
  • Upload date:
  • Size: 9.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for giturlparse-0.9.1.tar.gz
Algorithm Hash digest
SHA256 9d99cb5eb05cef1417d5fb582ff37626150c5c535b9ad1bb39a87e303e87fcc4
MD5 acec24bf594baff0c5dbfc695d8d7748
BLAKE2b-256 aca4fab57d144e6b45229e5621ca08f32c6bee577c9f4a90cd153b3dca86ff7b

See more details on using hashes here.

File details

Details for the file giturlparse-0.9.1-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for giturlparse-0.9.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 867561d3bd11ce72779a372f4157f660d04e8deca559486bc7ebece827f32aa0
MD5 6b440f15c03b12d02ef2e4507e8b1f7e
BLAKE2b-256 cc42acbb62e4c8b430ac340c20cebcce4eea9f7a39324c06b6284cc3efa56f04

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page