haskell-postal: Haskell binding for the libpostal library

[ library, mit, natural-language-processing ] [ Propose Tags ]

Provides an interface for the libpostal NLP library


[Skip to Readme]

Modules

[Index]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1.0.0, 0.2.0.0, 0.2.0.1, 0.2.1.0, 0.2.1.1, 0.2.1.2
Dependencies base (>=4.7 && <5), bytestring (>=0.10 && <0.11), inline-c (>=0.6 && <0.7), text (>=1.2 && <1.3) [details]
License MIT
Copyright 2018 Fábián Tamás László
Author Fábián Tamás László <giganetom@gmail.com>
Maintainer Fábián Tamás László <giganetom@gmail.com>
Category Natural Language Processing
Home page https://github.com/netom/haskell-postal#readme
Source repo head: git clone https://github.com/netom/haskell-postal
Uploaded by netom at 2018-08-16T09:03:20Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 2812 total (21 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for haskell-postal-0.2.1.2

[back to package description]

Build Status

haskell-postal

This binding is in alpha state, expect more functionality to come soon. Currently it can only be used to do basic parsing and normalization.

Usage

{-# LANGUAGE OverloadedStrings #-}

import NLP.Postal

main :: IO ()
main = do
    setup
    setupParser
    setupLanguageClassifier

    apdo <- getAddressParserDefaultOptions
    pa <- parseAddress apdo "11 Wall Street New York, NY"
    print pa

    dno <- getDefaultNormalizeOptions
    xa <- expandAddress dno "11 Wall Street New York, NY"
    print xa

    tearDownLanguageClassifier
    tearDownParser
    tearDown

Installation

Before using the Haskell binding, you must install the libpostal C library. Make sure you have the following prerequisites:

On Ubuntu/Debian

sudo apt-get install curl autoconf automake libtool pkg-config

On CentOS/RHEL

sudo yum install curl autoconf automake libtool pkgconfig

On Mac OSX

sudo brew install curl autoconf automake libtool pkg-config

Installing libpostal

git clone https://github.com/openvenues/libpostal
cd libpostal
./bootstrap.sh
./configure --datadir=/usr/local/share/libpostal # Needs to have a few GBs of space
make
sudo make install

# On Linux it's probably a good idea to run
sudo ldconfig

Installing the haskell-postal package

From source

Download the source from github, and use the cabal utility to install it:

git clone https://github.com/netom/haskell-postal
cd haskell-postal
cabal install

Cabal

Cabal can of course just fetch the package from Hackage:

cabal install haskell-postal

Stack

You can of course use stack to install the package, just replace "cabal install" with "stack install" anywhere above. Just make sure you try to find the installed package where the tool you use puts it.