Rajjix
in ukraine ?
yes, 350-400$ which i thought was too low, i’m still junior so...
Mirco
Jimmies San
Anonymous
Yup 🇮🇹🍕
How popular is Django in Italy
Mirco
Bekzod
and last question guys what sites you find best to search for a job?
Bekzod
Vladimir
Anonymous
Anonymous
I entered the form file for django authentication and I saw that there is a class for each field that we usually see on a single page in website development, developers create a url for each form of that, and then the front end put everything together on a single page with javascript?
Bekzod
Vladimir
Jimmies San
php :(
Mirco
Vladimir
so sad(
Bekzod
so sad(
with php7 not so sad😂😂
Vladimir
any php - sad)
Anonymous
Vladimir
we love py, we use py, we want py!)
Mahesh
I want to make bot...for learning purpose...
Will anyone give me it's requirement
If any bot is required to be integrated in this channel
Ill integrate it
Bekzod
now i think i should stop cuz i feel it will turn to a holy war
Anonymous
Vladimir
Anonymous
Anonymous
Can you share good link or book about django and databases like MySql , how to connect with database in django
Bekzod
Anonymous
Thank you very much
Vladimir
omg book about blueprints O_O
Bekzod
oh its an really old book sorry(((
Anonymous
Do you study at TUIT
Anonymous
Or studied
Bekzod
I finished Home University : )
Mirco
Bekzod
i think noone likes php here
Mirco
Bekzod
i used to hate php but after laravel i liked it and loved it
Anonymous
R
Mirco
Rammanoj
how to perform this https://stackoverflow.com/questions/53236669/django-rest-framework-list-update-api-view
Anonymous
Hey everyone.
I want to make my API's open for everyone to use. What are steps or things i should consider before doing this?
Anonymous
I have read about REST and i know about drf. I want to know if there are any best practices that you should follow when you make you DRF API's open.
Mirco
Sorry man 🙏
Mmm can't help u so much
Anonymous
Oh please dont worry. I will be searching over the internet. Thanks btw 🙂
Rajjix
Umm, if anyone here worked with shipping setups with django please share some ideas, i’m currently looking over shippo library but not sure if it’s the best option, I’m kinda short on time to for experiments now
R
Mirco
Rajjix
Rajjix
Mirco
Mirco
I got it some time ago for free with coupon
Rajjix
i have this one didn’t watch it yet, it’s time to do so now.
Rajjix
Mirco
Rajjix
u make it sound like django templating is so old school 😁
Mirco
u make it sound like django templating is so old school 😁
😂
I still use it, but when I worked at United Nations I saw the big difference between the app I was working on and the web app wrote by the senior Django dev who supervise me
Mine one used bootstrap, jQuery etc. etc.
His one was totally splitted into FE part with React and BE part with Django/DRF
Differences in terms of speed, clearer code, testable etc. were very big
Mirco
And we have thought to try splitting my app but my time there was very short to start that enormous job
We had to refactor almost everything
Rajjix
yep, lucky for me i started django during the react hype about 4 month ago so there’s no “big” migration for me i just picked what i though was best and started there complete separation between front and backend.maybe some simple dtl for testing purposes
Mirco
Anonymous
Im storing ratings in list using list.append() but i want only recent updated values.But im getting all previous values
Anonymous
What is the solution to update new values in place of older values
R
Are you aware that everytime you do a Doctor.objects.* and Review.objects.* you are performing a query to the database?
Anonymous
Yes
George
Lol, do you even lift? Omg
Anonymous
R
I would suggest taking a look at queryset api, specially to annotate and aggregate
Anonymous
I think he doesn't know the expense of making these queries to the database
Anonymous
My problem is how to store ratings in a list which has a size.Every time it must override the list
Anonymous
George
Listen, a queryset is an array, why would you make a 0.3 seconds operation in the server, if you can make a 3ms operation in local
George
Especially if you can make a len(querysetArray)
Anonymous
R
Thanks
Np, actually you can build this view with just one query to db and not need to use for loops. You can play with django shell to set up the query