Aswiniraju commited on
Commit
6c9f4ab
1 Parent(s): ae24c63

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +59 -12
README.md CHANGED
@@ -1,12 +1,59 @@
1
- ---
2
- title: QR Generator
3
- emoji: 💻
4
- colorFrom: yellow
5
- colorTo: blue
6
- sdk: gradio
7
- sdk_version: 3.45.1
8
- app_file: app.py
9
- pinned: false
10
- ---
11
-
12
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+
3
+ ```markdown
4
+ # QR Code Generator
5
+
6
+ This is a Python application for generating QR codes from URLs. It uses the `qrcode` library to create QR codes and can be accessed through a web interface created using `gradio`.
7
+
8
+ ## Usage
9
+
10
+ 1. Enter the URL you want to convert into a QR code in the provided textbox.
11
+ 2. Click the "Generate QR Code" button.
12
+ 3. The generated QR code will be displayed below.
13
+ ```
14
+
15
+
16
+ ## Getting Started
17
+
18
+ To get started with this application, follow these steps:
19
+
20
+ 1. Clone this repository to your local machine:
21
+
22
+ ```shell
23
+ git clone https://github.com/yourusername/your-repo.git
24
+ ```
25
+
26
+ 2. Install the required Python libraries:
27
+
28
+ ```shell
29
+ pip install qrcode gradio Pillow
30
+ ```
31
+
32
+ 3. Run the application:
33
+
34
+ ```shell
35
+ python app.py
36
+ ```
37
+
38
+ 4. Access the application through your web browser at `http://localhost:7860`.
39
+
40
+ ## Demo
41
+
42
+ You can also try out a live demo of this application [here](https://huggingface.co/spaces/Aswiniraju/QR_Generator).
43
+
44
+
45
+
46
+ ## Acknowledgments
47
+
48
+ - This project uses the `qrcode` library for generating QR codes.
49
+ - The web interface is built with `gradio`.
50
+ - Image processing is done using the `Pillow` library.
51
+
52
+ ## Contact
53
+
54
+ If you have any questions or suggestions, feel free to contact me at
55
+ - `GMAIL` : aswiniraju6328@gmail.com.
56
+ - `LINKEDIN` : https://www.linkedin.com/in/aswini-addala-11147a241/
57
+ - `GITHUB` : https://github.com/AddalaAswini
58
+
59
+