vlcSim 0.4.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- vlcsim/__init__.py +25 -0
- vlcsim/controller.py +743 -0
- vlcsim/scene.py +1793 -0
- vlcsim/simulator.py +797 -0
- vlcsim-0.4.0.dist-info/METADATA +164 -0
- vlcsim-0.4.0.dist-info/RECORD +8 -0
- vlcsim-0.4.0.dist-info/WHEEL +4 -0
- vlcsim-0.4.0.dist-info/licenses/LICENSE.md +17 -0
vlcsim/__init__.py
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"""
|
|
2
|
+
VLCsim is composed by three modules:
|
|
3
|
+
|
|
4
|
+
* Scene: It has all the information related to the scene, like the room dimensions, the devices used, the receivers, etc.
|
|
5
|
+
* Controller: In charge of the allocation system.
|
|
6
|
+
* Simulator: All the dynamics of the system is here
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
__version__ = "0.4.0" # placeholder for poetry-dynamic-versioning
|
|
10
|
+
|
|
11
|
+
from .scene import *
|
|
12
|
+
from .controller import *
|
|
13
|
+
from .simulator import *
|
|
14
|
+
|
|
15
|
+
__all__ = [
|
|
16
|
+
"AccessPoint",
|
|
17
|
+
"VLed",
|
|
18
|
+
"Receiver",
|
|
19
|
+
"Scenario",
|
|
20
|
+
"Connection",
|
|
21
|
+
"Event",
|
|
22
|
+
"Simulator",
|
|
23
|
+
"Controller",
|
|
24
|
+
"RF",
|
|
25
|
+
]
|