@@ -4,25 +4,29 @@ Python shared memory library based an posix-ipc.
44
55### Features
66* Shared type:
7- * Basic type (int, float, bool, str)
8- * list, tuple, dict and nparray
9- * Management of the availability of shared memory space
10- * Overloaded methods for list and dict (basic)
11- * Methods to manage all defined shared space
7+ * Basic type: ` int ` , ` float ` , ` bool ` , ` str ` , ` complex `
8+ * Python defined type: ` list ` , ` tuple ` and ` dict `
9+ * Other: ` nparray `
10+ * Can define shared data through a ` JSON `
11+ * Define directly the value inside the json (excpet ` tuple ` )
12+ * Define value structure ` list ` and ` nparray ` example [ HERE] ( https://github.com/Zentetsu/SharedMemory/wiki/JSON )
13+ * Possibility to manage shared memory space
14+ * Can use ` __getitem__ ` and ` __setitem__ ` on:
15+ * ` list ` and ` dict `
1216* Space Memory configurable
1317* Semaphore
1418
1519### Installation
1620``` console
17- $ > pip install SharedMemory
21+ > pip install SharedMemory
1822```
1923
2024### Documentation
21- Documentation and example are provided [ here ] ( https://github.com/Zentetsu/SharedMemory/wiki )
25+ Documentation and example are provided [ HERE ] ( https://github.com/Zentetsu/SharedMemory/wiki )
2226
2327### More
2428[ ![ PyPI version] ( https://badge.fury.io/py/SharedMemory.svg )] ( https://badge.fury.io/py/SharedMemory )
2529![ Python package] ( https://github.com/Zentetsu/SharedMemory/workflows/Python%20package/badge.svg?branch=master )
2630![ Upload Python Package] ( https://github.com/Zentetsu/SharedMemory/workflows/Upload%20Python%20Package/badge.svg )
27- [ ![ Python] ( https://shields.io/badge/python-3.7_ |_3.8_ |_3.9_ |_3.10 -blue.svg )] ( https://www.python.org/downloads/release/python-380/ )
31+ [ ![ Python] ( https://shields.io/badge/3.8_ |_3.9_ |_3.10_ |_3.11 -blue.svg )] ( https://www.python.org/downloads/release/python-380/ )
2832[ ![ License: GPL v3] ( https://img.shields.io/badge/License-GPL%20v3-blue.svg )] ( http://www.gnu.org/licenses/gpl-3.0 )
0 commit comments