I agree with the others that serious and important data will be more secure in any lightweight database, but may also sympathize with the desire to keep things simple and transparent.
So, instead of inventing your own textual data format, I suggest you use YAML
The format is human readable, for example:
List of things: - Alice - Bob - Evan
You upload the file as follows:
>>> import yaml >>> file = open('test.yaml', 'r') >>> list = yaml.load(file)
And the list will look like this:
{'List of things': ['Alice', 'Bob', 'Evan']}
Of course, you can also do the opposite and save the data in YAML, documents will help you with this.
At least another alternative to consider:
source share