With respect to the vocabulary program. Here is the starting specification as I see it.
Develop a schema of relational SQL database to store
Develop a Python program for parsing provided text and adding / updating database.
It should have a simple command line interface: one argument -- path to .txt file
Develop a Python program for querying information about word:
- all known examples of usage
- it's frequency
- it's percentage (among all known unique words)
This program should have a simple command line interface: one argument -- word to look up.
With respect to the vocabulary program. Here is the starting specification as I see it.
Develop a schema of relational SQL database to store
words (all unique)
examples of word usage (whole sentences)
frequencies of words
Result: file with sql code to create the schema.
Notes:
Develop a Python program for parsing provided text and adding / updating database.
It should have a simple command line interface: one argument -- path to .txt file
Develop a Python program for querying information about word:
This program should have a simple command line interface: one argument -- word to look up.