We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32b46a3 commit b4a34beCopy full SHA for b4a34be
README.md
@@ -6,13 +6,21 @@ The data will be collected in a SQLite database to query and visualize.
6
## Get Started
7
8
```sh
9
-python -m pip install 'pathtraits @ git+https://github.com/danlooo/pathtraits'
10
-pathtraits watch .
+# install
+python -m pip install pathtraits
11
12
+# create some test data
13
echo "test" > foo.txt
-echo "test:true" > foo.txt.yml
14
+echo "test: true" > foo.txt.yml
15
+
16
+# create database
17
+pathtraits batch .
18
19
+# query traits
20
+pathtraits get foo.txt
21
```
22
23
## Developing
24
-- normalize data base to store each new trait in a new table, allowing sparse traits
25
+- use Pylint
26
+- normalize data base to 3NF to store each new trait in a new table, allowing sparse traits
0 commit comments