tangled
alpha
login
or
join now
vidyasagarv.com
/
py-oxyroot
0
fork
atom
Python bindings to oxyroot. Makes reading .root files blazing fast ๐
0
fork
atom
overview
issues
1
pulls
pipelines
Better compression
vidyasagarv.com
5 months ago
53929f8f
a7638217
+1
-1
1 changed file
expand all
collapse all
unified
split
python
tests
convert_to_pq.py
+1
-1
python/tests/convert_to_pq.py
···
8
8
9
9
oxy_start_time = time.time()
10
10
oxy_tree = oxyroot.open(file_name)[tree_name]
11
11
-
oxy_tree.to_parquet("ntuples.pq", overwrite=True)
11
11
+
oxy_tree.to_parquet("ntuples.pq", overwrite=True, compression="zstd")
12
12
oxy_end_time = time.time()
13
13
14
14
print("\n Total time")