I'm very grateful for what you're doing sir, you can imagine you making programmers from scratch, me being one of them,: i simply pray that God gave you energy to continue doing this service, be blessed alot.
Thank You So Much For This Beautiful Project..... The Way You Explain Each And Every Detail Makes Me Understand Everything Without A Doubt... Really Your Projects Are Very Helpful... And I Learned A Lot From Your Projects....❤
Thank you....Your videos helped me a lot throughout the project....Plz upload some more videos....Thank you once again for explaining each and everything in detail
@sskdodangoda7234 plz tell me how can we add multiple items with add button on each frame like grocery, cosmetics,drinks with scrool bar option for the items for don't disturb the size of window structure,plz reply me the code
Thank you very much for your efforts. I noticed a problem when you save the invoice when displaying the pdf there is a gap between the columns of the invoice, so I ask how to have an alignment of the columns of the invoice in txt format or pdf identical to that of the textarea of the application, I solved the problem by manually deleting the extra spaces, of course this is not practical, I ask if there is a code which formats the file destination so that it displays the invoice as in the application
salam brother , i used textarea.tag_configure() to customize the text area colors and it was fantastic but when i tried to save the bill i got error .when i deleted all unicode characters and tag_configure everything gone good ..i f you can make video for creating new style .. thank you so much for your effort ,Allah bless you with your parents Amen,
Thank you sir. I am grateful. You know I am a complete beginner and have no experience in writing python codes. What are unicodes characters and how can I identify them in a code? I am very sorry for inconvenience. Once again I am grateful. From now on you are mentol.
I successfully completed the project with your great explanations. Thank you so much for the project. I have just one question. If I update the code, I need to recreate the setup file, right?
I am facing this issue can you help me...............This is error i am getting Exception in Tkinter callback Traceback (most recent call last): File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.12_3.12.752.0_x64__qbz5n2kfra8p0\Lib\tkinter\__init__.py", line 1967, in __call__ return self.func(*args) ^^^^^^^^^^^^^^^^ File "C:\Users\Admin\PycharmProjects\Billing Project\pythonProject7\main.py", line 295, in bill_area textArea.insert(END,f'
Total Bill \t\t\t\t{totalbill} Rs') ^^^^^^^^^ NameError: name 'totalbill' is not defined
Thank you so so much sir my codes are running fine, may God bless you greatly, please is there a way drop down can be added to it, so one can add more product category thank you so much.....
Please Teacher make this Project for US Nobody done Before I didnt see on whole Of UA-cam Please THIS THE PROJECT --- Home Energy Management System - A system that monitors and tracks energy consumption in homes, and provides real-time feedback to users. This can include features like predicting energy bills, setting energy-saving goals, and alerting users when they're using too much energy. You can use Python to collect data from energy meters, process the data, and generate reports for users. You can also use MySQL to store and manage the data. Only Using Python , Mysql
And I have one more question sir if we can include 10 items in grocery field , cosmetics field and cold drink field using scrollbar func is possible ah sir how can I moderate sir ??
I have successfully completed the project.Thankyou Sir. You are the best. I completed it ,but i have one question.When i used the icon created on the desktop to access the application,where are my bill saved? I try to look at it in the bill folder but i didn't see it.
Jumca Mubarak! Thank you very much, I really appreciate your videos. Sir I would like to inform you that for the project of [Student management system], the execution does not work I do the same
@@codinglifestyle4u when I run the program as you do it works but the error comes when I click on the software created in the dist folder there is an error window that comes out,
Hey, I made a storage management system on python, using tkinter and sqlite, there are any way to make it ".exe" or smth like that ? I tried some ways to transform into exe and didnt have success. Cuz I only run using IDE and all, but if anyone wants to use, I guess they dont want to install python and IDE to run the program.
Hi I’ve wrote everything like that but at the end, search button didn’t worked and I couldn’t find App Password option on my Gmail ! New Gmail don’t have this option ! And when I save a bill then search with bill number it doesn’t show anything just error ! Can you show direct mail system with original pass
I notice that you search for bill number 690 But in the text area it's a different number like 609? Same as the other one. Also I am having a problem with search bill. It only can search the first file or but the others it can't search or read. I'm using replit in an android device
i finished this project, but i currently changed the entrys of the products frame into a add button that shows how many specific product i will get. the problem is, i dont know how to connect it to the bill frame area. price and tax doesnt show when i click the add button. do you have any idea how to fix this? i just need price and tax to respond when i click the add button
I created the code one step at a time with you, but the job is to find a bill with a valid address, even though the bill number exists.please tell my how a fix problem
I HAVE COMPLETED THIS PROJECT...ONLY CAN I REQUEST YOU ONE THINK PLEASE MAKE A PROJECT OF RESTAURANT BILLING IN WHICH THERE ARE TABLES AND WE CAN DO BILLING OF MULTIPLE TABLES ...PLEASE...IF YOU DONT GET IT PLEASE TELL IT I WILL ELABORATE IT
Hi bro, while doing the print function I am having this error Module 'os' has no attribute 'startfile'. I'm using replit as code editor in my android tablet. This is the only thing right now that giving me a problem. Do you any alternative or work around for this?
@@codinglifestyle4u Thank you so much !, This Problem was be Solved . Can you share some knowledge related to Selenium in Python and Automation Test In Python
hello Sir there are show me fermissionError when i click for print button even the code is same. so now what can i do. please reply me as soon as possible.
@@codinglifestyle4u "Invalid bill number" keeps showing. I modify the code a bit to avoid this and it works. def SearchBill(): Found = False for i in os.listdir('PyBill') : if i.split('.')[0] == BillNumberEntry.get() : Found = True f=open(f'PyBill/{i}', 'r') TextArea.delete (1.0, END) for data in f : TextArea.insert (END, data) f.close() break if Found == False: messagebox.showerror('Error', 'Invalid Bill Number')
me too so i modified the code a little bit and the problem gone this is my code : def search_bill(): billnumEntry.insert(0, " ") for j in os.listdir('bills') : if j.split('.')[0]==billnumEntry.get(): f = open(f"bills/{j}",'r') textarea.delete(1.0,END) for data in f: textarea.insert(END , data) f.close() billnumEntry.delete(0 , END) break else: messagebox.showerror("Error", 'Invalid bill number!') billnumEntry.delete(0, END)
I had the same Error. Realized it was because I missed a space before I typed in the bill number. That is: if the number was "4498". It showed an error. But it did not when I typed it with a space before. " 4498" So to fix that, I modified the code, particularly this line which was: ____ if i.split('.')[0].strip()==BillNumberEntry.get().strip(): ____ Adding the strip method removed the leading and trailing spaces thus fixing the code. Hope this helps people in similar predicaments.
Thanks for this videos on th billing system and other videos. I have built the billing system project up to the point where the bill has to be saved to text file. I have followed your steps and typed in the code for saving but the software create a bills folder, saved the file using customer number but the content are not copied . I keep getting this error.(UnicodeEncodeError: 'charmap' codec can't encode character '\u023c' in position 284: character maps to ) . I need your help.
It show error in installing the software I successfully convert it exe file and later msi file in dist folder but during installing it show error that "could not create shortcut billing system .ink
You must have made some mistake in the setup.py file .. just check if you have done all the changes that I asked ? If still not fixed ping me on instagram with the error pic 'coding_lifestyle_4u'
@@codinglifestyle4u please my error is in the search button it is showing invalid bill number and I have checked the open area in the save function it is still showing invalid bill number what else can I do Boss
@@codinglifestyle4u ya got it but after creating exe the saved file not found in bills folder created in python it is found in python but after creation of exe it is not showing in bills folder
Project successfully completed at long last. Hope the next project will come soon. Thank you very much
All the best
I'm very grateful for what you're doing sir, you can imagine you making programmers from scratch, me being one of them,: i simply pray that God gave you energy to continue doing this service, be blessed alot.
Thank you so much 👍 may god bless you too
I have successfully completed the project. Thank you, Sir.
You are the best.🤩
Thank you all the best, do checkout other projects
I have successfully completed this project. Thank you. I wish to learn more from you.
Congratulations 👏
Thank You So Much For This Beautiful Project.....
The Way You Explain Each And Every Detail Makes Me Understand Everything Without A Doubt...
Really Your Projects Are Very Helpful...
And I Learned A Lot From Your Projects....❤
Thank you so much 😊
Thanks you Sir for this Project, i made it with you step by step, and i m glad to found a response to a lot of questions, thanks again
Your welcome
I have successfully completed this project..thanks sir
Your welcome 😀
I have successful completed this project. Thank you very much Sir😊
Welcome
I have completed the project here in Uganda the pearl of Africa, thanks so much
Great congratulations 👏
Thank you....Your videos helped me a lot throughout the project....Plz upload some more videos....Thank you once again for explaining each and everything in detail
Thanku 😊
I modified this project according to my choice and complete it. This is great keep it up. i learned a lot. thank you so much sir.
Glad to hear that, do share with me ur final result screenshot on instagram coding_lifestyle_4u 😄 I wanna know what u modified
@sskdodangoda7234 plz tell me how can we add multiple items with add button on each frame like grocery, cosmetics,drinks with scrool bar option for the items for don't disturb the size of window structure,plz reply me the code
I have successfully completed the project.Thanks a lot
Congratulations 👏
I also have successfully completed this project.thanks a lot.
Great 😃
I have successfully completed this project🔥🔥
Great congratulations 👏
I completed my project. Thank you for the video and thank you for your help to solve the doubt✨
Congratulations 👏
This project is great! Thanks so much, I've successfully completed
Glad to hear that
Thank you so much sir...May allah bless you...I inform you after I am complete this project
Ok all the best
Hallo, thank you very much for the project. It helped me a lot with understanding tkinter. Hope to see more projects in the future.
Sure, and thank you for watching, please check my playlist for more tkinter projects
I created the code one step at a time with you, but it's a billing function that returns a valid address, even though the address exists.
successfully completed and also i add some external features
What features?
I have learned lots. Thanks, you teach nicely.
Thank you 😄
project successfully completed. jut wow and appreciated.
Glad to hear that 😊
Bro I need flowchart and algorithm for this project can you please provide me?
Successfully completed the project tq sir 🎉❤
Great 👍
Thank you very much for your efforts. I noticed a problem when you save the invoice when displaying the pdf there is a gap between the columns of the invoice, so I ask how to have an alignment of the columns of the invoice in txt format or pdf identical to that of the textarea of the application, I solved the problem by manually deleting the extra spaces, of course this is not practical, I ask if there is a code which formats the file destination so that it displays the invoice as in the application
salam brother , i used textarea.tag_configure() to customize the text area colors and it was fantastic but when i tried to save the bill i got error .when i deleted all unicode characters and tag_configure everything gone good ..i f you can make video for creating new style .. thank you so much for your effort ,Allah bless you with your parents Amen,
Thanks brother. May Allah bless you and reward you a million time. I am grateful.
Thank you sir. I am grateful. You know I am a complete beginner and have no experience in writing python codes. What are unicodes characters and how can I identify them in a code? I am very sorry for inconvenience. Once again I am grateful. From now on you are mentol.
succesfully compleated the project and also added a lot of other features 😍😍
Great congratulations 👏
thanks bro you are awesome keep going may Allah be with you 🥰@@codinglifestyle4u
Thank you 😊
Thanks for the great tutorial. My search button only gives me "invalid bill number" . What is it I'm doing wrong?
Hello Sir ..
I have successfully completed without error..
Great congratulations 👏
I successfully completed the project with your great explanations. Thank you so much for the project. I have just one question. If I update the code, I need to recreate the setup file, right?
Welcome and yes
@@codinglifestyle4u do you also happen to know how to add x and y scrollbars for the main and sub windows both?
Foe that u can refer to my student management system project where I have added both horizontal and vertical scroll bars
@@codinglifestyle4u Awesome! I will watch that! Thank you so much!! :)
Successfully completed the project
Great congratulations 👏
I am facing this issue can you help me...............This is error i am getting Exception in Tkinter callback
Traceback (most recent call last):
File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.12_3.12.752.0_x64__qbz5n2kfra8p0\Lib\tkinter\__init__.py", line 1967, in __call__
return self.func(*args)
^^^^^^^^^^^^^^^^
File "C:\Users\Admin\PycharmProjects\Billing Project\pythonProject7\main.py", line 295, in bill_area
textArea.insert(END,f'
Total Bill \t\t\t\t{totalbill} Rs')
^^^^^^^^^
NameError: name 'totalbill' is not defined
Hello bro
sir tnq for teaching step by step 😊
Welcome
Thank you so so much sir my codes are running fine, may God bless you greatly, please is there a way drop down can be added to it, so one can add more product category thank you so much.....
You can refer google how to add dropdown or combobox in tkinter
Thank you sir
Ur welcome
Good information
Thanks 😀
Please Teacher make this Project for US Nobody done Before I didnt see on whole Of UA-cam Please THIS THE PROJECT --- Home Energy Management System - A system that monitors and tracks energy consumption in homes, and provides real-time feedback to users. This can include features like predicting energy bills, setting energy-saving goals, and alerting users when they're using too much energy. You can use Python to collect data from energy meters, process the data, and generate reports for users. You can also use MySQL to store and manage the data. Only Using Python , Mysql
My search button is having an error
Searchbill is not defined
THank you so much , SUccessfully completed.
Congratulations 🥳
Wonderfull thanks Faizan
😀
Welcome 😀
Thanks Sir but in the end i convert into exe file 2 folders were created and i installed alse
but not display them
Tnq so much such a wonderful skills u have if possible plz have a code how to send this bill to watsapp plz make a video
Sure I will
@@codinglifestyle4u tnq so much plz have video asap
Thank you so much sir🤝🙏🏻
Is this tutorial video is very useful for us
But one query search button is not work sir what can i do ??
What is the issue?
Saving 1 bill then I had to search isn't wrk sir but saving more than 4 bills then search it's works sir
Thank you so much sir
And I have one more question sir if we can include 10 items in grocery field , cosmetics field and cold drink field using scrollbar func is possible ah sir how can I moderate sir ??
Yes its possible
Text me on instagram coding_lifestyle_4u
I had no insta id will you pls send me a code in thiz comment box sir
Thanks alot i completed and even modified in my own way 8
Great job.. do checkout other projects
I have successfully completed the project.Thankyou Sir.
You are the best.
I completed it ,but i have one question.When i used the icon created on the desktop to access the application,where are my bill saved?
I try to look at it in the bill folder but i didn't see it.
Write click on the icon and open file location there u will see
Thankyou sir I saw it.
Thank you sir!! I love your work
Glad to hear that 😀
Hi. Whenever I click on print. The window will display the bill to be printed but closes immediately. How to fix?
Are u getting any error?
Sucessfuly created the project
Congratulations 🥳
did u face the key error in import_star?
Jumca Mubarak! Thank you very much, I really appreciate your videos. Sir I would like to inform you that for the project of [Student management system], the execution does not work I do the same
What is the error
@@codinglifestyle4u when I run the program as you do it works but the error comes when I click on the software created in the dist folder there is an error window that comes out,
From the 'Pandas' package that we installed in the pycharm
Hey, I made a storage management system on python, using tkinter and sqlite, there are any way to make it ".exe" or smth like that ? I tried some ways to transform into exe and didnt have success. Cuz I only run using IDE and all, but if anyone wants to use, I guess they dont want to install python and IDE to run the program.
Bro I need the flowchart and algorithm for this project can you please provide me?
Hi I’ve wrote everything like that but at the end, search button didn’t worked and I couldn’t find App Password option on my Gmail ! New Gmail don’t have this option ! And when I save a bill then search with bill number it doesn’t show anything just error ! Can you show direct mail system with original pass
can you send me the error pic on instagram coding_lifestyle_4u
Awesome Video ❤❤
Thank you
Thank you so much
Search button give invalid error
Hii... I am getting OSerror in print_bill()
It says no application is associated with the specified file for this operation
Which os u r using?
Same problem r u solve this?
Hello. Sir I Am Facing An Error In Search Button Code
I notice that you search for bill number 690
But in the text area it's a different number like 609? Same as the other one.
Also I am having a problem with search bill. It only can search the first file or but the others it can't search or read. I'm using replit in an android device
Plz check in windows or mac
If the problem persists let me know
Thank you so much sir!!
U welcome
Hii... I got a problem.
When I add a bill no in search bar its showing invalid bill number while everything is written right
Please recheck once save bill code if u have added any extra space
@@codinglifestyle4u i also got same problem please provide me solution
When u r saving the bill check if u have added any extra spacing or take help of chatgpt
Thank you sir
Your welcome
And how can I use it on mobile device ? How to fit this code to mobile version please let me know what to do
This is a desktop app you cannot use on your mobile device
Very Thanks
All the best
Thank you sir nice project but search button not working
What is the issue?
Getting error in the search button even though a txt file exists i get the output pf invalid bill number
Check if in save_bill while saving you have not added any extra space in the bill file name
i finished this project, but i currently changed the entrys of the products frame into a add button that shows how many specific product i will get. the problem is, i dont know how to connect it to the bill frame area. price and tax doesnt show when i click the add button. do you have any idea how to fix this? i just need price and tax to respond when i click the add button
Text me on instagram coding_lifestyle_4u
@@codinglifestyle4ubro I need the flowchart and algorithm for this project can you please provide me...?
I created the code one step at a time with you, but the job is to find a bill with a valid address, even though the bill number exists.please tell my how a fix problem
Check one of the comments
Showing error during install cx_Freeze shows subprocess - exited -with-error
I HAVE COMPLETED THIS PROJECT...ONLY CAN I REQUEST YOU ONE THINK PLEASE MAKE A PROJECT OF RESTAURANT BILLING IN WHICH THERE ARE TABLES AND WE CAN DO BILLING OF MULTIPLE TABLES ...PLEASE...IF YOU DONT GET IT PLEASE TELL IT I WILL ELABORATE IT
Hello Brdr
Bro!!!
I still receive an invalid bill number even after inserting a correct bill number. Please what am I doing wrong?
Check if you have used space in the file name of open method in save bill function
Thanks sir
Your welcome 😃
Sir ,it's showing something went wrong msg ,even there is no error in my code...what should I do sir
You must be making any mistake please recheck
Hi bro, while doing the print function I am having this error
Module 'os' has no attribute 'startfile'.
I'm using replit as code editor in my android tablet. This is the only thing right now that giving me a problem. Do you any alternative or work around for this?
The os.startfile() function is specific to Windows operating systems and won't work on platforms like Android.
@@codinglifestyle4u thank you, so what kind I subsititute to print the file. Please advice. Thanks
Sir in email the allignment is changed uh sir what can i do sir?
Just format it
There is no Entry to add items in the app
Brow How to change price after finishing system ?
Price can be changed in the code only
How can I setup a project with two or more files?
You have to add file names in include files list in setup.py file
Sir my project is done but i have one error there
Icon.ico file is cannot find file this error is show on screen please tell me what i do
U should add icon.ico image in the same folder in which you have your python file
Your Project is done??
Sir if I search the file number which is exist..it's shows invalid bill number...what's the problem sir
Go to save bills function, there check in open function if any space is added in the file name, remove that space
@@codinglifestyle4u no sir ..there is no error in that section
Then rewatch that part again and see if you have made any mistake
Sir if I search the file number which exists. It shows as "invalid bill number".What's the problem?
Just check the save bill function ,in the open() method check if you have added space in the file name, remove that space
@@codinglifestyle4u what if i have no spaces and the error is still there?
Check where u have made the mistake
Thank for your GUide , but i faced a problem , i can not install cx_Freeze With Python 3.12 , Can you help me to Solve this problem
Install different versions of cxfreeze check on google different versions
@@codinglifestyle4u Thank you so much !, This Problem was be Solved . Can you share some knowledge related to Selenium in Python and Automation Test In Python
Ok I will
@@codinglifestyle4u Thank for your knowledge sharing with community. Hope you have good health and Success in your life
hello Sir there are show me fermissionError when i click for print button even the code is same. so now what can i do. please reply me as soon as possible.
Send me the error pic on instagram coding_lifestyle_4u
Hello Sir reply me i'm Still wating
I asked you to send me an error pic on instagram
I don't know why keeps showing me the message "invalid bill number" even though the bill number exists in the bills folder...can you help me?
Just check if u have not added extra space while in open() in save bill function
@@codinglifestyle4u "Invalid bill number" keeps showing. I modify the code a bit to avoid this and it works.
def SearchBill():
Found = False
for i in os.listdir('PyBill') :
if i.split('.')[0] == BillNumberEntry.get() :
Found = True
f=open(f'PyBill/{i}', 'r')
TextArea.delete (1.0, END)
for data in f :
TextArea.insert (END, data)
f.close()
break
if Found == False:
messagebox.showerror('Error', 'Invalid Bill Number')
me too so i modified the code a little bit and the problem gone this is my code :
def search_bill():
billnumEntry.insert(0, " ")
for j in os.listdir('bills') :
if j.split('.')[0]==billnumEntry.get():
f = open(f"bills/{j}",'r')
textarea.delete(1.0,END)
for data in f:
textarea.insert(END , data)
f.close()
billnumEntry.delete(0 , END)
break
else:
messagebox.showerror("Error", 'Invalid bill number!')
billnumEntry.delete(0, END)
I had the same Error. Realized it was because I missed a space before I typed in the bill number.
That is:
if the number was "4498". It showed an error.
But it did not when I typed it with a space before. " 4498"
So to fix that, I modified the code, particularly this line which was:
____
if i.split('.')[0].strip()==BillNumberEntry.get().strip():
____
Adding the strip method removed the leading and trailing spaces thus fixing the code.
Hope this helps people in similar predicaments.
Search button error aara hai sir!!!
Is that project completed with database?
And database in sqlite3?
Yes the project is complete and there is no database
Mysql connection ka kaise setup hoga
Sir i am done with the project i am having issue with the search it is always saying invalid bill number what can i do
Plz rewatch and check if u r making any mistake
same problem i have to find
In the below comments one guy tell to use .strip( ) on both side of the button .so see that comment and resolve@@NilamPandit-t8u
Same problem with me
Thanks for this videos on th billing system and other videos. I have built the billing system project up to the point where the bill has to be saved to text file. I have followed your steps and typed in the code for saving but the software create a bills folder, saved the file using customer number but the content are not copied . I keep getting this error.(UnicodeEncodeError: 'charmap' codec can't encode character '\u023c' in position 284: character maps to ) . I need your help.
i got same error and i removed all unicodes characters then everything is ok
Set
encoding=utf-8
Inside where you opened a file
I write code in python idle and later run it in command prompt
Ok
salam, svp vous pourriez faire un Button qui peut exporter le tableau (Treeview) en PDF file et d'imprimer
Translate in english
It show error in installing the software
I successfully convert it exe file and later msi file in dist folder but during installing it show error that "could not create shortcut billing system .ink
You must have made some mistake in the setup.py file .. just check if you have done all the changes that I asked ? If still not fixed ping me on instagram with the error pic 'coding_lifestyle_4u'
No I copy it from your drive
You have to do a few changes in that file as I said in the video
I made change in them
@@codinglifestyle4u please my error is in the search button it is showing invalid bill number and I have checked the open area in the save function it is still showing invalid bill number what else can I do Boss
Sir where is the file saved? Is it text or binary or csv file sir??
Its a text file saved in the bills folder
@@codinglifestyle4u thank you sir I have successfully completed the project and watched all three parts.
Congratulations 👏 check more projects
Sir is file handling used? Is any handling command used or SQL command ?
File handling is used and not mysql
Please provide this project source code in the description sir ?
Please watch the tutorials to build this project, source code wont help
How we can create any .py python file to executable file like with setup file please anyone reply if you know thank you
You can watch my tutorial on my channel of how to convert to exe
how to connect database in this application
You can watch my student management system project to understand how to connect database
Os.startfile no attributes in ubuntu
This command doesnt work in ubuntu check for other command
@@codinglifestyle4u Plessis help which command run in ubuntu
@@codinglifestyle4u and tell me how to run in ubuntu
sir, where do i get the source code?
you can text me on instagram coding_lifestyle_4u
while converting to exe iam getting this error C:\Users\ADMIN\Desktop\python Project supermarket> python setup.py bdist_msi
C:\Users\ADMIN\Desktop\python Project supermarket\setup.py:14: SyntaxWarning: invalid escape sequence '\s'
"[TARGETDIR]\supermarket.exe",
running bdist_msi
running build
running build_exe
error: cannot find file/directory named icon.ico
You need to add icon.ico and \s is a escape sequence so you have to add 'r' before the string
@@codinglifestyle4u ya got it but after creating exe the saved file not found in bills folder created in python it is found in python but after creation of exe it is not showing in bills folder
Make sure your bills folder is in the same path where your exe file is
mean bills are not saved in bills folder after creation of exe previously in python it is found saved bills in folder
@@codinglifestyle4u sorry i didnt get what us said at time execution from icon bill is saving but not found in folder(Bills)
Setup file kese join kare
The steps are shown in the video
"Waring 1909 could not create shortcut billing system .ink verify that the destination folder exists and that you can access it"
This error is because your setup.py file is not set according to your code file ping me on insta
Insta id
their is an error
What is the error? Send me the error pic on Instagram coding_lifestyle_4u