Skip to content

Package jsonint provides tools for working with integers in JSON. This helps to work-around that numbers in JSON are effectively "broken".

License

Notifications You must be signed in to change notification settings

reiver/go-jsonint

Repository files navigation

go-jsonint

Package jsonint provides tools for working with integers in JSON.

This helps to work-around that numbers in JSON are effectively "broken".

Documention

Online documentation, which includes examples, can be found at: http://godoc.org/github.com/reiver/go-jsonint

GoDoc

Example

Here is an example:

type Account struct {
	FollowersCount jsonint.Int `json:"followers_count"`
	FollowingCount jsonint.Int `json:"following_count"`
	StatusexCount  jsonint.Int `json:"statuses_count"`
}

// ...

var account Account

err := json.Unmarshal(data, &account)

Import

To import package jsonint use import code like the follownig:

import "github.com/reiver/go-jsonint"

Installation

To install package jsonint do the following:

GOPROXY=direct go get https://github.com/reiver/go-jsonint

Author

Package jsonint was written by Charles Iliya Krempeaux

About

Package jsonint provides tools for working with integers in JSON. This helps to work-around that numbers in JSON are effectively "broken".

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages