I'm new to Python and I'm having a hard time with my algorithm. Its function is to check words in a set of files in PDF format and to analyze the recurrence of each word, generating with this information a graph of the law of zipf second most re...
I'm setting up a client that will play the files found in a folder to a WebService SOAP
This WebService has two methods that we will call MET1 and MET2 .
When the files found end in .XML and start with LCL, then I run MET1
When the f...
I need to do a regular expression to extract the links from this string:
links =('href=http://www.ufjf.br/cdara/sisu-2/sisu-2017-1a-edicao/lista-de-espera-sisu-3/?id_curso=01GV&id_grupo=70>ADMINISTRAÇÃO - GOVERNADOR VALADARES - DIURNO -...
I'm using Python to automate Attachmate - EXTRA !, just as many do with VBA.
I'm using the package pywin32 found here .
I'm following the% method documentation found here / a>.
The problem occurs when I try to set a WaitHostQuie...
Some days I left PyCharm on the side and started using Atom. Everything worked smoothly and today, I wrote A LINE in Python and the message "flake8 crashed!" Appeared.
I thought it was lacking in some dependence, but it is not. Anyone experie...
I'm having continuity problems in my code after a function call, related to receiving data via socket with the following code:
def le_dados(obj):
lista_rcv = []
while True:
data = obj.recv(2)
if data:
lis...
Hello!
Well I'm studying python and I started looking for connection pool material using sqlalchemy but unfortunately I did not find any example on the internet that shows the process of creating the connection pool using python and sqlalchemy....
I am studying about socket and wanted to make a socket that when the client types 5 and another 5 the server responds 10 and returns the response to the client.
How do I change my code to have this interaction?
** file socket_server.py
#!/u...
Hello, good evening.
I have a set of vectors whose components (px, py, and pz) are stored in a Pandas DataFrame. I have written a function whose purpose is to change the signal of the vector components if the following condition is observed:...