Validates USAS Tags
Project description
USAS-Validator
Validates USAS semantic tags, and other useful utilities for USAS semantic tags and Multi Word Expression (MWE) identification.
Installation
pip install -e .
Quick guide
If you have a a list of USAS semantic tags in a String like so it will validate that they follow the USAS semantic tag schema and return them as a list[USASTagGroup]:
from usas_validator import utils
usas_tag_string = "Z2/S2mf E3-"
usas_tag_groups = utils.parse_usas_token_group(usas_tag_string)
for usas_token_group in usas_tag_groups:
print(usas_token_group)
print()
Output:
tags=[USASTag(tag='Z2', number_positive_markers=0, number_negative_markers=0, rarity_marker_1=False, rarity_marker_2=False, female=False, male=False, antecedents=False, neuter=False, idiom=False), USASTag(tag='S2', number_positive_markers=0, number_negative_markers=0, rarity_marker_1=False, rarity_marker_2=False, female=True, male=True, antecedents=False, neuter=False, idiom=False)]
tags=[USASTag(tag='E3', number_positive_markers=0, number_negative_markers=1, rarity_marker_1=False, rarity_marker_2=False, female=False, male=False, antecedents=False, neuter=False, idiom=False)]
You can also load all the USAS tags and their descriptions like so:
from usas_validator import utils
for usas_tag, tag_description in utils.load_usas_mapper(None, None).items():
print(f"Tag: {usas_tag} Description: {tag_description}")
The output is long thus only showing the first 5 tags:
Tag: A1.1.1 Description: title: General actions, making etc. description: General/abstract terms relating to an activity/action (e.g. act, adventure, approach, arise); a characteristic/feature (e.g. absorb, attacking, automatically); aconstruction/craft and/or the action of constructing/crafting (e.g. arrange, assemble, bolts, boring, break)
Tag: A1.1.2 Description: title: Damaging and destroying description: General/abstract terms depicting damage/destruction/demolition/pollution, etc
Tag: A1.2 Description: title: Suitability description: General/abstract terms relating to appropriateness, suitability, aptness, etc
Tag: A1.3 Description: title: Caution description: General/abstract terms relating to vigilance/care/prudence, or the lack of.
Tag: A1.4 Description: title: Chance, luck description: General/abstract terms depicting likelihood/probability/providence, or the lack of.
Setup
You can either use the dev container with your favourite editor, e.g. VSCode. Or you can create your setup locally below we demonstrate both.
In both cases they share the same tools, of which these tools are:
- uv for Python packaging and development
- make (OPTIONAL) for automation of tasks, not strictly required but makes life easier.
Dev Container
A dev container uses a docker container to create the required development environment, the Dockerfile we use for this dev container can be found at ./.devcontainer/Dockerfile. To run it locally it requires docker to be installed, you can also run it in a cloud based code editor, for a list of supported editors/cloud editors see the following webpage.
To run for the first time on a local VSCode editor (a slightly more detailed and better guide on the VSCode website):
- Ensure docker is running.
- Ensure the VSCode Dev Containers extension is installed in your VSCode editor.
- Open the command pallete
CMD + SHIFT + Pand then selectDev Containers: Rebuild and Reopen in Container
You should now have everything you need to develop, uv, make, for VSCode various extensions like Pylance, etc.
If you have any trouble see the VSCode website..
Local
To run locally first ensure you have the following tools installted locally:
- uv for Python packaging and development. (version
0.9.6) - make (OPTIONAL) for automation of tasks, not strictly required but makes life easier.
- Ubuntu:
apt-get install make - Mac: Xcode command line tools includes
makeelse you can use brew. - Windows: Various solutions proposed in this blog post on how to install on Windows, inclduing
Cygwin, andWindows Subsystem for Linux.
- Ubuntu:
When developing on the project you will want to install the Python package locally in editable format with all the extra requirements, this can be done like so:
uv sync --all-extras
Linting
Linting and formatting with ruff it is a replacement for tools like Flake8, isort, Black etc, and we us ty for type checking.
To run the linting:
make lint
Tests
To run the tests (uses pytest and coverage) and generate a coverage report:
make test
Documentation Website
Setup
mkdir docs
cd docs
sphinx-quickstart
The documentation site is split into source and build directories whereby the source directory contains all of the files that will be used to generate the documentation and build contains all of the files that have been generated through the sphinx-build command that will be served as the documentation through a web server.
Development
To create a local live documentation site at http://127.0.0.1:9000 with auto reload on edits/changes:
make live-docs
To build the documentation, this will build/create the documentation files to ./docs/build/:
make build-docs
To build the documentation for GitHub Pages:
make build-docs-gh
Claude settings
For those that use Anthropic's Claude we have shared some suggested settings, see ./.claude folder that are enforced within this project but can be easily adjusted or removed if you prefer to use your own settings or the default settings of Claude. The project level settings for Claude, can be found at ./.claude/settings.json are auto generated by running the following script;
cd .claude/hooks && uv run generate_settings.py > ../settings.json
This script creates a settings file with;
- Numerous Deny permissions that have come from the list of files, stated in ./.claude/hooks/sensitive_patterns.py, that you do not want Claude to write/edit/read.
- A pre-hook, ./.claude/hooks/block_sensitive_files.py, that catches any write/edit/read to the list of files that the Deny permissions might miss, e.g. a call to Python using Bash.
To note this pre-hook and Deny permissions would not stop Claude from write/edit/read if Claude requests the file through an unusual regex pattern like e*v to get the .env file, but this is a best effort try to reduce Claude's access to these more sensitive files. Generally speaking if you are using API keys reduce the scope as much as possible and limit the time and resource access while developing.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file usas_validator-0.1.0.tar.gz.
File metadata
- Download URL: usas_validator-0.1.0.tar.gz
- Upload date:
- Size: 21.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84c52c9a6d2461347767f75336c7a0113d3db87eac10c5bc70aec90ad997483f
|
|
| MD5 |
2731985aab72efe68b02c21ca6c2eb2f
|
|
| BLAKE2b-256 |
38cb59730aede91b60d5070d4ab31c7cf9ec291729fc3e753a318c502f9c253f
|
Provenance
The following attestation bundles were made for usas_validator-0.1.0.tar.gz:
Publisher:
publish.yaml on UCREL/USAS-Validator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
usas_validator-0.1.0.tar.gz -
Subject digest:
84c52c9a6d2461347767f75336c7a0113d3db87eac10c5bc70aec90ad997483f - Sigstore transparency entry: 2172984721
- Sigstore integration time:
-
Permalink:
UCREL/USAS-Validator@ba6194f571d6a65c5cf62d5bd3f1f2f4341e87e8 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/UCREL
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@ba6194f571d6a65c5cf62d5bd3f1f2f4341e87e8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file usas_validator-0.1.0-py3-none-any.whl.
File metadata
- Download URL: usas_validator-0.1.0-py3-none-any.whl
- Upload date:
- Size: 23.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f80b3b55cd5a80abf1edb956df34c4c13e39f3d4b2ee661546fbb8d76d4a843
|
|
| MD5 |
8e19708be6686da1f343e9428c580002
|
|
| BLAKE2b-256 |
2958fde444144ddf3f19b7a62f8d125113f353e80716003c57bb1da9db800dee
|
Provenance
The following attestation bundles were made for usas_validator-0.1.0-py3-none-any.whl:
Publisher:
publish.yaml on UCREL/USAS-Validator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
usas_validator-0.1.0-py3-none-any.whl -
Subject digest:
3f80b3b55cd5a80abf1edb956df34c4c13e39f3d4b2ee661546fbb8d76d4a843 - Sigstore transparency entry: 2172984723
- Sigstore integration time:
-
Permalink:
UCREL/USAS-Validator@ba6194f571d6a65c5cf62d5bd3f1f2f4341e87e8 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/UCREL
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@ba6194f571d6a65c5cf62d5bd3f1f2f4341e87e8 -
Trigger Event:
release
-
Statement type: