alecramsay / T

Tables as a computing model
MIT License
0 stars 0 forks source link

Support other native Python data types (as objects) #1

Open alecramsay opened 1 year ago

alecramsay commented 1 year ago

Built-in Python data types:

str <<< text int, float, complex <<< numbers list, tuple, range <<< sequences dict <<< mappings set, frozenset <<< sets bool <<< booleans bytes, bytearray, memoryview <<< binary data

alecramsay commented 1 year ago

These are read from CSV as Pandas objects:

While these are read as strings (because ast.literal_eval() doesn't support them):