professor
Gateway *
V@RG..
( W-V@RG..): I have a question..!!! how do I get the value of the third relationship?? this is my Model https://dpaste.de/pZRW help me please
Pooja
If any one have online django practice tool tutorials plzz send me link
Sultonbek Ikromov
dude is it free?
Shubham
Hi all, I have doubt that can multiple apps in Django project run separately on different server?
Shubham
? Apps are only parts of a single project
Yes, but I want to run a single app out of different apps on different server.
Muflone
You have to create separated projects and make them communicate between
John
Can I post my stackoverfow question here? maybe someone had already encounter my problem. .
Shubham
You mean single page application?
No.. In Django project we have multiple apps, but I want that one of the app from different apps to be run separately on different server.
Mihail
can anyone help with registration? i have a custom form, made a signals and so on but after registration when i'm in admin panel my new user's custom forms have a default positions(i changed them when registrated). Here is a photos (https://yadi.sk/d/WUzK45Af8tXe8Q)
R
Well, are they freer and better than the net ninja ones?
Ansab
Can we make video streaming broadcasting using django?????
Ansab
Pls
Avinash
How can deploy django app on google cloud as ip:8000
Opeyemi
Trying to implement a following and followers and feature in Django-rest, if I were to create this not using rest framework, I have an idea how this can be done. But this time I have little to no idea how this can be done. Please: 1) What is the best way to do something like this assuming I am working on a big project? 2) I am majorly lost at what to do at the serializer and view section, I just know that that in the serializer part I select the following model alone Assuming I have a profile model like this class Profile(models.Model): user = models.ForeignKey(settings.AUTH_USER_MODEL, on_delete=models.CASCADE) following = models.ManyToManyField(settings.AUTH_USER_MODEL, related_name='followers', blank=True) other content……. Please any help is appreciated
Belmo NaTazu
Hi guys. Please get me advice. I search liblary for logging model change by fields.
Ihor 🐈
Hello there, wheter Django's caching tools are middlewares? For me it seems they're performed exactly at middleware's side in request handling sequence.
Anonymous
I need to implement Django REST API in my project, Plz share Django REST API example. Thanks in advance
Anonymous
I need to implement Django REST API in my project, Plz share Django REST API example. Thanks in advance
You can refer my article with example: https://data-flair.training/blogs/django-rest-framework/
professor
professor
how do you guys integrate instant bank payment gateway around the globe or mostly principal countries?
Shreehari
professor
that's a lot of countries as almost instant payments are from U.S holders
Rishikesh
Hello guys, SB Admin 2 is a free Bootstrap 4 based theme which developers can use to test the functionalities. You can find it at https://startbootstrap.com/themes/sb-admin-2/. Django developers can check https://github.com/hygull/sbadmin (SB Admin 2, Django project with all pages integrated). Please read the documentation provided in the mentioned link which will give you a quick start hints. Screenshots are also attached. How to run? guide is well documented, just follow that. If you have any queries, you can comment there. I think, using this theme will be a benefit for learners who have basic understanding of Django and also for the experienced developers who don't have enough time to write pages, urls etc. #Python3, #Django, #Theme
Anonymous
When uploading file django only saves relative path, anyone knows how does django add host url to relative path for a query
Rishikesh
You don't need to save host urls, that's useless otherwise there won't be a need to MEDIA_ROOT, MEDIA_URL. If this is the need then you have to do it at code level (extra work).
Rishikesh
By default, /media/uploads/file.png kind of url is formed if MEDIA_URL is /media/ and MEDIA_ROOT is os.path.join(BASE_DIR, "media", "uploads") and if you uploaded file.png. Here, at https://github.com/hygull/sbadmin also you can find example configurations but adding host url is useless.
Anonymous
When we see the query result the url will be prefixed with domain name or ip address, how does that work?
Anonymous
Apart from media url n root
Nebiyu
Should you raise a ValidationError in your views?
Rishikesh
When we see the query result the url will be prefixed with domain name or ip address, how does that work?
If it is then it might be because of mistake. Have a look at below example: `In [10]: client.photo.url Out[10]: '/media/accord/1/user_xR54866.png' In [11]: client.photo.path Out[11]: '/Users/hygull/Projects/Python36/Django/FinateProj/finate/mb/media/uploads/accord/1/user_xR54866.png' In [12]: `
professor
Ravepay
do you know the list of banks or if its visa or Mastercard network?
Ghorz
do you know the list of banks or if its visa or Mastercard network?
Check their api, you'll see django resources. It's international payment denominated in USD. Check the website. I created a plugin on ravepay but its still in beta phase
Ayomide
Hello house i need some help with django rest framework to
Ayomide
I wont be able to post the image but if you can assist please signify...ill dm you
Ayomide
🙏🙏
Anonymous
Is they any way to auto generate django models from an existing database?
Ghorz
🙏🙏
Are you banned on Google, duckduckgo, MSN, yahoo or startpages
Ghorz
what about 3D secure? it seems like a network holder API visa / mastercard
It's secure, you have no business with the security, all you need is secure your own end and write payment verification logic for clients
Ghorz
They'll handle the rest.
Ghorz
You can write your own django app to automate the verification
professor
so both are similar in terms of security, and instant payments
J🤖xes
Hi from Spain...i have a big problem...we Develop in a ecs container a Projects in django-rest ...inside de container we have running a nginx conmected to a gunicorn server and sometimes nginx response a 502...Anyone can help me ?
J🤖xes
Thanks !!!
Anonymous
Tips to consume third party rest api data in django?
Anonymous
Best way to get user location with django?
Arturo
Is impossible. You need in front-end ask for the gps coord
Hari
If i want display numbers which have 201 or user given input number in phone book?
Hari
Have phone book also
Sunil
Can we embed tkinter project with django
Anonymous
How
Anonymous
To start learning Django
Anonymous
Best resources
Vivek
Any good free course to learn Django
Erik
Best resources
Its Django documentation.
Jayesh
Please somebody tell me how to integrate django in react js
Anonymous
Any job openings for Django?
Pankaj
error coming win error 123 os error anybody can help
Sultonbek Ikromov
error coming win error 123 os error anybody can help
https://stackoverflow.com/questions/33618656/python-windowserror-error-123-the-filename-directory-name-or-volume-label-s
swagBit
To start learning Django
Django documentation is available https://docs.djangoproject.com/en/2.2/
Lykheang
hi all brother . i have issues postgres with pypy in django . how to solve this problem (just migrate default django admin). .
Sander
How do I create listener/service in Django. I have a Telegram Bot which listens for new messages and replies to them in certain cases. I want to implement this in my existing Django application but I don't know how and where