├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── improvement.md └── PULL_REQUEST_TEMPLATE │ └── pull_request_template.md ├── .gitignore ├── AUTHORS.txt ├── LICENSE ├── README.md ├── cats ├── __init__.py ├── executor │ └── __init__.py ├── factory │ └── __init__.py ├── io │ ├── __init__.py │ ├── input │ │ ├── __init__.py │ │ ├── function.py │ │ └── structure.py │ └── output │ │ └── __init__.py ├── network │ ├── __init__.py │ ├── aws.py │ └── cod.py ├── node.py ├── service │ ├── __init__.py │ └── utils.py └── utils │ └── __init__.py ├── cats_demo.ipynb ├── data └── iris.csv ├── dist ├── cats-0.0.0-py3-none-any.whl └── cats-0.0.0.tar.gz ├── docs ├── CONTRIBUTING.md ├── DEMO.md ├── DEPS.md ├── DESIGN.md ├── ENV.md ├── EXAMPLES.md ├── ORG.md ├── TEST.md └── ubuntu2004.md ├── images ├── CATkernel.jpeg ├── CATs_bom_activity.jpeg ├── CATs_bom_ag.jpeg ├── CATs_bom_connect.jpeg ├── CATs_chaordic_kernel.jpeg ├── cid_example.jpeg ├── data_product_domain.jpeg ├── simple_CAT2a.jpeg └── simple_CAT2b.jpeg ├── logs.ipynb ├── main.tf ├── process.py ├── pyproject.toml └── tests ├── __init__.py └── verification_test.py /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/improvement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/.github/ISSUE_TEMPLATE/improvement.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/README.md -------------------------------------------------------------------------------- /cats/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/cats/__init__.py -------------------------------------------------------------------------------- /cats/executor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/cats/executor/__init__.py -------------------------------------------------------------------------------- /cats/factory/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/cats/factory/__init__.py -------------------------------------------------------------------------------- /cats/io/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cats/io/input/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/cats/io/input/__init__.py -------------------------------------------------------------------------------- /cats/io/input/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/cats/io/input/function.py -------------------------------------------------------------------------------- /cats/io/input/structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/cats/io/input/structure.py -------------------------------------------------------------------------------- /cats/io/output/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cats/network/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/cats/network/__init__.py -------------------------------------------------------------------------------- /cats/network/aws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/cats/network/aws.py -------------------------------------------------------------------------------- /cats/network/cod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/cats/network/cod.py -------------------------------------------------------------------------------- /cats/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/cats/node.py -------------------------------------------------------------------------------- /cats/service/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/cats/service/__init__.py -------------------------------------------------------------------------------- /cats/service/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/cats/service/utils.py -------------------------------------------------------------------------------- /cats/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/cats/utils/__init__.py -------------------------------------------------------------------------------- /cats_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/cats_demo.ipynb -------------------------------------------------------------------------------- /data/iris.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/data/iris.csv -------------------------------------------------------------------------------- /dist/cats-0.0.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/dist/cats-0.0.0-py3-none-any.whl -------------------------------------------------------------------------------- /dist/cats-0.0.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/dist/cats-0.0.0.tar.gz -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/DEMO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/docs/DEMO.md -------------------------------------------------------------------------------- /docs/DEPS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/docs/DEPS.md -------------------------------------------------------------------------------- /docs/DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/docs/DESIGN.md -------------------------------------------------------------------------------- /docs/ENV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/docs/ENV.md -------------------------------------------------------------------------------- /docs/EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/docs/EXAMPLES.md -------------------------------------------------------------------------------- /docs/ORG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/docs/ORG.md -------------------------------------------------------------------------------- /docs/TEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/docs/TEST.md -------------------------------------------------------------------------------- /docs/ubuntu2004.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/docs/ubuntu2004.md -------------------------------------------------------------------------------- /images/CATkernel.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/images/CATkernel.jpeg -------------------------------------------------------------------------------- /images/CATs_bom_activity.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/images/CATs_bom_activity.jpeg -------------------------------------------------------------------------------- /images/CATs_bom_ag.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/images/CATs_bom_ag.jpeg -------------------------------------------------------------------------------- /images/CATs_bom_connect.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/images/CATs_bom_connect.jpeg -------------------------------------------------------------------------------- /images/CATs_chaordic_kernel.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/images/CATs_chaordic_kernel.jpeg -------------------------------------------------------------------------------- /images/cid_example.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/images/cid_example.jpeg -------------------------------------------------------------------------------- /images/data_product_domain.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/images/data_product_domain.jpeg -------------------------------------------------------------------------------- /images/simple_CAT2a.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/images/simple_CAT2a.jpeg -------------------------------------------------------------------------------- /images/simple_CAT2b.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/images/simple_CAT2b.jpeg -------------------------------------------------------------------------------- /logs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/logs.ipynb -------------------------------------------------------------------------------- /main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/main.tf -------------------------------------------------------------------------------- /process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/process.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/verification_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockScience/cats/HEAD/tests/verification_test.py --------------------------------------------------------------------------------