Postgresql – Which Python or SQL Alchemy datatypes should be used for interfacing with databases containing hash values?
SQL Alchemy supports multiple ways of specifying datatypes for SQL database columns. If regular Python datatypes are used, SQL Alchemy will try to sensibly map these to datatypes supported by the connected to database. There is also the possibility of…