Metadata-Version: 2.1
Name: crypto-qr-codes
Version: 0.1.2
Summary: A package for generating QR codes for various cryptocurrencies
Home-page: https://github.com/RandoS-svk/CryptoQRGenerator
Author: Robert Capla
Author-email: robert.capla@icloud.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Crypto QR Codes

Crypto QR Codes is a Python package that allows you to generate QR codes for various cryptocurrencies.

## Installation

You can install Crypto QR Codes using pip:

pip install crypto-qr-codes


## Usage

To use Crypto QR Codes, import the `create_qr_code` function from the `crypto_qr_codes.qr` module. Here's an example:

```python
from crypto_qr_codes.qr import create_qr_code

crypto_currency = "BTC"
crypto_address = "3N8auHJMn6GQzVjKXF5e2eNn5b6d4wy4G4"
amount = 0.1
label = "My Bitcoin Address"
message = "Payment for goods"

create_qr_code(crypto_currency, crypto_address, amount, label, message)
