quasardb 3.14.2.dev4__cp313-cp313-win32.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.

Potentially problematic release.


This version of quasardb might be problematic. Click here for more details.

Files changed (54) hide show
  1. quasardb/CMakeFiles/generate.stamp +1 -0
  2. quasardb/CMakeFiles/generate.stamp.depend +2 -0
  3. quasardb/INSTALL.vcxproj +209 -0
  4. quasardb/INSTALL.vcxproj.filters +13 -0
  5. quasardb/__init__.py +123 -0
  6. quasardb/cmake_install.cmake +48 -0
  7. quasardb/date/ALL_BUILD.vcxproj +181 -0
  8. quasardb/date/ALL_BUILD.vcxproj.filters +8 -0
  9. quasardb/date/CMakeFiles/Export/df49adab93b9e0c10c64f72458b31971/dateTargets.cmake +106 -0
  10. quasardb/date/CMakeFiles/generate.stamp +1 -0
  11. quasardb/date/CMakeFiles/generate.stamp.depend +6 -0
  12. quasardb/date/INSTALL.vcxproj +209 -0
  13. quasardb/date/INSTALL.vcxproj.filters +13 -0
  14. quasardb/date/cmake_install.cmake +71 -0
  15. quasardb/date/date.sln +60 -0
  16. quasardb/date/dateConfigVersion.cmake +65 -0
  17. quasardb/date/dateTargets.cmake +63 -0
  18. quasardb/extensions/__init__.py +8 -0
  19. quasardb/extensions/writer.py +193 -0
  20. quasardb/firehose.py +101 -0
  21. quasardb/numpy/__init__.py +901 -0
  22. quasardb/pandas/__init__.py +447 -0
  23. quasardb/pool.py +294 -0
  24. quasardb/pybind11/ALL_BUILD.vcxproj +181 -0
  25. quasardb/pybind11/ALL_BUILD.vcxproj.filters +8 -0
  26. quasardb/pybind11/CMakeFiles/generate.stamp +1 -0
  27. quasardb/pybind11/CMakeFiles/generate.stamp.depend +20 -0
  28. quasardb/pybind11/INSTALL.vcxproj +209 -0
  29. quasardb/pybind11/INSTALL.vcxproj.filters +13 -0
  30. quasardb/pybind11/cmake_install.cmake +40 -0
  31. quasardb/pybind11/pybind11.sln +60 -0
  32. quasardb/qdb_api.dll +0 -0
  33. quasardb/quasardb.cp313-win32.pyd +0 -0
  34. quasardb/range-v3/ALL_BUILD.vcxproj +181 -0
  35. quasardb/range-v3/ALL_BUILD.vcxproj.filters +8 -0
  36. quasardb/range-v3/CMakeFiles/Export/d94ef200eca10a819b5858b33e808f5b/range-v3-targets.cmake +128 -0
  37. quasardb/range-v3/CMakeFiles/generate.stamp +1 -0
  38. quasardb/range-v3/CMakeFiles/generate.stamp.depend +18 -0
  39. quasardb/range-v3/INSTALL.vcxproj +209 -0
  40. quasardb/range-v3/INSTALL.vcxproj.filters +13 -0
  41. quasardb/range-v3/Range-v3.sln +72 -0
  42. quasardb/range-v3/cmake_install.cmake +107 -0
  43. quasardb/range-v3/include/range/v3/version.hpp +24 -0
  44. quasardb/range-v3/range-v3-config-version.cmake +83 -0
  45. quasardb/range-v3/range-v3-config.cmake +80 -0
  46. quasardb/range-v3/range.v3.headers.vcxproj +804 -0
  47. quasardb/range-v3/range.v3.headers.vcxproj.filters +952 -0
  48. quasardb/stats.py +233 -0
  49. quasardb/table_cache.py +52 -0
  50. quasardb-3.14.2.dev4.dist-info/LICENSE.md +11 -0
  51. quasardb-3.14.2.dev4.dist-info/METADATA +40 -0
  52. quasardb-3.14.2.dev4.dist-info/RECORD +54 -0
  53. quasardb-3.14.2.dev4.dist-info/WHEEL +5 -0
  54. quasardb-3.14.2.dev4.dist-info/top_level.txt +1 -0
