├── .circleci └── config.yml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── api_text_search └── api_text_search.py ├── api_to_csv └── api_to_csv.py ├── api_tutorial_downloader └── api_tutorial_downloader.py ├── bulk_exploration ├── cartwright.ipynb ├── cartwright1.png ├── cartwright2.png ├── cartwright3.png ├── prolificness1.png └── prolificness2.png ├── bulk_extract └── extract_cases.ipynb ├── config ├── __init__.py ├── settings.example.py └── settings_base.py ├── fabfile.py ├── full_text_search ├── full_text_search.ipynb └── full_text_search.py ├── get_judges └── get_judges.ipynb ├── introduction └── introduction.ipynb ├── labelling_summarizing └── labelling_summarizing.ipynb ├── map_courts ├── __init__.py └── map_courts.ipynb ├── ngrams └── ngrams.ipynb ├── python_wrapper ├── README.md └── cap.py ├── requirements.in ├── requirements.txt ├── tests ├── __init__.py └── test_utils.py └── utils.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/cap-examples/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/cap-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/cap-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/cap-examples/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api_text_search/api_text_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/cap-examples/HEAD/api_text_search/api_text_search.py -------------------------------------------------------------------------------- /api_to_csv/api_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/cap-examples/HEAD/api_to_csv/api_to_csv.py -------------------------------------------------------------------------------- /api_tutorial_downloader/api_tutorial_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/cap-examples/HEAD/api_tutorial_downloader/api_tutorial_downloader.py -------------------------------------------------------------------------------- /bulk_exploration/cartwright.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/cap-examples/HEAD/bulk_exploration/cartwright.ipynb -------------------------------------------------------------------------------- /bulk_exploration/cartwright1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/cap-examples/HEAD/bulk_exploration/cartwright1.png -------------------------------------------------------------------------------- /bulk_exploration/cartwright2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/cap-examples/HEAD/bulk_exploration/cartwright2.png -------------------------------------------------------------------------------- /bulk_exploration/cartwright3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/cap-examples/HEAD/bulk_exploration/cartwright3.png -------------------------------------------------------------------------------- /bulk_exploration/prolificness1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/cap-examples/HEAD/bulk_exploration/prolificness1.png -------------------------------------------------------------------------------- /bulk_exploration/prolificness2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/cap-examples/HEAD/bulk_exploration/prolificness2.png -------------------------------------------------------------------------------- /bulk_extract/extract_cases.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/cap-examples/HEAD/bulk_extract/extract_cases.ipynb -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/settings.example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/cap-examples/HEAD/config/settings.example.py -------------------------------------------------------------------------------- /config/settings_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/cap-examples/HEAD/config/settings_base.py -------------------------------------------------------------------------------- /fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/cap-examples/HEAD/fabfile.py -------------------------------------------------------------------------------- /full_text_search/full_text_search.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/cap-examples/HEAD/full_text_search/full_text_search.ipynb -------------------------------------------------------------------------------- /full_text_search/full_text_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/cap-examples/HEAD/full_text_search/full_text_search.py -------------------------------------------------------------------------------- /get_judges/get_judges.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/cap-examples/HEAD/get_judges/get_judges.ipynb -------------------------------------------------------------------------------- /introduction/introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/cap-examples/HEAD/introduction/introduction.ipynb -------------------------------------------------------------------------------- /labelling_summarizing/labelling_summarizing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/cap-examples/HEAD/labelling_summarizing/labelling_summarizing.ipynb -------------------------------------------------------------------------------- /map_courts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /map_courts/map_courts.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/cap-examples/HEAD/map_courts/map_courts.ipynb -------------------------------------------------------------------------------- /ngrams/ngrams.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/cap-examples/HEAD/ngrams/ngrams.ipynb -------------------------------------------------------------------------------- /python_wrapper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/cap-examples/HEAD/python_wrapper/README.md -------------------------------------------------------------------------------- /python_wrapper/cap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/cap-examples/HEAD/python_wrapper/cap.py -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/cap-examples/HEAD/requirements.in -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/cap-examples/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/cap-examples/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/cap-examples/HEAD/utils.py --------------------------------------------------------------------------------