Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pydanny/watdarepo
Determines VCS and host service of a repo.
https://github.com/pydanny/watdarepo
Last synced: 9 days ago
JSON representation
Determines VCS and host service of a repo.
- Host: GitHub
- URL: https://github.com/pydanny/watdarepo
- Owner: pydanny
- License: bsd-3-clause
- Archived: true
- Created: 2013-09-08T08:29:22.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2013-09-17T19:55:07.000Z (about 11 years ago)
- Last Synced: 2024-09-21T07:28:42.353Z (about 2 months ago)
- Language: Python
- Homepage:
- Size: 197 KB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- Changelog: HISTORY.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
README
===============================
watdarepo
===============================.. image:: https://badge.fury.io/py/watdarepo.png
:target: http://badge.fury.io/py/watdarepo
.. image:: https://travis-ci.org/pydanny/watdarepo.png?branch=master
:target: https://travis-ci.org/pydanny/watdarepo.. image:: https://pypip.in/d/watdarepo/badge.png
:target: https://crate.io/packages/watdarepo?version=latest.. image:: https://coveralls.io/repos/audreyr/cookiecutter/badge.png?branch=master
:target: https://coveralls.io/r/audreyr/cookiecutter?branch=masterDetermines type and host of a repo.
* Free software: BSD license
* Documentation: http://watdarepo.rtfd.org.Features
--------Works to some degree with the following VCS:
* Git
* Mercurial
* SVN
* BZRWorks to some degree with the following hosting services:
* GitHub
* BitBucket
* GitLab
* Gitorious
* SourceforgeUsage
-----::
>>> from watdarepo import watdarepo
>>> watdarepo("https://github.com/pydanny/watdarepo")
{
u'vcs': u'git',
u'hosting_service': u'github',
u'repo_url': u'https://github.com/pydanny/watdarepo'
}Related Projects
-----------------* **Dulwich** is a Python Git API and does not have any discovery features.
* **VCS** works with both Git and Mercurial, incorporates Dulwich, but does not appear to have any discovery features.