quasardb/stats.py ADDED
@@ -0,0 +1,233 @@
1
+ import re
2
+ import quasardb
3
+ import logging
4
+ from datetime import datetime
5
+
6
+ logger = logging.getLogger('quasardb.stats')
7
+
8
+
9
+ stats_prefix = '$qdb.statistics.'
10
+ user_pattern = re.compile(r'\$qdb.statistics.(.*).uid_([0-9]+)$')
11
+ total_pattern = re.compile(r'\$qdb.statistics.(.*)$')
12
+
13
+
14
+ def is_user_stat(s):
15
+ return user_pattern.match(s) is not None
16
+
17
+
18
+ def is_cumulative_stat(s):
19
+ # NOTE(leon): It's quite difficult to express in Python that you don't want any
20
+ # regex to _end_ with uid_[0-9]+, because Python's regex engine doesn't support
21
+ # variable width look-behind.
22
+ #
23
+ # An alternative would be to use the PyPi regex library (for POSIX regexes), but
24
+ # want to stay light on dependencies#
25
+ #
26
+ # As such, we define a 'cumulative' stat as anything that's not a user stat.
27
+ # Simple but effective.
28
+ return user_pattern.match(s) is None
29
+
30
+
31
+ def by_node(conn):
32
+ """
33
+ Returns statistic grouped by node URI.
34
+
35
+ Parameters:
36
+ conn: quasardb.Cluster
37
+ Active connection to the QuasarDB cluster
38
+ """
39
+ return {x: of_node(conn.node(x)) for x in conn.endpoints()}
40
+
41
+
42
+ def of_node(dconn):
43
+ """
44
+ Returns statistic for a single node.
45
+
46
+ Parameters:
47
+ dconn: quasardb.Node
48
+ Direct node connection to the node we wish to connect to
49
+
50
+ """
51
+
52
+ start = datetime.now()
53
+ raw = {
54
+ k: _get_stat(dconn,k) for k in dconn.prefix_get(stats_prefix, 1000)}
55
+
56
+ ret = {'by_uid': _by_uid(raw),
57
+ 'cumulative': _cumulative(raw)}
58
+
59
+ check_duration = datetime.now() - start
60
+
61
+ ret['cumulative']['check.online'] = 1
62
+ ret['cumulative']['check.duration_ms'] = int(check_duration.total_seconds() * 1000)
63
+
64
+ return ret
65
+
66
+ _stat_types = {'node_id': ('constant', None),
67
+ 'operating_system': ('constant', None),
68
+ 'partitions_count': ('constant', 'count'),
69
+
70
+ 'cpu.system': ('counter', 'ns'),
71
+ 'cpu.user': ('counter', 'ns'),
72
+ 'cpu.idle': ('counter', 'ns'),
73
+ 'startup': ('constant', None),
74
+ 'startup_time': ('constant', None),
75
+ 'shutdown_time': ('constant', None),
76
+
77
+ 'network.current_users_count': ('gauge', 'count'),
78
+ 'hardware_concurrency': ('gauge', 'count'),
79
+
80
+ 'check.online': ('gauge', 'count'),
81
+ 'check.duration_ms': ('constant', 'ms'),
82
+
83
+ 'requests.bytes_in': ('counter', 'bytes'),
84
+ 'requests.bytes_out': ('counter', 'bytes'),
85
+ 'requests.errors_count': ('counter', 'count'),
86
+ 'requests.successes_count': ('counter', 'count'),
87
+ 'requests.total_count': ('counter', 'count'),
88
+
89
+ 'async_pipelines.merge.bucket_count': ('counter', 'count'),
90
+ 'async_pipelines.merge.duration_us': ('counter', 'us'),
91
+ 'async_pipelines.write.successes_count': ('counter', 'count'),
92
+ 'async_pipelines.write.failures_count': ('counter', 'count'),
93
+ 'async_pipelines.write.time_us': ('counter', 'us'),
94
+
95
+ 'async_pipelines.merge.max_bucket_count': ('gauge', 'count'),
96
+ 'async_pipelines.merge.max_depth_count': ('gauge', 'count'),
97
+ 'async_pipelines.merge.requests_count': ('counter', 'count'),
98
+
99
+ 'evicted.count': ('counter', 'count'),
100
+ 'pageins.count': ('counter', 'count'),
101
+
102
+ }
103
+
104
+ async_pipeline_bytes_pattern = re.compile(r'async_pipelines.pipe_[0-9]+.merge_map.bytes')
105
+ async_pipeline_count_pattern = re.compile(r'async_pipelines.pipe_[0-9]+.merge_map.count')
106
+
107
+ def _stat_type(stat_id):
108
+ if stat_id in _stat_types:
109
+ return _stat_types[stat_id]
110
+ elif stat_id.endswith('total_ns'):
111
+ return ('counter', 'ns')
112
+ elif stat_id.endswith('total_bytes'):
113
+ return ('counter', 'bytes')
114
+ elif stat_id.endswith('read_bytes'):
115
+ return ('counter', 'bytes')
116
+ elif stat_id.endswith('written_bytes'):
117
+ return ('counter', 'bytes')
118
+ elif stat_id.endswith('total_count'):
119
+ return ('counter', 'count')
120
+ elif stat_id.startswith('network.sessions.'):
121
+ return ('gauge', 'count')
122
+ elif stat_id.startswith('memory.'):
123
+ # memory statistics are all gauges i think, describes how much memory currently allocated where
124
+ return ('gauge', 'bytes')
125
+ elif stat_id.startswith('persistence.') or stat_id.startswith('disk'):
126
+ # persistence are also all gauges, describes mostly how much is currently available/used on storage
127
+ return ('gauge', 'bytes')
128
+ elif stat_id.startswith('license.'):
129
+ return ('gauge', None)
130
+ elif stat_id.startswith('engine_'):
131
+ return ('constant', None)
132
+ elif async_pipeline_bytes_pattern.match(stat_id):
133
+ return ('gauge', 'bytes')
134
+ elif async_pipeline_count_pattern.match(stat_id):
135
+ return ('gauge', 'count')
136
+ else:
137
+ return None
138
+
139
+ def stat_type(stat_id):
140
+ """
141
+ Returns the statistic type by a stat id. Returns one of:
142
+
143
+ - 'gauge'
144
+ - 'counter'
145
+ - None in case of unrecognized statistics
146
+
147
+ This is useful for determining which value should be reported in a dashboard.
148
+ """
149
+ return _stat_type(stat_id)
150
+
151
+
152
+ def _calculate_delta_stat(stat_id, prev, cur):
153
+ logger.info("calculating delta for stat_id = {}, prev = {}. cur = {}".format(stat_id, prev, cur))
154
+
155
+ stat_type = _stat_type(stat_id)
156
+ if stat_type == 'counter':
157
+ return cur - prev
158
+ elif stat_type == 'gauge':
159
+ return cur
160
+ else:
161
+ return None
162
+
163
+ def _calculate_delta_stats(prev_stats, cur_stats):
164
+ ret = {}
165
+ for stat_id in cur_stats.keys():
166
+ try:
167
+ prev_stat = cur_stats[stat_id]
168
+ cur_stat = cur_stats[stat_id]
169
+
170
+ value = _calculate_delta_stat(stat_id, prev_stat, cur_stat)
171
+ if value is not None:
172
+ ret[stat_id] = value
173
+
174
+ except KeyError:
175
+ # Stat likely was not present yet in prev_stats
176
+ pass
177
+
178
+ return ret
179
+
180
+
181
+ def calculate_delta(prev, cur):
182
+ """
183
+ Calculates the 'delta' between two successive statistic measurements.
184
+ """
185
+ ret = {}
186
+ for node_id in cur.keys():
187
+ ret[node_id] = _calculate_delta_stats(prev[node_id]['cumulative'],
188
+ cur[node_id]['cumulative'])
189
+
190
+ return ret
191
+
192
+ def _clean_blob(x):
193
+ x_ = x.decode('utf-8', 'replace')
194
+
195
+ # remove trailing zero-terminator
196
+ return ''.join(c for c in x_ if ord(c) != 0)
197
+
198
+
199
+ def _get_stat(dconn, k):
200
+ # Ugly, but works: try to retrieve as integer, if not an int, retrieve as
201
+ # blob
202
+ try:
203
+ return dconn.integer(k).get()
204
+ except quasardb.quasardb.AliasNotFoundError:
205
+ return _clean_blob(dconn.blob(k).get())
206
+
207
+ def _by_uid(stats):
208
+ xs = {}
209
+ for k, v in stats.items():
210
+ matches = user_pattern.match(k)
211
+ if is_user_stat(k) and matches:
212
+ (metric, uid_str) = matches.groups()
213
+ uid = int(uid_str)
214
+ if uid not in xs:
215
+ xs[uid] = {}
216
+
217
+ if not metric.startswith('serialized'):
218
+ xs[uid][metric] = v
219
+
220
+ return xs
221
+
222
+
223
+ def _cumulative(stats):
224
+ xs = {}
225
+
226
+ for k, v in stats.items():
227
+ matches = total_pattern.match(k)
228
+ if is_cumulative_stat(k) and matches:
229
+ metric = matches.groups()[0]
230
+ if not metric.startswith('serialized'):
231
+ xs[metric] = v
232
+
233
+ return xs
@@ -0,0 +1,52 @@
1
+ import logging
2
+
3
+ logger = logging.getLogger('quasardb.table_cache')
4
+
5
+ _cache = {}
6
+
7
+ def clear():
8
+ logger.info("Clearing table cache")
9
+ _cache = {}
10
+
11
+ def exists(table_name: str) -> bool:
12
+ """
13
+ Returns true if table already exists in table cache.
14
+ """
15
+ return table_name in _cache
16
+
17
+ def store(table, table_name=None, force_retrieve_metadata=True):
18
+ """
19
+ Stores a table into the cache. Ensures metadata is retrieved. This is useful if you want
20
+ to retrieve all table metadata at the beginning of a process, to avoid doing expensive
21
+ lookups in undesired code paths.
22
+
23
+ Returns a reference to the table being stored.
24
+ """
25
+ if table_name is None:
26
+ table_name = table.get_name()
27
+
28
+ if exists(table_name):
29
+ logger.warn("Table already in cache, overwriting: %s", table_name)
30
+
31
+ logger.debug("Caching table %s", table_name)
32
+ _cache[table_name] = table
33
+
34
+ table.retrieve_metadata()
35
+
36
+ return table
37
+
38
+ def lookup(table_name: str, conn, force_retrieve_metadata=True):
39
+ """
40
+ Retrieves table from _cache if already exists. If it does not exist,
41
+ looks up the table from `conn` and puts it in the cache.
42
+
43
+ If `force_retrieve_metadata` equals True, we will ensure that the table's
44
+ metadata is
45
+ """
46
+ if exists(table_name):
47
+ return _cache[table_name]
48
+
49
+ logger.debug("table %s not yet found, looking up", table_name)
50
+ table = conn.table(table_name)
51
+
52
+ return store(table, table_name, force_retrieve_metadata=force_retrieve_metadata)
@@ -0,0 +1,11 @@
1
+ Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
2
+
3
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
4
+
5
+ Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
6
+
7
+ Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
8
+
9
+ Neither the name of quasardb nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
10
+
11
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,40 @@
1
+ Metadata-Version: 2.2
2
+ Name: quasardb
3
+ Version: 3.14.2.dev4
4
+ Summary: Python API for quasardb
5
+ Home-page: https://www.quasardb.net/
6
+ Author: quasardb SAS
7
+ Author-email: contact@quasardb.net
8
+ License: BSD
9
+ Keywords: quasardb timeseries database API driver
10
+ Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Intended Audience :: End Users/Desktop
12
+ Classifier: Intended Audience :: Financial and Insurance Industry
13
+ Classifier: Intended Audience :: Information Technology
14
+ Classifier: Intended Audience :: Other Audience
15
+ Classifier: Intended Audience :: System Administrators
16
+ Classifier: Intended Audience :: Telecommunications Industry
17
+ Classifier: Programming Language :: Python :: 3.7
18
+ Classifier: Programming Language :: Python :: 3.8
19
+ Classifier: Programming Language :: Python :: 3.9
20
+ Classifier: Programming Language :: Python :: 3.10
21
+ Classifier: Programming Language :: Python :: 3.11
22
+ Classifier: Programming Language :: Python :: 3.12
23
+ Classifier: Topic :: Database
24
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
25
+ Classifier: License :: OSI Approved :: BSD License
26
+ License-File: LICENSE.md
27
+ Requires-Dist: numpy
28
+ Provides-Extra: pandas
29
+ Requires-Dist: pandas; extra == "pandas"
30
+ Provides-Extra: test
31
+ Requires-Dist: pytest; extra == "test"
32
+ Dynamic: author
33
+ Dynamic: author-email
34
+ Dynamic: classifier
35
+ Dynamic: home-page
36
+ Dynamic: keywords
37
+ Dynamic: license
38
+ Dynamic: provides-extra
39
+ Dynamic: requires-dist
40
+ Dynamic: summary
@@ -0,0 +1,54 @@
1
+ quasardb/INSTALL.vcxproj,sha256=wzG7SnuxLDMFLHVeThQjLHItPzCUtrBRnHvFMU-x8TE,11123
2
+ quasardb/INSTALL.vcxproj.filters,sha256=iOTBnkY98VmOOiPt_AfA7axV_6XToZYa1DoOoUW1lwM,561
3
+ quasardb/__init__.py,sha256=20wagayMPRncEbfEbAu0y8sbMRKj-Lyc_0LB8dMdysM,4670
4
+ quasardb/cmake_install.cmake,sha256=x2XDxeKtetlg3ehTqvCsuDhYZR2jhDGbpsW_CTVjNEg,1792
5
+ quasardb/firehose.py,sha256=DHYsew-aL1j5PKZonH30CrhXnwHEX1XIAhGbPrzd4PY,3593
6
+ quasardb/pool.py,sha256=lqVZPFejmNHU7EdyeoPkl7yy_-N3BRyuLhNTzIdtg8g,8743
7
+ quasardb/qdb_api.dll,sha256=9aMqfbz2gYwR3ID5HuXX3Eq8JLvDGMwGg5-BbOgBjSk,16407552
8
+ quasardb/quasardb.cp313-win32.pyd,sha256=ybRxo4lk3mG3cIhBBMk0icvbO85J_z-zoFbBlrlq6CU,1184768
9
+ quasardb/stats.py,sha256=LDV4F5KTpEXa5sS_syFo_TYn9_W2X1D32Eb43GLutOs,7620
10
+ quasardb/table_cache.py,sha256=t7FFQkms7pFlYDkOhCcLnLS8bWglZjlzX3Qs6gyBG6Q,1559
11
+ quasardb/CMakeFiles/generate.stamp,sha256=MC9-mgyGPAS3QAZa3gHSQ8dYfXJy_Hn7AChwEoqVWOs,55
12
+ quasardb/CMakeFiles/generate.stamp.depend,sha256=uY8FV-ceJ2Kk-6JfOnsIesDV7jKoUNfkKHNY2Nf7_E8,117
13
+ quasardb/date/ALL_BUILD.vcxproj,sha256=3ON6-1Su3Mh2aY-KSqFKfMp1o9PlogL0d8xH2iLhpSA,14300
14
+ quasardb/date/ALL_BUILD.vcxproj.filters,sha256=lTQk5MABpmIlZcZqriqmw7SlGUJKSM2xH8HnaKmgC5E,304
15
+ quasardb/date/INSTALL.vcxproj,sha256=LnVuMR4RCDLuZHIXY5VQheWTw8mwqjpo_60sQg9SdZU,11148
16
+ quasardb/date/INSTALL.vcxproj.filters,sha256=Cl_v345AlsIRXpEdEHslp9Zx7vWmj71L1zS8y-HIq5w,561
17
+ quasardb/date/cmake_install.cmake,sha256=ifY9-mKsN0uLZpK-Xf7YSLUi1NPXqoc2JuS6Ov3X-m0,3312
18
+ quasardb/date/date.sln,sha256=4_s2WwbOMC3T_Q6S6EkrS5tElZPAVCvkvTF2VFdJL0s,3753
19
+ quasardb/date/dateConfigVersion.cmake,sha256=gMHG49AUzfjGGWxNIwxVKqMNUhKftzyhUHHWjn3AXCY,2827
20
+ quasardb/date/dateTargets.cmake,sha256=FuGNruC_9fdY0b7YwlC80Kpx9H3Y5CnGXOVNRs6ePRU,2842
21
+ quasardb/date/CMakeFiles/generate.stamp,sha256=MC9-mgyGPAS3QAZa3gHSQ8dYfXJy_Hn7AChwEoqVWOs,55
22
+ quasardb/date/CMakeFiles/generate.stamp.depend,sha256=VE0wY4pBg5os9FKuJtB3O6rXS07PHFe4GwDsaitx-hY,654
23
+ quasardb/date/CMakeFiles/Export/df49adab93b9e0c10c64f72458b31971/dateTargets.cmake,sha256=kI-gSADoA7MuLXEBcyU3_kYGNyGw6NoQ9chjo7LpEHY,4189
24
+ quasardb/extensions/__init__.py,sha256=zvMxXV_zuRSbNrkjsu-qFSEiZahdHmC0lhMqMVRzY_8,120
25
+ quasardb/extensions/writer.py,sha256=LcGhgr_jrHEDukVukLN1eGKCU0egeZkcCOenFEhZi3A,5928
26
+ quasardb/numpy/__init__.py,sha256=SKBNEXyVQNmiZCtg0rlsnpEwvUYKGhvjshPnyByNCbs,30951
27
+ quasardb/pandas/__init__.py,sha256=LNEmjKvcDD6IdEGrQIgOaBhYH14hH7Y9bF1PFWa6gFg,15331
28
+ quasardb/pybind11/ALL_BUILD.vcxproj,sha256=zJ96m6uFDr8YGBqu1DbqQ-eq_CNN66Qsa8SOiQjwZg4,20780
29
+ quasardb/pybind11/ALL_BUILD.vcxproj.filters,sha256=WjgQPMVZN7jEaUOdw8Ha03hPfNxybvx_F2wOck10Kqo,308
30
+ quasardb/pybind11/INSTALL.vcxproj,sha256=PXjjtCAmp9mvMoiyZ5wVtejduYAdwsb2LB2f4a-Dx_E,11168
31
+ quasardb/pybind11/INSTALL.vcxproj.filters,sha256=OaVU_jldDHNAbgBIGbaCZ4QxAiZIWX4jSwvfKSSO-L0,561
32
+ quasardb/pybind11/cmake_install.cmake,sha256=uu8iLl7ILn4rbL9q1V1Nn7cKM0vL_-GUARHyOShCm24,1370
33
+ quasardb/pybind11/pybind11.sln,sha256=xyf808h4194B3XL5usQjiivJ2bR2v5dSDDAkKF_Nxns,3753
34
+ quasardb/pybind11/CMakeFiles/generate.stamp,sha256=MC9-mgyGPAS3QAZa3gHSQ8dYfXJy_Hn7AChwEoqVWOs,55
35
+ quasardb/pybind11/CMakeFiles/generate.stamp.depend,sha256=itK64a7hFzsMhytHGPP2MEP-Ig2NFN-5wsw8mpqNfoA,2279
36
+ quasardb/range-v3/ALL_BUILD.vcxproj,sha256=2zto8OCr-htOV-praJVB0Jvl20nxm3L82-8fEuY4mhQ,19308
37
+ quasardb/range-v3/ALL_BUILD.vcxproj.filters,sha256=c0k-3qrBreLvjffsj9pJo50YOMqfDYnxLpBqvV1nI00,308
38
+ quasardb/range-v3/INSTALL.vcxproj,sha256=QcRnQIHiy_SyvnAIGMaIqUnw6A3TwMqgV9a8kLLi6CE,11168
39
+ quasardb/range-v3/INSTALL.vcxproj.filters,sha256=u8MD963a7VJm4aH-yA7-Jv_7KVTZWPbsVMxmsddyHwQ,561
40
+ quasardb/range-v3/Range-v3.sln,sha256=brNoL-VOHg7mAMfM_eg1p8K6Hqatm88e28-bewXE0h8,4615
41
+ quasardb/range-v3/cmake_install.cmake,sha256=lQlvV7C93UU8d5oHj7xrNHzcdVNbpMRp1RrgWuNsbQc,6910
42
+ quasardb/range-v3/range-v3-config-version.cmake,sha256=57XQ96x5Ec1VvRfoIPND_DSMJ9ZbHUqa8iZEiS0YMvw,3332
43
+ quasardb/range-v3/range-v3-config.cmake,sha256=E7j1hj2ihfV3jYirDWkQgWZ9vjQTPUI9w2BR-qfV6qM,3458
44
+ quasardb/range-v3/range.v3.headers.vcxproj,sha256=jW9CpabQoUv44D3rBgyummM_kHFEluml6497PsZAIkI,58990
45
+ quasardb/range-v3/range.v3.headers.vcxproj.filters,sha256=wPVJVPxpz7v_-eHfctxJBiHZnBpAilp0y3X1_aH3glc,51825
46
+ quasardb/range-v3/CMakeFiles/generate.stamp,sha256=MC9-mgyGPAS3QAZa3gHSQ8dYfXJy_Hn7AChwEoqVWOs,55
47
+ quasardb/range-v3/CMakeFiles/generate.stamp.depend,sha256=ivzdcpJmkR4YntEXnFf4sVTLTrgOnWs-8qRuCWj8HKg,1909
48
+ quasardb/range-v3/CMakeFiles/Export/d94ef200eca10a819b5858b33e808f5b/range-v3-targets.cmake,sha256=2WN8TJ25ES8AniYWyiS3BFiUz4RAJww7dvvnC-kE7zM,5393
49
+ quasardb/range-v3/include/range/v3/version.hpp,sha256=jy6iEzXjaavicAw1VSIfvpS7Wu9IoEY51Q5N9m4eaB8,610
50
+ quasardb-3.14.2.dev4.dist-info/LICENSE.md,sha256=0iT1ltzDof6cJr8mSX2PVOGhKjISfCrOYzJg7rG2pOs,1477
51
+ quasardb-3.14.2.dev4.dist-info/METADATA,sha256=dhP8bWTwq_IKkZBlUqojF3CCZsGfnj4PhJh6tMh4V94,1483
52
+ quasardb-3.14.2.dev4.dist-info/WHEEL,sha256=DFEd4wH53WDAEWJlYTy3wsIIOJTkJ3-fMddO9UbJavY,97
53
+ quasardb-3.14.2.dev4.dist-info/top_level.txt,sha256=wlprix4hCywuF1PkgKWYdZeJKq_kgJOqkAvukm_sZQ8,9
54
+ quasardb-3.14.2.dev4.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (75.8.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp313-cp313-win32
5
+
@@ -0,0 +1 @@
1
+ quasardb