Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SFR-2276: Deprecating ingest report #407

Merged
merged 2 commits into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions config/development.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,6 @@ DOAB_OAI_URL: https://directory.doabooks.org/oai/request?
# ContentCafe2 API
# CONTENT_CAFE_USER and CONTENT_CAFE_PSWD must be configured as secrets

# SmartSheet API
# SMARTSHEET_API_TOKEN must be configured as a secret
SMARTSHEET_SHEET_ID: '3683038090553220'

# Default Cover Image for OPDS2 Feed
DEFAULT_COVER_URL: https://drb-files-qa.s3.amazonaws.com/covers/default/defaultCover.png

Expand Down
4 changes: 0 additions & 4 deletions config/production.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,6 @@ DOAB_OAI_URL: https://directory.doabooks.org/oai/request?
# ContentCafe2 API
# CONTENT_CAFE_USER and CONTENT_CAFE_PSWD must be configured as secrets

# SmartSheet API
# SMARTSHEET_API_TOKEN must be configured as a secret
SMARTSHEET_SHEET_ID: '3683038090553220'

# Default Cover Image for OPDS2 Feed
DEFAULT_COVER_URL: https://drb-files-qa.s3.amazonaws.com/covers/default/defaultCover.png

Expand Down
4 changes: 0 additions & 4 deletions config/qa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,6 @@ DOAB_OAI_URL: https://directory.doabooks.org/oai/request?
# ContentCafe2 API
# CONTENT_CAFE_USER and CONTENT_CAFE_PSWD must be configured as secrets

# SmartSheet API
# SMARTSHEET_API_TOKEN must be configured as a secret
SMARTSHEET_SHEET_ID: '3683038090553220'

# Default Cover Image for OPDS2 Feed
DEFAULT_COVER_URL: https://drb-files-qa.s3.amazonaws.com/covers/default/defaultCover.png

Expand Down
1 change: 0 additions & 1 deletion managers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,4 @@
from .elasticsearch import ElasticsearchManager
from .sfrElasticRecord import SFRElasticRecordManager
from .s3 import S3Manager
from .smartsheet import SmartSheetManager
from .muse import MUSEError, MUSEManager
54 changes: 0 additions & 54 deletions managers/smartsheet.py

This file was deleted.

1 change: 0 additions & 1 deletion processes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
from .s3Files import S3Process
from .api import APIProcess
from .muse import MUSEProcess
from .ingestReport import IngestReportProcess
from .met import METProcess
from .db_maintenance import DatabaseMaintenanceProcess
from .db_migration import MigrationProcess
Expand Down
71 changes: 0 additions & 71 deletions processes/ingestReport.py

This file was deleted.

1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ pyyaml==6.0
redis==4.5.4
requests==2.28.2
requests_oauthlib==1.3.1
smartsheet-python-sdk==3.0.0
scikit-learn==1.2.2
sqlalchemy==2.0.20
waitress==2.1.2
Expand Down
2 changes: 0 additions & 2 deletions tests/helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,6 @@ class TestHelpers:
'MUSE_MARC_URL': 'test_muse_url',
'MUSE_CSV_URL': 'test_muse_csv',
'DOAB_OAI_URL': 'test_doab_url',
'SMARTSHEET_API_TOKEN': 'test_smartsheet_token',
'SMARTSHEET_SHEET_ID': '1000',
'WEBPUB_CONVERSION_URL': 'test_conversion_url',
'WEBPUB_PDF_PROFILE': 'test_profile_uri'
}
Expand Down
71 changes: 0 additions & 71 deletions tests/unit/test_ingestReport_process.py

This file was deleted.

93 changes: 0 additions & 93 deletions tests/unit/test_smartsheet_manager.py

This file was deleted.

Loading