Skip to content
Advertisement

Continuous saving files to directory after manual removal of them

I created a GUI project in pyqt5 that lets us enter a country’s name in the text input field, then we are getting data from the CoVid-19 API for the particular country. I added a feature (button) which give us a possibility to save matplotlib’s plot with statistics from API to my folder called “stats”. Let’s assume that I enter USA, download the pdf. It’s ok. Then I enter Germany, download the pdf. It’s ok, I got USA.pdf and Germany.pdf in /stats/, but if I remove 2 of them and enter third country, let’s say Canada and click download button, it creates Canada.pdf and also USA and Germany again. I do not know when I made a mistake, but I am thinking of passing lambda function to “clicked” event as a parameter has something to do with that. Here is the code:

App.py

JavaScript

create_pdf.py

JavaScript

Advertisement

Answer

You have connected a new action(download new country’s pdf file) without un-connecting the old action(download old country’s pdf file), hence clicking it will trigger all the actions. Which makes it create all three files.
You can remove the connection after you’re done with it to solve the bug.

Edit:
You can use self.download_btn.disconnect() to remove the connection.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement