Last page update: November 23, 2011
We list here all the datatypes (dtypes) you can use for your data. You can also create your own custom type.
TODO
Character type.
Date type. Use the datetime.date() Python module syntax
Example:
datetime.date(2011, 10, 10)
DateHour type. Use the datetime.datetime.now() Python module syntax
Hour type. Use the datetime.time() Python module syntax
Example:
datetime.time(4, 5)
Integer type.
Example:
1223
Long integer type
Example:
48205294
Float number type.
Example:
34567.67
Text type.
The DT type is a Genro type. Its format is:
yyyy-mm-dd T hh:mm:ss.decimalswhere yyyy-mm-dd is the “year-month-day” format date, T is a separator, hh:mm:ss is the “hour-minute-second” format hour (followed by the decimals of seconds)
You can build your own datatype. For more information, check the custom_type() method