What is Python, A brief history and why should I learn python

< 1 min read এই ভিডিওতে আমি পাইথন কি এবং পাইথনের ইতিহাস খুবই স্বল্প আকারে বলার চেষ্টা করেছি। “পাইথন হচ্ছে একটা প্রোগ্রামিং ল্যাঙ্গুয়েজের নাম” এমনকি পাইথন শিখে কি করবো বা করতে পারবো তাও সামান্য বলার চেষ্টা করেছি। আমি যখন এই ভিডিওটি বানাচ্ছি তখন পাইথন ৩.৮.৩ রিলিজ হয়েছে।

Saving thousands(even millions) of records in a database through django ORM. Is it really a good idea?

2 min read Well, I am writing this note to be reminded later or to remind you who do this stupid mistake like i did. I have a project where i have written a command called init_data to initialize the required data in the system. I needed to create thousands of django user instances, thousands of other model instances.
So i was not concerned of how django orm will handle these instance creation in a loop until i suffered for it.