MOAL.storage.modeling package¶
Submodules¶
MOAL.storage.modeling.data_modeling module¶
- 
MOAL.storage.modeling.data_modeling.DEBUG= False¶ From https://www.coursera.org/learn/data-manipulation/home/welcome A Data Model is defined as having three primary properties:
- Structure
 
rows and columns nodes and edges key-value pairs sequence of bytes (raw, block data, file data)- Constraints
 “all rows must have the same number of columns” “all values in one column must have the same type” “a child cannot have two parents”
- Operations
 “find value of key x” “find rows where column lastname is jordan” “get the next N bytes”