Skip to content

Tag: python

How to allow ElasticSearch to accept empty date fields?

I have a Python script that I use to load some data into ElasticSearch. One of the fields I am loading is a date field, which on some rare occasions can be empty. In my code, if there is no date, I assign it the string “null”: In this case, I am getting the following error: How can I make

Python chunks write to excel

I am new to python and I m learning by doing. At this moment, my code is running quite slow and it seems to take longer and longer by each time I run it. The idea is to download an employee list as CSV, then to check the location of each Employee ID by running it trough a specific page

Django – How to save model objects in another model?

Let’s say I have these two models (in models.py file): How can I merge these two models in a new model but with the same Id? So it becomes: PS: In my views.py file I called a save method like that: Thanks in advance and I really appreciate who answers that because I see that many people having the same