Posts by Jefferson Matheus Duarte • 168 points
11 posts
-
1
votes1
answer49
viewsA: Doubt with print and with for
I made a code from what I understood of your question and it got like this: # Faço a importação da biblioteca que manipula CSV. import csv # Abre o arquivo 'arquivocsv.csv' no mesmo diretório './'…
-
0
votes2
answers120
viewsA: How to extract data from a single column list and generate another?
Hello, first of all welcome. I would advise that the next time you ask a question leave all the source code you are using because it would be better to assist knowing fully what it is, I will try to…
pythonanswered Jefferson Matheus Duarte 168 -
2
votes2
answers281
viewsA: Question about recovering data from database
Hello, first congratulations and it is important after this project that you start first studying a programming logic and then study the python language, will help you a lot to follow this career as…
-
0
votes2
answers345
viewsA: Web scraping with Beautifulsoup - find_next does not return text
Now that I have access to the link I understand better what your problem is and let’s talk about it. The reason you are not getting it is because the site is rendered when loading the page, making a…
-
0
votes2
answers345
viewsA: Web scraping with Beautifulsoup - find_next does not return text
Hello, all right? If your intention is to extract the snippet from a specific div the way you are trying to extract the information is wrong, just use the bs4 find function specifying which class…
-
1
votes2
answers110
viewsA: How to separate a string by passing more than one parameter
Hello, all right? To solve your problem we will use some resources of python itself, the native re library, functions and loops, all this so that we solve the problem by following a Pattern design.…
-
1
votes1
answer1350
viewsA: Python Selenium does not perform the send_keys function
Hello, all right? Your code has some errors and we will comment on them now. The first crucial error in your code is to try to click and send the Keys, when you click the comment box the state…
-
1
votes1
answer1090
viewsA: Find element using Python + Selenium
Hello, first I would like to know if the page in question is public, if it is and want to share we could better inspect what is happening. But I will leave a solution that I have already used a lot,…
-
2
votes1
answer1363
viewsA: Sites with authentication - Web Scraping - Python
Hello, first welcome home. I noticed some errors in your code and other things I would do differently. The overriding error in your code is that you are logging in to Selenium in an automated manner…
-
0
votes1
answer321
viewsQ: compose a POST type request using a PROMISE function
I am a python programmer and I am programming now in javascript with Nodejs, I am already able to program normally but a doubt that is not letting me progress in the language is the issue of the…
-
1
votes2
answers941
viewsQ: help with storing value of a local variable in python
Hello, well, I am writing an application using SQLITE and Python, everything was going well until I had a problem that I am not able to solve, it happens that I have a db of the fipe, so I need to…