All Downloads are FREE. Search and download functionalities are using the official Maven repository.

splan.parser.1.0.0-beta247.source-code.json_tool.py Maven / Gradle / Ivy

Go to download

Java library for parsing schools' substitution schedules. Supports multiple different systems mainly used in the German-speaking countries.

There is a newer version: 1.0.0-beta356
Show newest version
import json

json_file = open('column_headers.json')
f = json.load(json_file)

items = []
for key in f:
    f[key].sort()
    for item in f[key]:
        if item not in items:
            items.append(item)
        else:
            print(item)

            
print(json.dumps(f, sort_keys=True, indent=2))




© 2015 - 2025 Weber Informatics LLC | Privacy Policy