Spaces:
Build error
Build error
File size: 711 Bytes
b7a7f32 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
from typing import List
from pydantic import Json
schools: List[Json] = [
{
"name": "School Of Science",
"address": "Dhulikhel, Kavre"
},
{
"name": "School Of Engineering",
"address": "Dhulikhel, Kavre"
},
{
"name": "School Of Medical Sciences",
"address": "Dhulikhel, Kavre"
},
{
"name": "School Of Law",
"address": "Dhulikhel, Kavre"
},
{
"name": "School Of Management",
"address": "Balkumari, Lalitpur"
},
{
"name": "School Of Arts", "address":
"Hattiban, Lalitpur"
},
{
"name": "School Of Education", "address":
"Hattiban, Lalitpur"
},
]
|