Skip to content

Commit c892aa3

Browse files
committed
add test files
1 parent 6963fe4 commit c892aa3

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

test/create_test_files.py

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import h5py
2+
import numpy as np
3+
4+
with h5py.File('test.h5', 'w') as f:
5+
# create datasets with different dtypes: f2, f4, f8, i1, i2, i4
6+
data = [3.0, 4.0, 5.0]
7+
dtypes = ['f2', 'f4', 'f8', 'i1', 'i2', 'i4']
8+
for dtype in dtypes:
9+
f.create_dataset(dtype, data=data, dtype=dtype)
10+
11+
# create a dataset with a string dtype
12+
f.create_dataset('string', data='hello', dtype='S5')
13+
14+
# create a dataset with a vlen string dtype
15+
f.create_dataset('vlen_string', data='hello')
16+

test/test.h5

10 KB
Binary file not shown.

0 commit comments

Comments
 (0)