Skip to content

Commit

Permalink
#19 Add flags
Browse files Browse the repository at this point in the history
  • Loading branch information
docktermj committed Apr 24, 2024
1 parent 4e49724 commit 929937b
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ see [Environment Variables](https://github.com/senzing-garage/knowledge-base/blo
1. Set these environment variable values:

```console
export GIT_ACCOUNT=senzing
export GIT_ACCOUNT=senzing-garage
export GIT_REPOSITORY=sz-sdk-python-abstract
export GIT_ACCOUNT_DIR=~/${GIT_ACCOUNT}.git
export GIT_REPOSITORY_DIR="${GIT_ACCOUNT_DIR}/${GIT_REPOSITORY}"
Expand Down
21 changes: 21 additions & 0 deletions src/senzing_abstract/szengineflags.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,3 +216,24 @@ def combine_flags(
)

SZ_SEARCH_BY_ATTRIBUTES_DEFAULT_FLAGS = SZ_SEARCH_BY_ATTRIBUTES_ALL

# -----------------------------------------------------------------------------
# non-SzEngineFlags flags
# -----------------------------------------------------------------------------

SZ_INITIALIZE_WITH_DEFAULT_CONFIGURATION = 0
SZ_NO_FLAGS = 0
SZ_NO_LOGGING = 0
SZ_VERBOSE_LOGGING = 1
SZ_WITHOUT_INFO = 0


# -----------------------------------------------------------------------------
# Additional default values
# TODO: Not sure if these values belong in this file.
# -----------------------------------------------------------------------------

SZ_NO_ATTRIBUTES = ""
SZ_NO_EXCLUSIONS = ""
SZ_NO_REQUIRED_DATASOURCES = ""
SZ_NO_SEARCH_PROFILE = ""

0 comments on commit 929937b

Please sign in to comment.