10 May 2026
George 392.85 °CLike cuterninja
That's not the actual package name its actually just 4 letters so I checked pypi and the package there was published in 2011 and it's just a dummy. I thought there's some way😢
George 392.85 °CI guess you can write nicely to the owner
Git account connected to that package is dead. I thought there's some way to do it directly with PyPi team.
11 May 2026
Humberto FreitasHey guys
Trying to send an email from a python script, and no errors occur but I don’t receive the email
Hard to help without any details: which code? Which email provider (sender and receipt), where are you running the code?
Charly RománHard to help without any details: which code? Which email provider (sender and receipt), where are you running the code?
The origin address is from my company domain and the destination is a gmail account
Do you guys know if I need to change any setting of something?
Humberto FreitasThe origin address is from my company domain and the destination is a gmail account
Do you guys know if I need to change any setting of something?
Imposible to know without knowing what you already have. So share your code
Humberto Freitasimport smtplib
import ssl
context = ssl.create_default_context()
with smtp.SMTP_SSL(smtp_server, 465, context=context) as server:
server.login(origin, password)
print(“LOGIN DONE”)
server.sendmail(origin, destination, msg=“Hi, there”)
print(“Email sent!”)
Have you checked spam folder?
Humberto Freitasimport smtplib
import ssl
context = ssl.create_default_context()
with smtp.SMTP_SSL(smtp_server, 465, context=context) as server:
server.login(origin, password)
print(“LOGIN DONE”)
server.sendmail(origin, destination, msg=“Hi, there”)
print(“Email sent!”)
I'd guess it's Gmail's spamfilter quietly discarding it.
Humberto FreitasIs there a way to check this??
You could use the same code to send a mail from a well known domain.
cloudedYou could use the same code to send a mail from a well known domain.
The code works if I send from a gmail account… so you are probably right
cloudedYou could use the same code to send a mail from a well known domain.
Nop… it does not work, except with GMAIL 🤯🙈🫣
NazaRAre there any Ukrainian developers here?
looks like you need an offtopic group, please delete the off-topic message(s) and continue this conversation at @pythonofftopic
DanielCan someone brief me on Python Programming
It's a programming language that is kinda easy to learn. Anything else?
12 May 2026
DanielCan someone brief me on Python Programming
It's one of the most easy language that you can learn if not the most easy after scratch
DanielCan someone brief me on Python Programming
But if you are after speed and control over computer memory, python might not be the best choice