Re: Mysql for Django

2023-09-24 Thread Muhammed Lawal
Download MySQL server at https://dev.mysql.com/downloads/mysql/ It will most likely come with mysqlclient but if not, you can download mysqlclient using homebrew, `brew install mysql-client`. You can check out the guide here at

Re: Mysql for Django

2023-09-24 Thread DieHardMan 300
Do you mean you can't use mysqlclient with Django? Do you already install homebrew in MAC? Do you already install mysql server using homebrew? ในวันที่ วันจันทร์ที่ 25 กันยายน ค.ศ. 2023 เวลา 3 นาฬิกา 50 นาที 25 วินาที UTC+7 Lakhjeet Samra เขียนว่า: > Hi Guys, > I am new to Django > I use Mac ,

Re: Mysql for Django

2023-09-24 Thread Sebastian Jung
Hello, in Linux and Mac you can use DBeaver https://dbeaver.io/download/ This is great app for administration of all DBMS. Regards Am So., 24. Sept. 2023 um 22:50 Uhr schrieb Lakhjeet Samra : > Hi Guys, > I am new to Django > I use Mac , > I am unable to down mysqlclient for Django project

Mysql for Django

2023-09-24 Thread Lakhjeet Samra
Hi Guys, I am new to Django I use Mac , I am unable to down mysqlclient for Django project any suggestions I have Mysql workbench installed Is it right. Thank You Lakhjeet -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe

Unit test to make sure correct template is returned from a specific URL?

2023-09-24 Thread 'Simon Connah' via Django users
I can write a unit test which checks say the title on a page and compares it to a string but that is really prone to breakage. What I want to do instead is to check that the template that is returned by the URL is the same one that is expected in the unit test. Is there an easy way to do this?