Skip to content

TAJ4K/gofps

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gofps - Golang FastPeopleSearch Wrapper

Why?

Almost every single library for people searching is paid and charges a ridiculous fee. This wrapper is free and open source.

Usage

package main

import(
	"fmt"
	"github.com/TAJ4K/gofps"
)

func main() {
    people, err := gofps.Search("John Smith", "", "NY")
    if err != nil {
        fmt.Println(err)
    }

    boomers := people.SearchPeopleByAgegroup(gofps.AgeGroupBoomers)
    for _, person := range boomers.People {
        fmt.Println(person.Addresses.Current)
    }
}

Releases

No releases published

Packages

No packages published

Languages