Metadata-Version: 2.1
Name: binalyzer
Version: 1.0.4
Summary: Binary Data Analyzer
Home-page: https://binalyzer.denisvasilik.com
Author: Denis Vasilìk
Author-email: contact@denisvasilik.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/denisvasilik/binalyzer/issues/
Project-URL: Documentation, https://binalyzer.readthedocs.io/en/latest/
Project-URL: Source Code, https://github.com/denisvasilik/binalyzer/
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: Operating System :: POSIX :: Linux
Description-Content-Type: text/markdown
License-File: LICENSE.rst
License-File: AUTHORS

# Binalyzer

[![Build Status](https://travis-ci.org/denisvasilik/binalyzer.svg?branch=master)](https://travis-ci.org/denisvasilik/binalyzer)
[![Documentation Status](https://readthedocs.org/projects/binalyzer/badge/?version=latest)](https://binalyzer.readthedocs.io/en/latest/?badge=latest)
[![Gitpod Ready-to-Code](https://img.shields.io/badge/Gitpod-Ready--to--Code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/denisvasilik/binalyzer)

Binalyzer's goal is to ease binary data handling. It uses templates to describe
binary data making it possible to access and modify individual data regions.
There's no need to write binary data parsers or manually seek through binary
streams anymore.

Binalyzer supports the following use cases:

* Binary data handling for analysis or modification
* Binary data generation
* Binary data transformation

## Installation

Binalyzer is published on [PyPI] and can be installed from there:

```sh
~$ pip3 install --upgrade binalyzer
```

If you wish to install [Binalyzer] for development purposes, refer to [the
developer's guide].

[PyPI]: https://pypi.org/project/Binalyzer/
[Binalyzer]: https://pypi.org/project/Binalyzer/
[the developer's guide]: DEVELOPMENT.md

## Documentation

Documentation is available from [binalyzer.readthedocs.io].

[binalyzer.readthedocs.io]: https://binalyzer.readthedocs.io/en/latest/

## Get in touch

- Report bugs, suggest features or view the source code [on GitHub].
- For contributions refer to [the contributor's guide].

[on GitHub]: https://github.com/denisvasilik/binalyzer
[the contributor's guide]: CONTRIBUTING.md

# License

Licensed under the MIT license ([LICENSE-MIT] or http://opensource.org/licenses/MIT).

[LICENSE-MIT]: LICENSE.rst


