Python shared memory library based an posix-ipc.
- Shared type:
- Basic type:
int
,float
,bool
,str
,complex
- Python defined type:
list
,tuple
anddict
- Other:
nparray
- Basic type:
- Can define shared data through a
JSON
- Define directly the value inside the json (excpet
tuple
) - Define value structure
list
andnparray
example HERE
- Define directly the value inside the json (excpet
- Possibility to manage shared memory space
- Can use
__getitem__
and__setitem__
on:list
anddict
- Space Memory configurable
- Semaphore
> pip install SharedMemory
Documentation and example are provided HERE