How can i convert mysql database which looks like:
ID  NAMES   OS     Version   TestField   Date
1   names   os1    1.1.2     Tatata      10.11
2   name2   os2    1.1.3     Tatata2     11.11
3   name3   os3    1.1.4     Tatata3     12.3
4   name4   os4    1.1.2     Tatata4     12.4
... ...     ...    ....      ...         ....
Into:
ID        1
NAMES     names
OS        os1
Version   1.12
TestField Tatata
Date      10.11
ID        2
NAMES     names2
OS        os2
Version   1.1.3
TestField Tatata2
Date      11.11
....
end etc...
I already tried use pandas but unlucky I am not very friendly with this lib
 
    