Metadata-Version: 2.1
Name: contrat
Version: 0.1.0
Summary: Python module to keep function signature introspection compatibility between python version
Home-page: https://github.com/4383/contrat/
Author: Hervé Beraud
Author-email: herveberaud.pro@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
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
Description-Content-Type: text/markdown
Provides-Extra: tests
Requires-Dist: tox ; extra == 'tests'

[![Build Status](https://travis-ci.org/4383/contrat.svg?branch=master)](https://travis-ci.org/4383/contrat)
![PyPI](https://img.shields.io/pypi/v/contrat.svg)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/contrat.svg)
![PyPI - Status](https://img.shields.io/pypi/status/contrat.svg)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)
# contrat

Simple python module to keep function signature introspection compatibility between 
python versions

## Install

```shell
pip install contrat
```

## Usage

The following example work for python 2.7 and python 3.0+:

```python
#!/usr/bin/python
from contrat import getargspec

def sample(arg1, arg2=True, arg3=1):
    pass


print(str(getargspec(sample)))
# will display
# ArgSpec(args=['arg1', 'arg2', 'arg3'], varargs=None, keywords=None, defaults=(False, 1))
```



