Skip to content

Commit 4debdba

Browse files
authored
Merge pull request #26 from OpenDataAlex/process_tracker_python-1
process_tracker_python-2 Add support for non-relational databases
2 parents 476d463 + 2dff1e5 commit 4debdba

File tree

3 files changed

+220
-50
lines changed

3 files changed

+220
-50
lines changed

Pipfile.lock

Lines changed: 209 additions & 47 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

configs/dynamodb_config.ini

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[DEFAULT]
2+
log_level = ERROR
3+
data_store_type = dynamodb
4+
data_store_username = pt_admin
5+
data_store_password = Testing1!
6+
data_store_host = localhost
7+
data_store_port = 5432
8+
data_store_name = process_tracker
9+
aws_access_key_id = dummy
10+
aws_secret_access_key = dummy
11+
is_secure = False

setup.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@
2828
'snowflake-sqlalchemy >= 1.1.13'
2929
'sqlalchemy >= 1.3.3',
3030
'sqlalchemy-utils >= 0.33.11',
31-
'pymysql >= 0.9.3',
32-
'python-dateutil >= 2.8.0',
33-
'psycopg2-binary >= 2.8.2'
3431
],
3532
extras_requires={
3633
'dev': [

0 commit comments

Comments
 (0)