A parser for legal case citations.
Project description
About
A parser for legal case citations.
Installation
You can install caseciteparser by running:
pip install caseciteparser
Usage
There are two user-facing functions in caseciteparser: parse_tokens(words) and parse_string(string).
parse_tokens(words) parses a list of whitespace-delimited tokens and returns a list of dicts, where each item in the list corresponds to a legal case citation found in the list of word tokens.
parse_string(string) parses a string by calling parse_tokens(string.split()).
Examples
>>> from caseciteparser import parse_string >>> from pprint import pprint >>> pprint(parse_string("Mydlach v. DaimlerChrysler Corp., 226 Ill. 2d 307, 311, 875 N.E.2d 1047 (2007).")) [{'case_first_page': '307', 'cite_string': '226 Ill. 2d 307, 311, 875 N.E.2d 1047 (2007).', 'cite_type': 'full_cite', 'date_paren_string': '2007', 'end_index': 12, 'pincite': '311', 'reporter': 'Ill. 2d', 'start_index': 4, 'stringcites': [{'case_first_page': '1047', 'reporter': 'N.E.2d', 'volume': '875'}], 'volume': '226', 'year': '2007'}] >>> pprint(parse_string("Charlesworth v. Mack, 727 F. Supp. 1407, 1412 (D. Mass. 1990).")) [{'case_first_page': '1407', 'cite_string': '727 F. Supp. 1407, 1412 (D. Mass. 1990).', 'cite_type': 'full_cite', 'court_jursidiction': 'Mass.', 'court_type': 'D.', 'date_paren_string': 'D. Mass. 1990', 'end_index': 10, 'pincite': '1412', 'reporter': 'F. Supp.', 'start_index': 3, 'volume': '727', 'year': '1990'}] >>> pprint(parse_string("Youngstown, 343 U.S. at 585.")) [{'cite_string': '343 U.S. at 585.', 'cite_type': 'short_cite', 'end_index': 4, 'pincite': '585', 'reporter': 'U.S.', 'start_index': 1, 'volume': '343'}] >>> pprint(parse_string("Although Illinois law recognizes limitation periods as valid contractual provisions in an \ insurance contract, see, e.g., Affiliated FM Insurance Co. v. Board of Education, 23 F.3d 1261, 1264 (7th Cir. \ 1994) (and cases cited therein), section 143.1 of the Code is an important statutory restriction on such \ limitation provisions, Hines v. Allstate Insurance Co., 298 Ill. App. 3d 585, 588, 698 N.E.2d 1120 (1998).")) [{'case_first_page': '1261', 'cite_string': '23 F.3d 1261, 1264 (7th Cir. 1994)', 'cite_type': 'full_cite', 'court_jursidiction': '7th', 'court_type': 'Cir.', 'date_paren_string': '7th Cir. 1994', 'end_index': 30, 'pincite': '1264', 'reporter': 'F.3d', 'start_index': 24, 'volume': '23', 'year': '1994'}, {'case_first_page': '585', 'cite_string': '298 Ill. App. 3d 585, 588, 698 N.E.2d 1120 (1998).', 'cite_type': 'full_cite', 'date_paren_string': '1998', 'end_index': 63, 'pincite': '588', 'reporter': 'Ill. App. 3d', 'start_index': 54, 'stringcites': [{'case_first_page': '1120', 'reporter': 'N.E.2d', 'volume': '698'}], 'volume': '298', 'year': '1998'}]
License/Attribution
This project is licensed under the GNU Affero General Public License, with the additional condition that you provide attribution to this project if you use it for academic research that results in the publication of a paper. See the LICENSE file for the actual terms of the license.
Contact
Feel free to send me a message if you have any questions, or comments, or even to let me know how you’re using caseciteparser! I’m really interested in seeing what people are doing with automated analysis of caselaw!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file caseciteparser-1.0.tar.gz
.
File metadata
- Download URL: caseciteparser-1.0.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cd955382fb5afd0ed3c09e2f5cfea5cbcf2a5e71ce2990ae7810f89e478f5305 |
|
MD5 | 7ed908fad03ffd9a82167fc3feb7b2ff |
|
BLAKE2b-256 | be29f91caa4d758c059e985a1e65bf42462863b9a4e0fd89e8d4289f9b859c5f |