In this blog post we will see how to use AWS S3 to store and serve private media files in django. S3 provides a layer of security by making object private and accessible to those with the valid presigned url.
How To Store Django Static and Media Files in AWS S3
In this guide we will use django-storages package to manage our static and media files. Let’s walkthrough the whole process on how to store django static and media files in aws s3.
How To: Django Rest Framework File Upload API
Uploading file via API is a very common requirement. In this guide we will learn to build Django Rest Framework File Upload API.
Backup and Restore PostgreSQL database dump in Ubuntu
Learn how to backup and restore PostgreSQL database dump in Ubuntu (Linux) and Mac.
How to convert datetime to different timezone in Python using pytz
Convert datetime to different timezone in Python using pytz.
Master Python Interview Questions with Answers
Prepare for Python interview questions using this extensive list of questions and answers. This list takes you from beginner to intermediate to advanced level of python concepts in question-answer format.
Recommended WordPress Plugins
Here we have curated a list of recommended wordpress plugins to install when you are starting up.
LeetCode 347: Top K Frequent Elements | Python
Leetcode 347: You are given an array nums and an integer k, you need to return k most frequent elements.