Skip to main content

legal authority automation

Project description

AuthoritySpoke is the first open source legal authority automation tool.

An Ethical Open Source Project Test Coverage Percentage GitHub Actions Workflow Documentation Status Supported Python Versions

Installing AuthoritySpoke

AuthoritySpoke is a Python package available on PyPI, so you can install it with pip:

$ pip install authorityspoke

AuthoritySpoke runs on Python versions 3.8 and up.

Trying it Out

Even if you don’t install AuthoritySpoke, you can try it out by clicking the Binder button below to interact with it through a Jupyter Notebook. If you use Binder, you’ll be shown the directory structure of this repo. Navigate to the notebooks folder to find the tutorials.

AuthoritySpoke on Binder

An Example

(A more detailed version of this example is in the documentation.)

This example shows how to discover contradictory legal holdings in Oracle America, Inc. v. Google Inc., 750 F.3d 1339 (a famous circuit court decision that dealt with a claim that the Android operating system infringed the copyright on the Java language) and Lotus Development Corporation v. Borland International, 49 F.3d 807 (an older case about whether a user interface was copyrightable). Replicating this example on your own computer would require obtaining API keys from both the Caselaw Access Project API and the AuthoritySpoke API.

AuthoritySpoke includes a download client for retrieving court decisions from the Caselaw Access Project API. (Or copies of both opinions can be loaded from the example_data folder of this repository.)

>>> import os
>>> from dotenv import load_dotenv
>>> from authorityspoke import CAPClient
>>> load_dotenv()
True
>>> CAP_API_KEY = os.getenv('CAP_API_KEY')
>>> case_client = CAPClient(api_token=CAP_API_KEY)
>>> oracle_case = case_client.read_cite(
...    cite="750 F.3d 1339", full_case=True)
>>> str(oracle_case)
'Oracle America, Inc. v. Google Inc., 750 F.3d 1339 (2014-05-09)'
>>> lotus_case = case_client.read_cite(
...    cite="49 F.3d 807", full_case=True)
>>> str(lotus_case)
'Lotus Development Corp. v. Borland International, Inc., 49 F.3d 807 (1995-03-09)'

AuthoritySpoke can be used to create structured annotations for these cases by bringing together data from two sources: user-created annotations for judicial holdings, and legislative quotations that can be downloaded from the API at authorityspoke.com. The example_data folder contains example annotations for the holdings in several cases, including the _Oracle_ and _Lotus_ cases. The LegisClient class is also a download client, and it can be used to retrieve legislative quotations.

>>> from authorityspoke import LegisClient
>>> from authorityspoke.io.loaders import read_holdings_from_file
>>> LEGISLICE_API_TOKEN = os.getenv("LEGISLICE_API_TOKEN")
>>> legis_client = LegisClient(api_token=LEGISLICE_API_TOKEN)
>>> oracle_holdings = read_holdings_from_file("holding_oracle.yaml", client=legis_client)
>>> lotus_holdings = read_holdings_from_file("holding_lotus.yaml", client=legis_client)

With a DecisionReading object, a judicial Decision can be linked together with user-created annotations for the decision’s Holdings.

>>> from authorityspoke import DecisionReading
>>> oracle = DecisionReading(decision=oracle_case)
>>> lotus = DecisionReading(decision=lotus_case)
>>> oracle.posit(holdings=oracle_holdings)
>>> lotus.posit(holdings=lotus_holdings)

Each DecisionReading has a .contradicts method that can return a boolean indicating whether its holdings conflict with the holdings of another DecisionReading.

>>> lotus.contradicts(oracle)
True

AuthoritySpoke has concluded that these interpretations of the _Lotus_ and _Oracle_ decisions do contradict one another. That’s good to know, but we don’t want to take it on faith that a contradiction exists. We can use the explain_contradiction method to find the contradictory Holdings posited by the _Oracle_ and _Lotus_ cases, and to generate a rudimentary explanation of why they contradict.

