[](https://travis-ci.org/lejar/traitlite)
# traitlite
Traitlite is a light-weight (MIT-licensed) package which provides certain [descriptors](https://docs.python.org/3/howto/descriptor.html) to help control the attributes in a class, such as making them read-only<sup>\*</sup> or providing type-checking whenever the value is set.
Here's a quick example that shows what it does, but the documentation has examples for every trait, so check it out!
```python
from traitlite import ReadOnly, TypeChecked
class Foo:
bar = TypeChecked(int) + ReadOnly()
def __init__(self, bar):
self.bar = bar
Foo(3.0) # Raises exception
foo = Foo(3) # Okay
foo.b = 2 # Raises exception because of read-only
```
<sup>\*</sup> well, as read-only as you can get in python
## Installation
The easiest way to install traitlite is through pip:
```bash
pip install traitlite
```
## Running the tests
Traitlite uses the builtin python unit testing framework, along with [hypothesis](https://hypothesis.works/). Additionally, [cosmic-ray](https://github.com/sixty-north/cosmic-ray) is used for mutation testing.
To install the dependencies required to run the tests, run:
```bash
pip install -r unittest_requirements.txt
```
This will install both hypothesis and cosmic-ray.
To run the tests, simply execute the following from the package directory:
```bash
python setup.py test
```
To run mutation testing, execute:
```bash
python setup.py crtest
```
If you want to get the [coverage](https://github.com/nedbat/coveragepy) of the tests, execute:
```bash
python setup.py coverage
```
## Documentation
The docs can be found [here](https://traitlite.readthedocs.io/en/latest/). Alternatively, if you want to build them yourself simply run
```bash
make <target>
```
in the docs folder of the project. To see a list of all the different targets, simply run make without any arguments.
# traitlite
Traitlite is a light-weight (MIT-licensed) package which provides certain [descriptors](https://docs.python.org/3/howto/descriptor.html) to help control the attributes in a class, such as making them read-only<sup>\*</sup> or providing type-checking whenever the value is set.
Here's a quick example that shows what it does, but the documentation has examples for every trait, so check it out!
```python
from traitlite import ReadOnly, TypeChecked
class Foo:
bar = TypeChecked(int) + ReadOnly()
def __init__(self, bar):
self.bar = bar
Foo(3.0) # Raises exception
foo = Foo(3) # Okay
foo.b = 2 # Raises exception because of read-only
```
<sup>\*</sup> well, as read-only as you can get in python
## Installation
The easiest way to install traitlite is through pip:
```bash
pip install traitlite
```
## Running the tests
Traitlite uses the builtin python unit testing framework, along with [hypothesis](https://hypothesis.works/). Additionally, [cosmic-ray](https://github.com/sixty-north/cosmic-ray) is used for mutation testing.
To install the dependencies required to run the tests, run:
```bash
pip install -r unittest_requirements.txt
```
This will install both hypothesis and cosmic-ray.
To run the tests, simply execute the following from the package directory:
```bash
python setup.py test
```
To run mutation testing, execute:
```bash
python setup.py crtest
```
If you want to get the [coverage](https://github.com/nedbat/coveragepy) of the tests, execute:
```bash
python setup.py coverage
```
## Documentation
The docs can be found [here](https://traitlite.readthedocs.io/en/latest/). Alternatively, if you want to build them yourself simply run
```bash
make <target>
```
in the docs folder of the project. To see a list of all the different targets, simply run make without any arguments.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
traitlite-0.0.3.tar.gz
(8.0 kB
view details)
File details
Details for the file traitlite-0.0.3.tar.gz.
File metadata
- Download URL: traitlite-0.0.3.tar.gz
- Upload date:
- Size: 8.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
Python-urllib/3.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bfcd35e2c757fd71b5a54b22f0c55a1908f3ae3266920ff656820e1f7ff9f267
|
|
| MD5 |
f0594464128a95345af740fc0e39c5e5
|
|
| BLAKE2b-256 |
f3eb7e58b3716ed1788e0ef94c9398c29342eac43a9fe655d2a43acf73120b93
|