memquery 0.1.1

MemQuery is simple library for creating, querying, and updating in memory documents that are represented as JSON objects and queried using Mongodb like operators.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
from membind.memory import linear_mem_addr, write_to_memory,\
    ptr_to_str_with_len, ptr_to_str, write_str, result_ptr_to_value


__all__ = [
    'linear_mem_addr',
    'write_to_memory',
    'ptr_to_str_with_len',
    'ptr_to_str',
    'write_str',
    'result_ptr_to_value'
]