I'm creating a numpy array which then will be exported into a django model. As dtype attribute I have a None, but I have one column which should be an integer which admits NULL values. Now, when in the csv a 'NULL' string is found, the type of that column is changed in bool, which doesn't admit a None.
Now, is it possible to do something like dtype={'name of the columns', 'int'}
just for that column and make the rest be still on None and let numpy decide the type?