Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 630 Bytes

README.md

File metadata and controls

27 lines (20 loc) · 630 Bytes

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