Metadata-Version: 2.3
Name: entab
Version: 0.3.2
Summary: Record-format file reader
Author: Roderick <rbovee@gmail.com>
Author-email: Roderick <rbovee@gmail.com>
License: MIT
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Source Code, https://github.com/bovee/entab

# Entab

Parse record-based file formats into a stream of records.

## Usage

```python
from entab import Reader
reader = Reader(filename='test.fa')
for record in reader:
    print(record.id)
```

## Development

Build with `maturin build` or build a working copy with `maturin develop`.

Test with `cargo test`.

# Releases

Releases are generated by a Github Action.

