Skip to content

Commit

Permalink
#3 Working on documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
docktermj committed Dec 15, 2023
1 parent f10c8d9 commit 9c25d52
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,19 +53,19 @@ see [Environment Variables](https://github.com/Senzing/knowledge-base/blob/main/
python3 -m pip install ${GIT_REPOSITORY_DIR}/dist/*.whl
```

1. Verify that `senzing-grpc` is installed.
1. Verify that `senzing-abstract` is installed.
Example:

```console
python3 -m pip freeze | grep senzing-grpc
python3 -m pip freeze | grep senzing-abstract
```

Example return:
> senzing-grpc @ file:///home/senzing/senzing.git/g2-sdk-python-grpc/dist/senzing_grpc-0.0.1-py3-none-any.whl#sha256=2a4e5218d66d5be60ee31bfad5943e6611fc921f28a4326d9594ceceae7e0ac1
> senzing-abstract @ file:///home/senzing/senzing.git/g2-sdk-python-abstract/dist/senzing_abstract-0.0.1-py3-none-any.whl#sha256=2a4e5218d66d5be60ee31bfad5943e6611fc921f28a4326d9594ceceae7e0ac1

1. Uninstall the `senzing-grpc` python package.
1. Uninstall the `senzing-abstract` python package.
Example:

```console
python3 -m pip uninstall senzing-grpc
python3 -m pip uninstall senzing-abstract
```
13 changes: 13 additions & 0 deletions src/senzing_abstract/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from g2config_abstract import G2ConfigAbstract
from g2configmgr_abstract import G2ConfigMgrAbstract
from g2diagnostic_abstract import G2DiagnosticAbstract
from g2engine_abstract import G2EngineAbstract
from g2product_abstract import G2ProductAbstract

__all__ = [
"G2ConfigAbstract",
"G2ConfigMgrAbstract",
"G2DiagnosticAbstract",
"G2EngineAbstract",
"G2ProductAbstract",
]

0 comments on commit 9c25d52

Please sign in to comment.