>>> explanation = lotus.explain_contradiction(oracle)
>>> str(explanation)
"""
Because <the Lotus menu command hierarchy> is like <the Java API>,
the Holding to ACCEPT
    the Rule that the court MUST ALWAYS impose the
    RESULT:
        the fact it was false that <the Lotus menu command hierarchy> was copyrightable
    GIVEN:
        the fact that <the Lotus menu command hierarchy> was a method of operation
    DESPITE:
        the fact that a text described <the Lotus menu command hierarchy>
        the fact that <the Lotus menu command hierarchy> was an original work
    GIVEN the ENACTMENT:
        "In no case does copyright protection for an original work of authorship extend to any…method of operation…" (/us/usc/t17/s102/b 2013-07-18)
CONTRADICTS
the Holding to ACCEPT
    the Rule that the court MUST SOMETIMES impose the
    RESULT:
        the fact that <the Java API> was copyrightable
    GIVEN:
        the fact that <the Java language> was a computer program
        the fact that <the Java API> was a set of application programming interface declarations
        the fact that <the Java API> was an original work
        the fact that <the Java API> was a non-literal element of <the Java language>
        the fact that <the Java API> was the expression of an idea
        the fact it was false that <the Java API> was essentially the only way to express the idea that it embodied
        the fact that <the Java API> was creative
        the fact that it was possible to use <the Java language> without copying <the Java API>
    DESPITE:
        the fact that <the Java API> was a method of operation
        the fact that <the Java API> contained short phrases
        the fact that <the Java API> became so popular that it was the industry standard
        the fact that there was a preexisting community of programmers accustomed to using <the Java API>
    GIVEN the ENACTMENT:
        "Copyright protection subsists, in accordance with this title, in original works of authorship fixed in any tangible medium of expression, now known or later developed, from which they can be perceived, reproduced, or otherwise communicated, either directly or with the aid of a machine or device.…" (/us/usc/t17/s102/a 2013-07-18)
    DESPITE the ENACTMENTS:
        "In no case does copyright protection for an original work of authorship extend to any…method of operation…" (/us/usc/t17/s102/b 2013-07-18)
        "The following are examples of works not subject to copyright and applications for registration of such works cannot be entertained: Words and short phrases such as names, titles, and slogans; familiar symbols or designs; mere variations of typographic ornamentation, lettering or coloring; mere listing of ingredients or contents; Ideas, plans, methods, systems, or devices, as distinguished from the particular manner in which they are expressed or described in a writing;  Blank forms, such as time cards, graph paper, account books, diaries, bank checks, scorecards, address books, report forms, order forms and the like, which are designed for recording information and do not in themselves convey information; Works consisting entirely of information that is common property containing no original authorship, such as, for example: Standard calendars, height and weight charts, tape measures and rulers, schedules of sporting events, and lists or tables taken from public documents or other common sources. Typeface as typeface." (/us/cfr/t37/s202.1 1992-02-21)
        """

In other words, because “the Lotus menu command hierarchy” has a similar role in the _Lotus_ case to the role of “the Java API” in the _Oracle_ case, a Holding from the _Lotus_ case (identified by the text before the word “CONTRADICTS”) contradicts a Holding from the _Oracle_ case (identified by the text after the word “CONTRADICTS”).

Learning about AuthoritySpoke

You can find the example above and much more information about using AuthoritySpoke in the Introduction to AuthoritySpoke tutorial.

You can also find static versions of the tutorial notebooks, the API documentation, and more in the AuthoritySpoke documentation.

Contributing to AuthoritySpoke

All participants are expected to follow the code of conduct. AuthoritySpoke uses the Contributor Covenant, version 1.4.

Submitting a pull request or other code contribution to AuthoritySpoke requires acceptance of a contributor license agreement. The agreement’s provisions are based on the Apache Software Foundation Individual Contributor License Agreement V2.0.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

AuthoritySpoke-0.9.1.tar.gz (107.5 kB view details)

Uploaded Source

Built Distribution

AuthoritySpoke-0.9.1-py3-none-any.whl (54.5 kB view details)

Uploaded Python 3

File details

Details for the file AuthoritySpoke-0.9.1.tar.gz.

File metadata

  • Download URL: AuthoritySpoke-0.9.1.tar.gz
  • Upload date:
  • Size: 107.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.2

File hashes

Hashes for AuthoritySpoke-0.9.1.tar.gz
Algorithm Hash digest
SHA256 e08e9ee6712958368726265b3d1cc759467e14ab244622e3e2c1adb036251953
MD5 77c3337bfc69f857a075a7765f69e8ef
BLAKE2b-256 5d6af6e8bc03d3d8c65a6de790b971a087fb328b15f1f8974c25cd128e8c88ec

See more details on using hashes here.

File details

Details for the file AuthoritySpoke-0.9.1-py3-none-any.whl.

File metadata

File hashes

Hashes for AuthoritySpoke-0.9.1-py3-none-any.whl
Algorithm Hash digest
SHA256 d2f87f62c1bc63b2ea7e66c02d6472b9b1add70523d2f88bbf4e549a1ec47691
MD5 39f3ddd144f2e1a38d98c0fc0d7553a0
BLAKE2b-256 5a99d8476ad7e4b1079865ea15be89aadcb429ce32e287275d20d7739fc4faef

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page