소스 검색

Added example rdb.txt file contents

Kablersalat 9 달 전
부모
커밋
d8f685d476
2개의 변경된 파일35개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      .gitignore
  2. 32 0
      README.md

+ 3 - 0
.gitignore

@@ -0,0 +1,3 @@
+~$TEST.xlsx
+RDBv2.txt
+TEST.xlsx

+ 32 - 0
README.md

@@ -9,6 +9,38 @@ A very simple python script to convert the TXT output from RDB to an Excel Sheet
 1. Run : python3 ./rdb-to-sheets.py /your/rdb/file.txt 
 1. Enjoy your now converted rdb excel sheet (made in same directory as rdb-to-sheets.py by default, can also be anywhere you desire python3 like this ./rdb-to-sheets.py /your/rdb/file.txt /your/output/rdb/sheet.xslx)
 
+### Example of RDB.txt file contents
+```
+DN   0
+TYPE NARS
+NTBL AC1 
+
+DN   1000
+TYPE RDB 
+ROUT 0 
+
+DN   1001
+TYPE RDB 
+ROUT 1
+
+.
+.
+Rest of it goes here
+.
+.
+
+DN   #37
+TYPE FFC 
+FEAT RGAD 
+
+DN   #51
+TYPE FFC 
+FEAT SPCC 
+
+DN   #54
+TYPE FFC 
+FEAT RDST 
+```
 ## Consideration
 1. I know little coding and even less python, I've tested it on my Meridian 1 Option 11e only as thats the only system I own.
 1. If you have suggestions on how to improve this feel free to submit those here.