We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HDF5TableReader
Please describe the use case that requires this feature.
The HDF5TableReader essentially uses random access in a generator:
for row_index in range(n_rows): row = table[row_index] ... yield containers
But it doesn't expose this underlying random access nature.
Describe the solution you'd like
Change API of HDF5TableReader to allow __getitem__(self, index) to allow random access.
__getitem__(self, index)
The text was updated successfully, but these errors were encountered:
Just out of curiosity, where would this be useful?
Sorry, something went wrong.
No branches or pull requests
Please describe the use case that requires this feature.
The HDF5TableReader essentially uses random access in a generator:
But it doesn't expose this underlying random access nature.
Describe the solution you'd like
Change API of
HDF5TableReader
to allow__getitem__(self, index)
to allow random access.The text was updated successfully, but these errors were encountered: