Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rearchitect to Object-Oriented Design #41

Merged
merged 3 commits into from
Jan 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,23 +42,23 @@ pipenv shell
Navigate to the `cli-tools` directory.

```bash
cd ntia_conformance_checker/cli_tools
cd ntia_conformance_checker
```

The user can request help via a command-line flag:

```bash
python3 checker.py --help
python3 main.py --help
```

The user can then analyze a particular file:

```bash
python3 checker.py --file sbom.json
python3 main.py --file sbom.json
```

To make the output machine-readable JSON, run:

```bash
python3 checker.py --output json
python3 main.py --output json
```
Empty file.
235 changes: 0 additions & 235 deletions ntia_conformance_checker/cli_tools/check_anything.py

This file was deleted.

109 changes: 0 additions & 109 deletions ntia_conformance_checker/cli_tools/output.py

This file was deleted.

Loading