Rajjix
in ukraine ?
yes, 350-400$ which i thought was too low, i’m still junior so...
Mirco
Are you Italian
Yup 🇮🇹🍕
Anonymous
Yup 🇮🇹🍕
How popular is Django in Italy
Bekzod
and last question guys what sites you find best to search for a job?
Anonymous
How popular is Django in Italy
How degre is it used in Italy
Bekzod
How popular is Django in Italy
more popular than 🍕?
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
in CIS: moikrug.ru
thank you : )
Mirco
How popular is Django in Italy
Thanks God, lots of companies are switching to Py/Django But we still have lots of Java Spring, Laravel etc. 😓
Mirco
more popular than 🍕?
Ahah don't believe it
Jimmies San
php :(
Bekzod
Thanks God, lots of companies are switching to Py/Django But we still have lots of Java Spring, Laravel etc. 😓
Laravel is really good framework yeaah i remember times when i was building rest api just using built in functionality
Vladimir
so sad(
Bekzod
so sad(
with php7 not so sad😂😂
Vladimir
any php - sad)
Anonymous
any php - sad)
👍👍👍
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
Anonymous
Can you share good link or book about django and databases like MySql , how to connect with database in django
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 : )
Bekzod
i think noone likes php here
Bekzod
i used to hate php but after laravel i liked it and loved it
George
i think noone likes php here
Thats why we use Django xddddd
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?
Mirco
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?
imho study everything about REST , how it works, how to build RESTful apps etc. Then when u understand everything about it, study DRF to make what you've studied about REST real
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
Rajjix
Not worked with it but you could consider taking a look at django-oscar or saleor and see how they do it
I was looking at saleor, but it’s a full shop which is not what i want
Mirco
Which one?
This one
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.
Mirco
i have this one didn’t watch it yet, it’s time to do so now.
Yup, they still use Django templating for frontend , jQuery etc. but once you understand the workflows, I think you can refactor it by using DRF and frontend framework if you prefer
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
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
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
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)
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