-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.py
More file actions
48 lines (36 loc) · 1.09 KB
/
example.py
File metadata and controls
48 lines (36 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import time
from TimedDict import timeddict
events_window = timeddict.TimedDict()
now = time.time()
# Assign values like a normal dict like:
events_window[now] = 'value_1'
events_window[now + 1] = 'value_2'
# ...or like:
events_window.update({now + 2: {'values': {'value_3', 'value_4'}}})
print('Raw data:')
print(events_window)
# NOTE:
# As the TimedDict has a thread running purging old elements, it's important to ether
# use the protect() or pause() followed by a resume() when iterating.
# Automatic by the use of context manager, protect() approach
with events_window.protect():
print('\n- protect()')
for event in events_window:
print(event)
# Manual setting, pause() and resume() approach
events_window.pause()
print('\n- pause() followed by resume()')
for event in events_window:
print(event)
events_window.resume()
# TTL example
print('\nLength of the TimedDict: {}'.format(len(events_window)))
print(events_window)
time.sleep(1.1)
print(events_window)
time.sleep(1)
print(events_window)
time.sleep(1)
print(events_window)
# Gracefully stop the purge thread
events_window.stop()