From 0a911b8f691956ad4d8498c08d2137c17175f979 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Tue, 16 Sep 2025 18:45:34 +0300 Subject: [PATCH] src/dspace_statistics_api/indexer.py: remove psycopg We are not using this here anymore. --- src/dspace_statistics_api/indexer.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/dspace_statistics_api/indexer.py b/src/dspace_statistics_api/indexer.py index 895c000..4aeff8a 100644 --- a/src/dspace_statistics_api/indexer.py +++ b/src/dspace_statistics_api/indexer.py @@ -5,16 +5,12 @@ # Connects to a DSpace Solr statistics core and ingests views and downloads for # communities, collections, and items into a PostgreSQL database. # -# This script is written for Python 3.6+ and requires several modules that you -# can install with pip (I recommend using a Python virtual environment): -# -# $ pip install psycopg +# This script is written for Python 3.6+. # # See: https://wiki.duraspace.org/display/DSPACE/Solr import math -import psycopg import requests from .config import SOLR_SERVER