Re: how to convert xlsx file into jpg

2022-06-09 Thread Gabriel Araya Garcia
Why do you want to do that? I ask you about that for have one idea to give you. Perhaps there is an easy solution. We need more information Gabriel Araya Garcia GMI - Desarrollo de Sistemas Informáticos El jue, 9 jun 2022 a las 5:25, Abhinandan K () escribió: > IS anybody know how to convert

Re: I can't use accented letters in my model

2022-06-09 Thread Antonis Christofides
Please read my email again. Antonis Christofides +30-6979924665 (mobile) On 09/06/2022 22.27, Virgilio Ravagli wrote: All right. class Book(models.Model):        code = models.PositiveIntegerField(primary_key=True)        title = models.CharField(max_length=60,blank=False,null=False) book = Bo

Re: I can't use accented letters in my model

2022-06-09 Thread Virgilio Ravagli
All right. class Book(models.Model): code = models.PositiveIntegerField(primary_key=True) title = models.CharField(max_length=60,blank=False,null=False) book = Book() book.code = 1 book.title = 'Verità' book.save() the code is really simple Il giorno mercoledì 8 giugno 2022 alle 21:

Re: Problems sending email with django

2022-06-09 Thread Roger Gammans
Hi I've used mailjet in a Django app. Both using the rest API with requests, ( for our transactional mails )and via authenticated SMTP for our error alerts. I don't recall any specific challenges on the Django side , although setting up domain vaith was a bit more involved iirc. Are you havin

Re: Problems sending email with django

2022-06-09 Thread adeyinka newton
use hotmail open an account with hotmail and make sure u verify the account with your number EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' EMAIL_PORT = 587 EMAIL_USE_TLS = True EMAIL_HOST = 'smtp-mail.outlook.com' EMAIL_HOST_USER = "theaccountem...@hotmail.com" EMAIL_HOST_PASSWORD

Json Object type field in Model in Django

2022-06-09 Thread Mukul Verma
Hii Community, can we add a field in model that stores json and we can access it's keys to get there respective values, if yes please let me know and how we can use that this thing too. Thanks and Regards Mukul Verma -- You received this message because you are subscribed to the Google Groups

Re: how to convert xlsx file into jpg

2022-06-09 Thread Jitendra kumar Patra
https://stackoverflow.com/questions/19294143/python-script-to-save-image-from-xlsx-file-to-disk On Thu, 9 Jun, 2022, 15:01 Jitendra kumar Patra, wrote: > Message me 7008080545 .I will help you > > On Thu, 9 Jun, 2022, 14:55 Abhinandan K, > wrote: > >> IS anybody know how to convert xlsx file in

Re: how to convert xlsx file into jpg

2022-06-09 Thread Jitendra kumar Patra
Message me 7008080545 .I will help you On Thu, 9 Jun, 2022, 14:55 Abhinandan K, wrote: > IS anybody know how to convert xlsx file into jpg format in python on mac ? > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from th

how to convert xlsx file into jpg

2022-06-09 Thread Abhinandan K
IS anybody know how to convert xlsx file into jpg format in python on mac ? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups

Re: Best approach for audit logging in Django.

2022-06-09 Thread Sencer Hamarat
Hi, Mukul Never use a disk file for audit logging. Use at least a DB. On the other hand, using logging facilities or specialized tools are better options. Jason's suggestion above might lead you to the right choice. Kind Regards, Sencer HAMARAT On Mon, Jun 6, 2022 at 7:59 AM Mukul Verma wrote

Re: Best approach for audit logging in Django.

2022-06-09 Thread Sencer Hamarat
Hi Lalit, Thanks for your reply. Actually, It must cover all models. Not certain ones. I thought middleware should be a much better place for this action, but I can't imagine how to handle it. Saygılarımla, Sencer HAMARAT On Fri, Jun 3, 2022 at 9:01 PM Lalit Suthar wrote: > Hi Sencer, signa