Posts by Dieinimy Maganha • 13 points
5 posts
-
0
votes1
answer46
viewsQ: Regex python to find all values with Math in Brazilian currency
I need a regex to find all the monetary values of Brazil, I have done several researches and test but I could not reach a satisfactory result. 1.566.545,00 = True 154.565,00 = True 22.555,00 = True…
-
0
votes0
answers40
viewsQ: scaffold appearing several times - Flutter/Mobx
I have the screen below that is controlled by MOBX, for some reason the scaffold when it falls into condition it ends up being presented several times in a row. class ScheduleEnableScheduleScreen…
flutterasked Dieinimy Maganha 13 -
0
votes2
answers1533
viewsA: Read python PDF file
Solution I found to be able to read the PDF without having trouble: import sys from pdfminer.pdfinterp import PDFResourceManager, PDFPageInterpreter from pdfminer.pdfpage import PDFPage from…
pythonanswered Dieinimy Maganha 13 -
0
votes2
answers1533
viewsQ: Read python PDF file
I am trying to create a script that reads a PDF identify some points call, then mark the pages that are these keys, and split the page itself. And then make a merge thus generating a new summary…
pythonasked Dieinimy Maganha 13 -
0
votes1
answer301
viewsQ: Recover link when using click() from Python
I need to recover the url address when clicking on the link, I am using Selenium with chrome_options.add_argument("--headless") My current code: links =…