c# .net Adsense ADO.NET Linq Viruses/security asp.net MVC JQuery Angular-js Node-js SEO Java C++ SQL API Networking vb.net .Net Css JavaScript Generics c#.Net entity framework HTML Website host Website Construction Guide HTTP tutorial W3C tutorial Web Services JSON Psychology Ionic framework Angular ReactJS Python Computer Android
Python

How to generate barcode using python?

| | python

In this tutorial I will show you how to generate barcode using python. If you're not installed python-barcode module you will get the following error.

Import barcode could not be resolved Pylance - Python Error

import barcode could not be resolved pylance

So need to install python-barcode library.

Python Module:

pip install python-barcode

CODE:

from barcode import ISBN13

from barcode.writer import ImageWriter
from PIL import Image

num = "978217629618"

# saving image as png
bar_code = ISBN13(num, writer=ImageWriter())

# save image
bar_code.save("bar_code")

img = Image.open("bar_code.png")
img.show()


OUTPUT:

generate barcode using python