Skip to content

Latest commit

 

History

History
17 lines (15 loc) · 651 Bytes

README.md

File metadata and controls

17 lines (15 loc) · 651 Bytes

portfolio

A terminal program to keep track of your actives. It works with SQLite and requests. The user should be able to insert, edit and delete data on a table that is created if not exists when running the program:

sqlite> .schema
CREATE TABLE crypto (
            'date' datetime not null primary key default current_timestamp,
            'cents' integeer not null,
            'amount' real not null,
            'code' char(3) not null,
            'remarks' varchar(150) not null
        );

It needs a TOR service running to get the prices.