Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
swadhinbiswas committed May 31, 2024
1 parent 3e088f1 commit bd7927c
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 7 deletions.
15 changes: 8 additions & 7 deletions Bot/BotFunction/qrcodehelper.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@ def get_qrcodeicon(text):



def set_qricon(text:str,icon:str):
split_text = text.split(".")
with open(filepath, "r") as f:
data = json.load(f)
data[split_text[1]] = icon
with open(filepath, "w") as f:
json.dump(data, f, indent=4)








25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,31 @@ This is a Telegram bot built using Pyrogram that offers a variety of creative an
* **Image Manipulation:** Perform actions like resizing, cropping, or applying filters (depending on implementation).
* **Text Manipulation:** Explore functionalities like summarization, paraphrasing, or style changes (details to be confirmed).




### Checklist


- [ ] Gemini
- [ ] ChatGpt

- [x] Text To Image
- [x] Link to Qrcode
- [ ] Video To Gif
- [ ] Unlock PDF
- [ ] Word to PDF
- [ ] Exel to PDF
- [ ] Proteted PDF
- [ ] Encryption Text




- [ ] Object Detection
- [x] ChatBot


**Get Strated**

* Make sure you have Python and Pyrogram installed. You can find installation instructions on the Pyrogram documentation: [https://docs.pyrogram.org/](https://docs.pyrogram.org/)
Expand Down

0 comments on commit bd7927c

Please sign in to comment.