### Setup Close API Scripts Project Environment Source: https://github.com/closeio/close-api-scripts/blob/master/README.md Provides a sequence of bash commands to clone the `close-api-scripts` repository, navigate into the directory, create and activate a Python virtual environment, and install all necessary dependencies from `requirements.txt`. ```bash git clone https://github.com/closeio/close-api-scripts.git cd close-api-scripts virtualenv venv . venv/bin/activate pip install -r requirements.txt ``` -------------------------------- ### Run a Close API Python Script Source: https://github.com/closeio/close-api-scripts/blob/master/README.md Illustrates how to execute one of the example Python scripts, `run_leads_deleted_report.py`, from the command line. It shows how to pass the required API key using the `-k` flag. ```bash python scripts/run_leads_deleted_report.py -k MYAPIKEY ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.