GitXplorerGitXplorer
a

walverine

public
55 stars
9 forks
7 issues

Commits

List of commits on branch master.
Unverified
bb01914f2aea035278ce30e5c4f5d5a93b7b1875

bump version to 0.0.7

aadelevie committed 11 years ago
Unverified
7ab751a1f6206880dd2fd429295b09ef8321f11f

Merge pull request #11 from konklone/master

aadelevie committed 11 years ago
Unverified
5cb48d98a68470c54e75c81da23d90f78fdb18f8

Remove underscore as a dependency

kkonklone committed 11 years ago
Unverified
2f277d8ba9113c869b66f430ee846579f24132eb

removed mocha stuff; not needed

aadelevie committed 11 years ago
Unverified
1652781531c8251b5f44286117b53f6a80e08715

bump to 0.0.6

aadelevie committed 11 years ago
Unverified
3311b15471e831d6335021fea687f4eddfc0a229

added basic tests

aadelevie committed 11 years ago

README

The README file for this repository.

Walverine

Mightier than a ferret, contains "Law Rev." spelled backwards.

Walverine extracts structured case law citations from unstructured strings of text.

Usage

var walverine = require('walverine');
var input = "I am a cat. Smith v. Hardibble, 111 Cal.2d 222, 555, 558, 333 Cal.3d 444 (1988)";
var cites = walverine.get_citations(input);
console.log(cites);
// =>
/*
[ { volume: 111,
    reporter: 'Cal. 2d',
    page: 222,
    lookup_index: 0,
    canonical_reporter: 'Cal.',
    extra: '555, 558, 333 Cal.3d 444',
    defendant: 'Hardibble',
    plaintiff: 'Smith',
    court: null,
    year: 1988,
    mlz_jurisdiction: 'us;ca',
    match_url: null,
    end_idx: 11,
    cert_order: null,
    disposition: null,
    match: 'Smith v. Hardibble, 111 Cal.2d 222, 555, 558, 333 Cal.3d 444 (1988)',
    seqID: 0,
    relations: [ 0, 1 ] },
  { volume: 333,
    reporter: 'Cal. 3d',
    page: 444,
    lookup_index: 0,
    canonical_reporter: 'Cal.',
    extra: null,
    defendant: 'Hardibble',
    plaintiff: 'Smith',
    court: null,
    year: 1988,
    mlz_jurisdiction: 'us;ca',
    match_url: null,
    end_idx: 14,
    cert_order: null,
    disposition: null,
    CARRY_FORWARD: true,
    match: '558, 333 Cal.3d 444 (1988)',
    seqID: 1,
    relations: [ 0, 1 ] } ]

*/

Installation

npm install walverine

Heritage

CourtListener (Python) -> Free Law Ferret (Javascript/Firefox Extension) -> Walverine (Javascript/Node)

License

See LICENSE.txt