If you are trying to develop a python package and facing difficulties in doing so, this article may help. The Issue Recently, I was trying to develop a python package for a data science project. I generated my project using Data Science Cookiecutter. The folders were organized in the following way - ├── LICENSE ├──…Read more The Problem with Python Package Structure in dev Mode
python
Forecasting from Times Series model using Python
Playing with large set of data is always fun if you know how to do it. You can fetch interesting information from it. As part of my Master's course I have had opportunity to work on forecasting using Times Series modeling. And yes, now I can predict future without being a clairvoyant. 😀 Considering popularity…Read more Forecasting from Times Series model using Python
Dynamic form field based on another model’s entries and save them in a m2m way in Django
It's been a while since I have done this type of brain storming stuff. Today is my country's victory day and I have got some free time. Objective: I have a inventory model named Item. An item can have many attributes such as height, width etc. Think about a system where more attributes can be…Read more Dynamic form field based on another model’s entries and save them in a m2m way in Django