The data is extracted from the CLEAR (Citizen Law Enforcement Analysis and Reporting) system. Note: We limit the data objects to 10000, according to our instruction.
- Clone the repository.
- Create a folder
data
via the command below.
mkdir data auth
- Create a
venv
.
python3 -m venv env
- Activate the
venv
via the command below.
source env/bin/activate
-
We can install the packages as usual.
-
After development freeze the local python environment.
pip3 freeze --local > requirements.txt
- Install the packages via the command below.
pip3 install -r requirements.txt
for authentication
export GOOGLE_APPLICATION_CREDENTIALS="$PWD/auth/YOUR_AUTH_CREDENTIALS.json"