https://github.com/colinkiama/modify-file
CSV Database demo - Nothing fancy here.
https://github.com/colinkiama/modify-file
csv demo exploring vala
Last synced: about 2 months ago
JSON representation
CSV Database demo - Nothing fancy here.
- Host: GitHub
- URL: https://github.com/colinkiama/modify-file
- Owner: colinkiama
- Created: 2021-10-16T21:35:42.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-10-17T13:19:27.000Z (over 3 years ago)
- Last Synced: 2025-01-14T07:33:02.069Z (4 months ago)
- Topics: csv, demo, exploring, vala
- Language: Vala
- Homepage:
- Size: 92.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# modify-file
Basic Vala CSV database demo - Nothing fancy here.
## Setup
For this program to work, you need to at least two files in the directory
that you run the program in:**hits.csv**
```csv
url,hits
$insert_string_here,$insert_number_here
$insert_string_here,$insert_number_here
```
Underneath "url,hits", each line should be a string followed by a comma (,) and
a number.**pending-hits.csv**
```csv
$insert_string_here
$insert_string_here
$insert_string_here
```
Each line needs to be a string.## Installation
In the root of the project run these commands in your terminal:
```bash
meson build -D prefix=/usr
ninja build -C install
```Now you can run the program with this command:
```bash
modify-file
```