If you have a ftd file, `foo.ftd`: ```ftd -- string message: hello world -- integer n: 20 ``` ```py import ftd d = ftd.parse("foo.ftd") assert d.get("foo#message") == "hello world" assert d.get("foo#n") == 20 ```