dephell-links

Parse dependency links


Keywords
dephell, packaging, links, pypi, dependencies, git, python
License
MIT
Install
pip install dephell-links==0.1.5

Documentation

DepHell Links

travis appveyor MIT License

Parse dependency links.

Installation

Install from PyPI:

python3 -m pip install --user dephell_links

Usage

from dephell_links import parse_link

parse_link('https://github.com/r1chardj0n3s/parse.git')
# VCSLink(server='github.com', author='r1chardj0n3s', project='parse', vcs='git', protocol='https', user=None, ext='.git', rev=None, name='parse')

link = parse_link('https://github.com/divio/django-cms/archive/release/3.4.x.zip')
link
# URLLink(https://github.com/divio/django-cms/archive/release/3.4.x.zip)
link.name
# 'django-cms'

link = parse_link('./tests/test_parsing.py')
link
# FileLink(./tests/test_parsing.py)
link.name
# 'test_parsing'
link.hash
# 'sha256:ad7927cf442156980659eee391da849e54f472b4bafe20c32cdb242c153528d5'

link = parse_link('./tests/')
link
# DirLink(./tests/)
link.name
# 'tests'