Using pandas/pytables, a list of keys can be easily returned using store.keys()
.
>>> store.keys()
['/df_coord', '/metaFrame']
Using the standard dictionary check to see if a key exists, if 'df_coord' in store.keys():
, returns false unless the /
is included. Is there another simple way to evaluate for the existence of a key without having to join strings?