2020-03-24 17:56:44 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
import json
|
|
|
|
|
2022-01-26 21:29:17 -05:00
|
|
|
with open("nboard.json", "r") as file:
|
2020-03-24 17:56:44 -04:00
|
|
|
data = json.load(file)
|
|
|
|
|
|
|
|
print(len(data))
|
|
|
|
|
2022-01-26 21:29:17 -05:00
|
|
|
data = {k: v for k, v in data.items() if v is not " "}
|
2020-03-24 17:56:44 -04:00
|
|
|
|
|
|
|
print(len(data))
|
|
|
|
|
2022-01-26 21:29:17 -05:00
|
|
|
with open("nboard.json", "w") as file:
|
2020-03-24 17:56:44 -04:00
|
|
|
json.dump(data, file)
|