/Fable.SimpleJson.Python

A library for working with JSON in F# Fable projects targeting Python

Primary LanguageF#

Fable.SimpleJson.Python Nuget

A library for working with JSON in F# Fable projects targeting Python

Install from nuget

dotnet add package Fable.SimpleJson.Python

Use it in your project

open Fable.SimpleJson.Python

type Fruit = { name: string }

let fruitJson = Json.serialize { name = "Orange" }

let parsedFruit = Json.parseNativeAs<Fruit> fruitJson

Build tasks in the repository

cd build
dotnet run -- clean
dotnet run -- test
dotnet run -- publish