Posts by Hudson Souza • 53 points
6 posts
- 
		0 votes1 answer65 viewsQ: Duplicated, how to pass more than one parameter?I have two CSV, I want to compare more than one field using duplicated. Is there a way, or can I just pass one parameter at a time? I followed the direction of Clayton Tosatti and I got here, but… 
- 
		0 votes1 answer399 viewsQ: Find equal records in two databases(csv)In two files .csv, how can I know whether or not a particular user is in the files ? These files have a different number of columns, but they have in common some fields (columns), for example: NOME,… 
- 
		0 votes1 answer509 viewsA: Download images from a python txt(links) listf name == 'main': arq = open(r'url.txt') for i in arq: scraper = Scraper() scraper.visit_url(i, -1) The solution, thanks for the help. 
- 
		0 votes1 answer388 viewsQ: How to loop python code, unittest, Selenium?Following the code, how to proceed in a loop to always repeat the same fill N times? Or even picking up the names from a list. txt and populating in "name"? def teste(self): driver = self.driver… 
- 
		0 votes1 answer509 viewsQ: Download images from a python txt(links) listFirst I imported the packages and created a class and its settings: class Scraper: def __init__(self): self.visited = set() self.session = requests.Session() self.session.headers = {"User-Agent":… 
- 
		0 votes1 answer273 viewsQ: Python os.mkdir, file existsI am trying to download videos, but when it goes to the next one, it returns the error saying that the folder already exists. There is no way to save more than one file? def json_decoder(file): file… pythonasked Hudson Souza 53