diff options
author | JoaK <joak@nospace.at> | 2016-06-15 01:35:54 +0200 |
---|---|---|
committer | JoaK <joak@nospace.at> | 2016-06-15 01:35:54 +0200 |
commit | ed976b552e41573ecb40de6badcd1545811e7f53 (patch) | |
tree | cc9e36cc6c60227646d46dbf0315954e10c3e266 | |
parent | f403334622b793a79aaa4725d5dc36388c884ca1 (diff) |
some changes
-rw-r--r-- | manuals/miniKP_OM_EFG1.txt | 4 | ||||
-rw-r--r-- | site.py | 9 |
2 files changed, 13 insertions, 0 deletions
diff --git a/manuals/miniKP_OM_EFG1.txt b/manuals/miniKP_OM_EFG1.txt new file mode 100644 index 0000000..322b432 --- /dev/null +++ b/manuals/miniKP_OM_EFG1.txt @@ -0,0 +1,4 @@ +Title: Korg Kaoss pad mini-KP +File: miniKP_OM_EFG1.pdf +Tags: sound, music, effects, effect, korg, kaoss pad, device +Description: Operation manual for the KAOSS PAD miniKP Dynamic Effect Processor! @@ -0,0 +1,9 @@ +#!/usr/bin/env python +#script creates searchable website for different operation manuals + +import os + +for file in os.listdir("manuals"): + if file.endswith(".txt"): + + |