mirror of
https://github.com/public-apis/public-apis.git
synced 2025-05-12 00:26:45 +02:00
Update Category split logic
This commit is contained in:
parent
46e2c4c9e1
commit
0184842ee8
1 changed files with 6 additions and 2 deletions
|
@ -14,7 +14,7 @@ def markdown_to_json(filename, anchor):
|
||||||
and line.startswith(anchor) or line.startswith('| '))
|
and line.startswith(anchor) or line.startswith('| '))
|
||||||
for line in lines:
|
for line in lines:
|
||||||
if line.startswith(anchor):
|
if line.startswith(anchor):
|
||||||
category = line.split()[1]
|
category = line.split(anchor)[1].strip()
|
||||||
continue
|
continue
|
||||||
chunks = [x.strip() for x in line.split('|')[1:-1]]
|
chunks = [x.strip() for x in line.split('|')[1:-1]]
|
||||||
entry = {
|
entry = {
|
||||||
|
@ -26,7 +26,11 @@ def markdown_to_json(filename, anchor):
|
||||||
'Category': category,
|
'Category': category,
|
||||||
}
|
}
|
||||||
entries.append(entry)
|
entries.append(entry)
|
||||||
return json.dumps(entries)
|
final = {
|
||||||
|
'count': len(entries),
|
||||||
|
'entries': entries,
|
||||||
|
}
|
||||||
|
return json.dumps(final)
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue