Open DunklesArchipel opened 1 year ago
Currently, we can only select entries in the database from a single identifier
from unitpackage.collection import Collection db = Collection() entry = db['identifier']
We could add support to create a new database from multiple identifiers
new_db = db['identifier1', 'identifier2']
In additon we should support slicing
sliced_db = db[2:5]
Currently, we can only select entries in the database from a single identifier
We could add support to create a new database from multiple identifiers
In additon we should support slicing