testing lib with json

This commit is contained in:
Debucquoy Anthony 2025-03-15 19:37:08 +01:00
parent 6b4a7c48c8
commit a503b39524
Signed by: tonitch
GPG Key ID: A78D6421F083D42E
3 changed files with 51 additions and 0 deletions

3
other/json/README.md Normal file
View File

@ -0,0 +1,3 @@
# Json parser
Ce projet est basé sur le tutoriel de lark et me permet de prendre la main avec cet outil

19
other/json/json.lark Normal file
View File

@ -0,0 +1,19 @@
?value: dict
| list
| string
| SIGNED_NUMBER -> number
| "true" -> true
| "false" -> false
| "null" -> null
list: "[" [value ("," value)*] "]"
dict: "{" [pair ("," pair)*] "}"
pair: string ":" value
string: ESCAPED_STRING
%import common.ESCAPED_STRING
%import common.SIGNED_NUMBER
%import common.WS
%ignore WS

29
other/json/json.py Normal file
View File

@ -0,0 +1,29 @@
import lark
import pprint
class JsonTransformer(lark.Transformer):
def string(self, el):
(el,) = el
return el[1:-1]
def number(self, el):
(el, ) = el
return float(el)
list = list
dict = dict
pair = tuple
null = lambda self, _: None
true = lambda self, _: True
false = lambda self, _: False
json = '{"key": ["item0", "item1", 3.14, true]}'
with open("json.lark") as f:
json_parser = lark.Lark(f, start="value", parser="lalr", transformer=JsonTransformer())
t = json_parser.parse(json)
print(t)