An open API service indexing awesome lists of open source software.

https://github.com/erbridge/codify

Generate a barcode-like vector graphic from a string.
https://github.com/erbridge/codify

Last synced: 12 months ago
JSON representation

Generate a barcode-like vector graphic from a string.

Awesome Lists containing this project

README

          

# codify

[![Build Status](https://travis-ci.org/erbridge/codify.png?branch=master)](https://travis-ci.org/erbridge/codify)

Generate a barcode-like vector graphic from a string.

## Setup

[Install](http://cairographics.org/download/) `cairo`.

Setup the `virtualenv`:
```sh
virtualenv --python=/usr/bin/python3 venv
source venv/bin/activate
```

Install `pycairo`:
```sh
cd pycairo
python setup.py install
cd ..
```

Install the requirements:
```sh
pip install --no-deps -r requirements.txt
```