bryl
Declaratively defining then:
constructing and
serializing
fixed sized records that are composed of:
typed
fixed sized
fields. This might look e.g. like:
import datetime
import bryl
class MyRecord(bryl.Record):
a = bryl.Alphanumeric(length=20)
b = bryl.Date('YYYYMMDD')
c = bryl.Numeric(length=10, align=bryl.Field.LEFT)
filler = bryl.Alphanumeric(length=10).reserved()
r = MyRecord(
a='hello',
b=datetime.datetime.utcnow().date(),
c=12312,
)
assert isinstance(r, dict)
print MyRecord.c.offset, MyRecord.c.length
assert MyRecord.load(r.dump()) == r
Some applications:
…
use
$ pip install bryl
dev
$ git clone git@github.com:balanced/bryl.git
$ cd bryl
$ mkvirtualenv bryl
(bryl)$ pip install -e .[tests]
(bryl)$ py.test
release
Now that all tests are passing:
Update bryl.__version__ to new {version}.
Commit that git commit -am "Release v{version}"
Tag it git tag -a v{version} -v v{version}
Push it git push origin --tags
and travis will take it from there.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
bryl-0.1.0.tar.gz
(8.6 kB
view details)
File details
Details for the file bryl-0.1.0.tar.gz.
File metadata
- Download URL: bryl-0.1.0.tar.gz
- Upload date:
- Size: 8.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
586b474bbe997b0399cdb7228ad3bf2892b397cd93b2865b1755e9fba690921c
|
|
| MD5 |
668bbf1e1d0742d66f2e4c176733254d
|
|
| BLAKE2b-256 |
6e86f18e4401d4bb7253154248410512d9283fe20b5b6ceced164b96f35af6d3
|