Posts by Vitor Xavier • 57 points
5 posts
-
1
votes0
answers32
viewsQ: Python - pysmb move directory or access subfolders to move files
I’m programming in python to access the linux environment, using the samba protocol, pysbm, I made the connections with the server and in it there is a directory in which folders enter and leave at…
pythonasked Vitor Xavier 57 -
3
votes1
answer51
viewsQ: Create 2 zipped files with files from a folder
I’m trying to create a code that reads a directory with pdf files and creates 2 zipped files containing these pdf, in my code, I only managed to play all pdf in a single zipped file, my question is…
-
0
votes1
answer98
viewsQ: Python - Ignore Nan values in a . csv and add the rest
Hello, I have a file . csv that I am trying to pass to json Produtos Quantidade Bala 50 Refri NaN Salgado 25 And I’m importing for a json, wanted to know how to ignore the Nan values and return the…
-
-1
votes1
answer661
viewsQ: Python sending multiple email with different attachments
I’m creating a bot in python, for sending emails to some people with different attachments, the code is like this: import win32com.client as win32 import time import os #Informações do e-mail…
-
0
votes1
answer76
viewsQ: Python - take csv values under certain conditions
I am new in python and am trying to get information from a CSV and pass to JSON. The CSV is of this format: QTD Produto Estoque_Limitado 20 pipoca 1 19 refrigerante 1 21 doces 0 "Stock_limited"…