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.
- Host: GitHub
- URL: https://github.com/erbridge/codify
- Owner: erbridge
- License: mit
- Created: 2013-12-16T03:19:05.000Z (over 12 years ago)
- Default Branch: main
- Last Pushed: 2020-06-14T16:44:10.000Z (about 6 years ago)
- Last Synced: 2025-04-04T10:58:54.520Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# codify
[](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
```