How to create Barcodes in python

What is a Barcode?

A barcode is an optical, machine-readable , representation of data , the data usually describes something about the object that carries the barcode . Traditional barcodes systematically represent data by varying the widths and spacings of parallel lines, and may be referred to as linear or one-dimensional (1D) ,we can quickly test on console (mac, tested on ubuntu , debian).PyBarcode ships with a little commandline script to generate barcodes without knowing Python. The install script detects your Python version...

Read more...

How to create QR code in Python

What is a QR Code in nutshell?

A Quick Response code is a two-dimensional pictographic code used for its fast readability and comparatively large storage capacity. The code consists of black modules arranged in a square pattern on a white background. The information encoded can be made up of any kind of data (e.g., binary, alphanumeric)its very simple on console (tested on mac, debian and ubuntu latest OS)below command will install all required module including pil (Python Imaging Library):pillow pip...

Read more...