Skip to content

Commit c138592

Browse files
committed
Merge branch 'master' of github.com:ibeauregard/sqlite
2 parents 3c86a4c + adc6981 commit c138592

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ It is implemented with Python 3.6, using only modules of the [Python Standard Li
1010

1111
To run my_sqlite, you need [Python, version 3.6 or above](https://www.python.org/downloads/).
1212

13-
Launch the application by running `python my_sqlite.py <path-to-database>` from the project's root directory.
13+
Launch the application by running `python my_sqlite.py <path-to-database>` from the project's root directory.
14+
15+
A database is already provided for demonstration purposes. It is located in the `mlb/` directory. It consists of a compilation of historical data about Major League Baseball. It is actually an excerpt from a much larger database which [can be found on Kaggle](https://www.kaggle.com/open-source-sports/baseball-databank).
1416

1517
## Database and table format
1618
In this project, a database is represented as a directory containing multiples files using a uniform data storage format and a consistent naming scheme.
1719

18-
A database is already provided for user convenience. It is located in the `mlb/` directory. It consists of a compilation of historical data about Major League Baseball. It is actually an excerpt from a much larger database which [can be found on Kaggle](https://www.kaggle.com/open-source-sports/baseball-databank).
19-
2020
In each table, the first record is the header, which defines the name of each column. The rest of the records are the actual data. Each record's length matches the length of the header. Throughout all databases, records and columns are each consistently separated by a distinct, unique character.
2121

2222
These characters are specified in the config/config.py file. In addition to the separator characters, this file also specifies the common file extension for all tables, and the database path. Note that by default, the database path is the second argument of the `python` command used to launch my_sqlite.

0 commit comments

Comments
 (0)