messaging

Flask application does not compile when I put the pywhatkit library inside

Flask application does not compile when I put the pywhatkit library inside Question: I have an application in flask and I tried to insert within that application a code to automatically send messages to whatssap. Code: import pywhatkit as pwk import time def whats(): tim = time.localtime() hour = int(time.strftime("%H", tim)) min = int(time.strftime("%M", tim)) …

Total answers: 1

NameError: name 'record' is not defined. Python 3

NameError: name 'record' is not defined. Python 3 Question: I’ve been trying everything I can to run this code, but I can’t figure out what the issue is. It’s a server/client chat program in python 3. The error I’m getting is: Traceback (most recent call last): File “/home/nate/Desktop/soc_chat/server_soc.py”, line 48,<module> handler = ClientHandler(client, record) NameError: …

Total answers: 1