Skip to content

Commit

Permalink
#144 Update create_sz_ to create_ (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
docktermj authored Nov 27, 2024
1 parent b00494e commit df92075
Show file tree
Hide file tree
Showing 10 changed files with 28 additions and 22 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning].

## [Unreleased]

## [0.4.5] - 2024-11-27

### Changed in 0.4.5

- Update dependencies

## [0.4.4] - 2024-11-23

### Changed in 0.4.4
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ jupyterlab-code-formatter==3.0.2
nbconvert==7.16.4
notebook==7.2.2
protobuf==5.28.3
senzing-abstract==0.1.10
senzing-grpc==0.3.4
senzing-abstract==0.1.11
senzing-grpc==0.3.5
setuptools==75.6.0
2 changes: 1 addition & 1 deletion rootfs/examples/notebooks/python/senzing_hello_world.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
"metadata": {},
"outputs": [],
"source": [
"sz_product = sz_abstract_factory.create_sz_product()"
"sz_product = sz_abstract_factory.create_product()"
]
},
{
Expand Down
8 changes: 4 additions & 4 deletions rootfs/examples/notebooks/python/senzing_load_truthsets.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -187,10 +187,10 @@
"metadata": {},
"outputs": [],
"source": [
"sz_config = sz_abstract_factory.create_sz_config()\n",
"sz_configmanager = sz_abstract_factory.create_sz_configmanager()\n",
"sz_diagnostic = sz_abstract_factory.create_sz_diagnostic()\n",
"sz_engine = sz_abstract_factory.create_sz_engine()"
"sz_config = sz_abstract_factory.create_config()\n",
"sz_configmanager = sz_abstract_factory.create_configmanager()\n",
"sz_diagnostic = sz_abstract_factory.create_diagnostic()\n",
"sz_engine = sz_abstract_factory.create_engine()"
]
},
{
Expand Down
8 changes: 4 additions & 4 deletions rootfs/examples/notebooks/python/senzing_load_user_data.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -203,10 +203,10 @@
"metadata": {},
"outputs": [],
"source": [
"sz_config = sz_abstract_factory.create_sz_config()\n",
"sz_configmanager = sz_abstract_factory.create_sz_configmanager()\n",
"sz_diagnostic = sz_abstract_factory.create_sz_diagnostic()\n",
"sz_engine = sz_abstract_factory.create_sz_engine()"
"sz_config = sz_abstract_factory.create_config()\n",
"sz_configmanager = sz_abstract_factory.create_configmanager()\n",
"sz_diagnostic = sz_abstract_factory.create_diagnostic()\n",
"sz_engine = sz_abstract_factory.create_engine()"
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"metadata": {},
"outputs": [],
"source": [
"sz_engine = sz_abstract_factory.create_sz_engine()"
"sz_engine = sz_abstract_factory.create_engine()"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion rootfs/examples/python/senzing_hello_world.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
}

sz_abstract_factory = SzAbstractFactory(**FACTORY_PARAMETERS)
sz_product = sz_abstract_factory.create_sz_product()
sz_product = sz_abstract_factory.create_product()
print(json.dumps(json.loads(sz_product.get_version()), indent=2))
8 changes: 4 additions & 4 deletions rootfs/examples/python/senzing_load_truthsets.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@

# Create Senzing objects.

sz_config = sz_abstract_factory.create_sz_config()
sz_configmanager = sz_abstract_factory.create_sz_configmanager()
sz_diagnostic = sz_abstract_factory.create_sz_diagnostic()
sz_engine = sz_abstract_factory.create_sz_engine()
sz_config = sz_abstract_factory.create_config()
sz_configmanager = sz_abstract_factory.create_configmanager()
sz_diagnostic = sz_abstract_factory.create_diagnostic()
sz_engine = sz_abstract_factory.create_engine()

# Get current Senzing configuration.

Expand Down
8 changes: 4 additions & 4 deletions rootfs/examples/python/senzing_load_user_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@

# Create Senzing objects.

sz_config = sz_abstract_factory.create_sz_config()
sz_configmanager = sz_abstract_factory.create_sz_configmanager()
sz_diagnostic = sz_abstract_factory.create_sz_diagnostic()
sz_engine = sz_abstract_factory.create_sz_engine()
sz_config = sz_abstract_factory.create_config()
sz_configmanager = sz_abstract_factory.create_configmanager()
sz_diagnostic = sz_abstract_factory.create_diagnostic()
sz_engine = sz_abstract_factory.create_engine()

# Get current Senzing configuration.

Expand Down
2 changes: 1 addition & 1 deletion rootfs/examples/python/senzing_method_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

# Create Senzing object.

sz_engine = sz_abstract_factory.create_sz_engine()
sz_engine = sz_abstract_factory.create_engine()

# List all methods for a Senzing object.

Expand Down

0 comments on commit df92075

Please sign in to comment.