Metadata-Version: 2.1
Name: hglib
Version: 2.6.2
Summary: Mercurial Python library
Home-page: https://bitbucket.org/515k4/hglib/
Author: Michal Siska
Author-email: michal.515k4@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Version Control
Requires-Python: >=2.7
Description-Content-Type: text/markdown
License-File: LICENSE

# hglib

The hglib is fork of of [hglib](https://www.mercurial-scm.org/wiki/PythonHglib), which is library with a fast, convenient interface to Mercurial. It uses Mercurial's command server for communication with hg.

Only difference for now is just name of the package and updated tests.

## Basic usage

```python
import hglib

client = hglib.open(path)
log = client.log(revrange="tip")
print(log)
```

## Dependencies ##

* Python 2.7 or 3.5

## Licence ##

MIT

## Contact ##

Michal Siska <michal.515k4@gmail.com>


