`Dataset`: ArrayInterface Overload
Open
feature request
frontend: Python3
good first issue
- Dominant language
- C++
- Stars
- 161
- Forks
- 59
- Avg merge
- 2d 22h
- Merged PRs (30d)
- 7
Description
We could simplify non-MPI Python code if we add another constructor to `Dataset`:
```python
import openpmd_api as io
data = np.arange(size*size, dtype=np.double).reshape(3, 3)
# now
dataset = io.Dataset(data.dtype, data.shape)
# future
dataset = io.Dataset(data)
```
Contributor guide
Assessment
This issue has not been assessed yet.