Anonymous
Okay. I dont have any example right now but will share in case I get any requirement or find somewhere.
.
Is there anyone who can help me with the integration of python script and HTML using Django ?
Anonymous
Hello Any tips to where I can start building Django document management package from scratch?
Reginald
Hi I want to add a chatbot to my app any suggestions ?
Anonymous
hi, i wanna deploy my django application, which free hosting web server do you advise?, i used postgres
Arulmurugan
hi, i wanna deploy my django application, which free hosting web server do you advise?, i used postgres
You can try heroku or openshift. But their free plan has some limitations and might not be suitable for a production deployment. Also you can signup for an AWS account and use their free tier for a year.
Kunke
After defining the model, Does django create other database itself even if one uses other database aside SQLITE, eg mongodb, MySQL
Anonymous
Plz help
<embed src="{{ obj.pdf }}" width="800px" height="2100px" />
Anonymous
<embed src="{{ obj.pdf }}" width="800px" height="2100px" />
Just check the height and width and the pdf file object in your context
Dairon Ian 
Hi 👋, it is posible to make a post on facebook, Twitter and some social networks else directly from my Django app?
Dairon Ian 
Yes, but you will have to integrate with the social apps api
Thanks, but I mean, there is any extension to do that?
Anonymous
Thanks, but I mean, there is any extension to do that?
Yes, there are the so called wrappers
Anonymous
https://github.com/tschellenbach/Django-facebook < this one is an exemple
Anonymous
It will just facilitate integration though
Anonymous
You still have to search the best lib for your needs
Dairon Ian 
Thanks bro, I'll to try that one, so, you are right, I need to search
kancharla
Mrng geeks,while making connection between Django and Mysql I am getting an error called "Authentication plugin' caching_sh2_password' cannot be loaded " Could any one help me to fix this issue MySql version: 8.0 Python version:3.8
kancharla
Guys could any one help me...🙂
Saw
Hi. I would like to know if it was possible to use two database with Django. In case of failure of one of the databases, the data will be recorded in the second.
Cyrus
I just had asked such question
Cyrus
10 minutes ago
Cyrus
I was asked to google
Cyrus
And 1st search result was my answer
Cyrus
We can use multiple DB
Rohan
Say you want to get items between two given timestamps
Rohan
One of your db failed for a while and then it came back online
Rohan
Will you do a filter on both databases?
Anonymous
How to update instance user (username) in User model using class view anyone?
Anonymous
def Editprofile(request): if request.method == 'post': form = forms.ChangeProfile(request.POST,instance = request.user) if form.is_valid(): form.save() return redirect (reverse_lazy('login')) else: return render(request, 'editprofile.html' ,{'form' : form}
Anonymous
i want to do this using a class BV
Rajvir
i want to fetch data from django and send back to javaScript to update the HTML page without refreshing the webpage. i have sucessfully sent request to django from JS without refreshing the page but how do i send back the fetched data from django back to js to then to HTML without Refreshing page.
Cyrus
Dont send html
Rajvir
Let django send only response as json only
but how to specify that send to js and to which function
Cyrus
but how to specify that send to js and to which function
You dont have to specify which function to send to
Cyrus
Google Fetch json
Rajvir
ok thanks
Anonymous
Anyone can suggest from where I can get best tutorials on DJANGO ASYNCHRONOUS
Anonymous
ok thanks
Learn about ajax, that is exactly what you need
Mirco
Django is not async, its sync
Django 3.1 will be async 🙂
Muslim
Django 3.1 will be async 🙂
only views, async orm is too far
Mirco
I don't think so, but yeah it's not an easy job
193J1A04B6
guys
193J1A04B6
when I am running django-admin --version
193J1A04B6
I am getting an error error in importing forms from django
193J1A04B6
plz help
Shihasz
193J1A04B6
I installed Django version 3
Doragonsureiyā
I installed Django version 3
To share code or error tracebacks please use an online pasting service, here is a list of suggested sites: - https://del.dog - https://dpaste.org - https://linkode.org - https://hastebin.com - https://bin.kv2.dev
Bral Bral
Hey! If test is failed (test.py). Can i redirect it in sentry?
Mirco
It's not the aim of Sentry
Mirco
If your tests fail, you won't have any new release
Bral Bral
Yes you are right. But imagine a situation where there is a ready-made rest-api, and you need to find its errors. Is there an automation tool for this task? Yes, I know you can write in postman, but they are not automatically generated. I would like to see all these errors already in the configured sentry.
Mirco
Sentry is for logging errors on Prod env , so you can start a bug fixing and prepare a new release with the fixes
Mirco
Do you have the code for those endpoints ?
Mirco
Or they are maintained by other devs ?
Bral Bral
I took this code from them.
Mirco
And ? Now you have the code so you can write tests if they miss and fix bugs
Mirco
It's a normal nowadays job if you are a dev
Mirco
In most of cases you are involved in already started projects
Jesus
Hello, I have just imported my django project into a windows machine, using docker-compose, and managed to run it. it says the development server started at http://0.0.0.0:8000 but when i open that address is not working, any idea?
Bral Bral
In most of cases you are involved in already started projects
Yes you are right. but the purpose of the question was to learn about the possibility of doing this automatically, rather than writing tests manually. It seemed to me a good idea to install a production sandbox with sentry configured and immediately get a list of errors.
Bral Bral
As a result, there is nothing better than writing tests; D
Mirco
And on merging stuff