Skip to main content

annots is the package that allow to use Python 3.6 variable annotations in handy way.

Project description

Annots

https://img.shields.io/pypi/v/annots.svg https://img.shields.io/travis/infernion/annots.svg Documentation Status Updates

annots is the package that allow to use Python 3.6 variable annotations in handy way. Thanks for inspiration to attrs library.

When you wrap a class with annots decorator

import annot

@annot.s
class Account:
    __tablename__ = 'account'

    username: str
    password: str

Annots add class attribute annotations into __init__

class Account:
    def __init__(self, username, password):
        self.username = str
        self.password = str

Features

  • TODO

Credits

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.

History

0.1.2 (2017-01-09)

  • Fix value initialization error

  • Add type annotation for args into __init__ function

  • Update test

0.1.1 (2017-01-08)

  • Add few tests

0.1.0 (2017-01-08)

  • First release on PyPI.

  • Working version with basic annotation support

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

annots-0.1.2.tar.gz (18.3 kB view hashes)

Uploaded Source

Built Distribution

annots-0.1.2-py2.py3-none-any.whl (4.9 kB view hashes)

Uploaded Python 2 Python 3

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