From 2c3a1a8c20ce165c21d89e0c8b08e8f0eacbe13f Mon Sep 17 00:00:00 2001 From: TheCookingSenpai <153772003+tcsenpai@users.noreply.github.com> Date: Tue, 23 Jul 2024 02:29:46 +0200 Subject: [PATCH] Update README.md --- README.md | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6451d17..6b4692f 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,20 @@ This Python module provides functionality to encode arbitrary binary data into a series of QR codes and decode them back into the original data. It uses the `qrcode` library for encoding and the `zxing` and `qrtools` libraries for decoding. -## Dependencies +## Installation + +### Using pip + +Pubished at https://pypi.org/project/qrare/ + +`pip install qrare` + +### From this repository + +`git clone https://github.com/tcsenpai/qrare/` +`cd qrare` + +#### Install dependencies - Python 3.x - qrcode @@ -23,7 +36,7 @@ Or install the dependencies using: `pip install -r requirements.txt` -## Functions +## Functions & Usage ### bin_to_qr(data, chunk_size=100, filename_prefix="qr_code")