mirror of
https://github.com/satwikkansal/wtfpython
synced 2024-11-12 22:48:53 +01:00
37 lines
825 B
Python
37 lines
825 B
Python
|
import pprint
|
||
|
|
||
|
fname = "README.md"
|
||
|
snipepts = []
|
||
|
|
||
|
with open(fname, 'r') as f:
|
||
|
lines = f.readlines()
|
||
|
iterator
|
||
|
while iterator:
|
||
|
# check if it's a H3
|
||
|
if line.startswith("###"):
|
||
|
title = line.replace("### ", "")
|
||
|
description = ''
|
||
|
next_line = itertor.next
|
||
|
while not next_line.startswith("#### "):
|
||
|
# store lines till an H4 (explanation) is encountered
|
||
|
description.append(next_line)
|
||
|
next_line = iterator.next
|
||
|
# store lines again until --- or another H3 is encountered
|
||
|
snippets.append({
|
||
|
"title":,
|
||
|
"description":,
|
||
|
"explanation":
|
||
|
})
|
||
|
# repeat until EOL is encoutered
|
||
|
|
||
|
# separating by category
|
||
|
categories = ["a", "b", "c"]
|
||
|
|
||
|
snips_by_cat = {k:[] for k in categories}
|
||
|
|
||
|
for snip in snippets:
|
||
|
cat = raw_input(snip["title"])
|
||
|
snips_by_cat[cat].append(snip)
|
||
|
|
||
|
pprint.pprint(snips_by_cat)
|