git clone https://github.com/EricKim27/EbonDB.git /usr/local/EbonDB
you might need sudo.
python3 setup.py
python3 server.py
chmod +x client
./client <username>@<serveraddress>
you can use the following commands to manipulate the Database.
show (things)mkdb (dbname) - makes a dbrmdb (dbname) - deletes a dbrmtable (tablename) - deletes a table from a dbmktable (tablename) - makes a table in the current database with the corresponding name.mkcolumn (tablename) {(column name):(type),(another column name):(type)} - makes a column in a table.usedb (dbname) - use dbget (data) (tablename) - gets data from table (data section can be *, column name. if it’s using columns, it shoud be like get {column1, column2} exdb)insert (table) {column,column} {data1,data2} - inserts data to a column