The situation
While reading the Bible (as context) I'd like to point out certain dependencies e.g. of people and locations. Due to swift expandability I'm choosing Python to handle this versatile data. Currently I'm creating many feature vectors independent from each other, containing various information as the database.
In the end I'd like to type in a keyword to search in this whole database, which shall return everything that is in touch with it. Something simple as
results = database(key)
What I'm looking for
- Unfortunately I'm not a Pro about different database handling possibilities and I hope you can help me finding an appropriate option.
- Are there possibilities that can be used out of the box or do I need to create all logic by myself?