### Fetch Case Data from a File of Docket IDs Source: https://github.com/apark2020/nyscef-downloader/blob/master/README.md This script retrieves detailed metadata for cases using a file containing a list of docket IDs. The output is saved in JSON format. ```bash python3 case_data_fetcher.py --docket-ids-file "ids.txt" ``` -------------------------------- ### Fetch Case Data by Docket IDs Source: https://github.com/apark2020/nyscef-downloader/blob/master/README.md This script retrieves detailed metadata for cases using a provided list of docket IDs. The output is saved in JSON format. ```bash python3 case_data_fetcher.py --docket-ids "123,456" ``` -------------------------------- ### Fetch Docket IDs with Specific Criteria Source: https://github.com/apark2020/nyscef-downloader/blob/master/README.md Use this script to fetch a list of docket IDs based on a date range, case type, and court. A valid JSESSIONID obtained after passing a CAPTCHA test is required. The output is saved to a file. ```bash python3 docket_id_fetcher.py --start-date "08/14/2019" --case-type "Torts - Child Victims Act" --session-id "37B5BE431C206047654303BE1BE00F70.server2037" --ouput "ids.txt" ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.