Hello everyone, there is a small program (online store parser), I decided to give it an appearance, and also added the ProgressBar . My problem is that I do not know how to make ProgressBar work in parallel during parsing. As a result, I realized that it is necessary to launch the ProgressBar in a separate thread, but so far I have difficulty in implementing this process. I thought that it would be possible to somehow start two processes at once, when one button was pressed, but it did not work out.
def launch_bar(self, instance): self.pb = ProgressBar() popup = Popup(title="In process", content=self.pb, size_hint=(0.7,0.3)) popup.open() Clock.schedule_interval(self.go,1) def go(self, instance): self.pb.value += 1 This is all relative to the ProgressBar .
Thank you in advance for your response