Hello Django users,
I want to integrate whatsapp with my django application.
Reading through Meta for Developers?
Any help around this is most welcome.
Or another option is Twilio.
If anyone has tried any of this please suggest.
--
Thanks & Regards!
Sujata S. Aghor
--
You received this message
import smtplib
my_email = "some...@gmail.com"
password = "sfuyyudfgyudgfydsg"
with smtplib.SMTP('smtp.gmail.com') as connection:
connection.starttls()
connection.login(user=my_email, password=password)
connection.sendmail(
from_addr=my_email,
to_addrs="someone_e...@gma
guys use this code for sending emails, it's working as of now
import smtplib
my_email = "some...@gmail.com"
password = "sfuyyudfgyudgfydsg"
with smtplib.SMTP('smtp.gmail.com') as connection:
connection.starttls()
connection.login(user=my_email, password=password)
connection.sendmail(
On 24/01/2023 12.14, javier lopez wrote:
I'm new with Django.
Trying to code te sample of tutorial i got the error that shows in the
images.
Python version 3.11.1 and 3.9 too. Same error.
Anyone can help me?
Both errors are mentioned in the tutorial at
https://docs.djangoproject.com/en/4.1/
you can read through the comments the ticket for the reasons :)
On Monday, January 23, 2023 at 3:44:41 AM UTC-5 Dennis Tants wrote:
> Thanks for the answers. Still not sure why it would not implement ON
> DELETE CASCADE in the DB itself. But whatever.
>
> Regards,
> Dennis
>
>
> On 20/01/2023 2
In this survey, mostly about things in the context of the intersection
exactly [development >>><><<< devops]
вторник, 24 января 2023 г. в 10:22:37 UTC+2, alex@gmail.com:
> Hey folks
> When rushing with adding new features it is easy to forget something or
> loose the big picture.
> Why not
I'm new with Django.
Trying to code te sample of tutorial i got the error that shows in the
images.
Python version 3.11.1 and 3.9 too. Same error.
Anyone can help me?
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To unsubscribe from this grou
Resolved:
Using parameters max_num=1, extra=0
https://docs.djangoproject.com/en/3.2/topics/forms/modelforms/#max_num
Mea culpa
On Sunday, January 22, 2023 at 10:49:01 PM UTC+3 Michael Maina wrote:
> Hello,
>
>
>
> I have a challenge using the modelformset_factory module (
> https://docs.djan
Hey folks
When rushing with adding new features it is easy to forget something or
loose the big picture.
Why not just ask what are the common issues that Django developers have
faced?
Like most of the solutions we are searching for. Like: tons of filtering
issues, queries and sub-queries, advanc
9 matches
Mail list logo