Part 09 - How to use PostgreSQL Database | Python Django Tutorial | Brototype Tutorials Malayalam

preview_player
Показать описание
In this video, you will learn How to use PostgreSQL Database in Django.

If you want to learn more about web development with Python and Django, subscribe to the channel and watch the rest of the series. Happy coding! 😊

To get 24x7 free tech support while learning, fill out this form -

Videos to watch before starting this tutorial -

Here are the links for Django Installation on

Link to the Brototype Malayalam YouTube channel -

About us:

Subscribe to Kerala's top tech-career YouTube channel and gain access to free programming tutorials and tech-career videos in Malayalam. This channel will help you gain skills and knowledge to build a high-income career in the IT field.

Enroll in our 7-month offline training program, 'Brocamp', to learn coding and other skills in an office environment by paying the training fee after placement.

To know more about Brocamp, Visit:

For any inquiries & updates:
Call/Whatsapp us at 7034395811

Рекомендации по теме
Комментарии
Автор

ചില ഭാഗത്ത് skip അടിക്കുന്നു. അത് മുഴുവനും കാണിച്ചു തരു.
Image അവിടെ,
Img= model.ImageField()
ഇതുവരെ എഴുതിയിട്ട് skip ചെയ്ത്, (code error) ഇരുപതാം മിനിറ്റിൽ,
നോക്കുമ്പോൾ വീഡിയോയിൽ കാണിക്കാത്ത പുതിയ വരികൾ കാണുന്നു

riswan
Автор

some portions are missing in this vedio


1) list. html
<td>
<img alt="" style="width: 40px; ">
</td>


2) settings.py

MEDIA_URL = "media/"

MEDIA_ROOT = BASE_DIR / 'media'

# the media folder will be automatically created

3)views.py
while uploading a image dont forget to add request.FILES

def create(request):
if request.POST:
print("hi")
frm = movieForm(request.POST, request.FILES)
print(request.FILES)
if frm.is_valid():
frm.save()
return redirect('create')
else:
frm = movieForm()


return render(request, 'create.html', {'frm':frm})

hope it helps😁😁

narutouzhumaki
Автор

Sir, I think some portions are missing in the video!!🖖, possibly due to issues with video merging☺️.

1.Define MEDIA_ROOT in settings.py.
2.Use request.FILES while create instance of modelform
3.Use .url when displaying images in HTML

Thank for your support

joyelroy
Автор

Sir your class is very good and nice presentation ❤

akarshanil
Автор

Sir could you please upload django videos daily 😢

angeldiaries
Автор

Thank you so much. Thanks for this django playlist. Next episode?

code_study
Автор

Mongodb compass ilek enganeya migrate cheyyannu paranju thatumo please

geyqzus
Автор

Bro oru stock management create cheyiannu enegena cheyivo

decodegaming
Автор

ithil images upload cheyyande pala stepsum missing aahnu

mahinps
Автор

Enthina ethrakk pid pidpp matte media root onnum nere kanichilla

manjithnath
Автор

Complete cheyyan ethra Part koodi venam?

nithin_ganesh
Автор

showing error that data didn't validate.

pauljputhusserry