Bynd is a simple way of achieving static typing in Python.
Project description
██████╗ ██╗ ██╗███╗ ██╗██████╗
██╔══██╗╚██╗ ██╔╝████╗ ██║██╔══██╗
██████╔╝ ╚████╔╝ ██╔██╗ ██║██║ ██║
██╔══██╗ ╚██╔╝ ██║╚██╗██║██║ ██║
██████╔╝ ██║ ██║ ╚████║██████╔╝
╚═════╝ ╚═╝ ╚═╝ ╚═══╝╚═════╝
A module which allows binding datas to one or more types. Bynd's intended use case is to be assigned to a variable. The benefits of using Bynd are static type checking at runtime and being able to access the bound data and its types. A variable, in this case, can still be used the same way with one simple change; using the dot operator to access the data.
Bynd: Basic Usage
# filename: Bynd_test.py
from Bynd.bynd import Bynd
# Instantiates a Bynd object and binds the data "some string" to the type 'str'
my_variable = Bynd("some string")[str]
# The above code will raise a 'ByndError' if the data is not a 'str' type
# To access the data, we can use the dot '.' operator.
print("my_variable.data: ", my_variable.data)
# The type(s) can also be accessed the same way.
print("my_variable.types: ", my_variable.types)
# Output:
# my_variable.data: "some string"
# my_varaible.types: {<class 'str'>}
Recursive Type Checking: A Second Layer of Security
# filename: Bynd_test_2.py
from Bynd.bynd import Bynd
# Bynd can perform recursive type checking for collection types using the 'inner' method.
my_list = Bynd([1,2,3,[4,5,6], {'key': {'data': 21}}])[list].inner(str, int, list, dict)
# The 'inner' allows us to specify the inner types for all
# possible collections. These types will be used for all collections
# including nested ones, meaning the types need to be known in advance.
# The 'inner' method returns the original 'Bynd' instance so it doesn't
# have to be used separately.
# my_list.inner(str, int, list, dict)
# The above code will raise a 'ByndError' if the any of the collection
# items are not 'int', 'list', or 'dict' types
# Finally, if there aren't any errors, we can access and print the data and types.
print("my_list.data: ", my_list.data)
print("my_list.types: ", my_list.types)
# Output:
# my_list.data: [1,2,3[4,5,6], {'key': {'data': 21}}]
# my_list.types: {<class 'dict'>, <class 'int'>, <class 'list'>, <class 'str'>}
# NOTE: recursive type checking only occurs when the 'inner' method is used and if
# it encounters a collection type. Recursive type checking happens automatically
# within the 'inner' method itself. It will do nothing if a collection type isn't
# encountered.
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 Distributions
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 bynd-1.2-py3-none-any.whl.
File metadata
- Download URL: bynd-1.2-py3-none-any.whl
- Upload date:
- Size: 4.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
967ffb4d2a192b7f5d588659b7d534a0c87524785a79eedb772057941090d151
|
|
| MD5 |
437061d90035e335d82714118d021f3c
|
|
| BLAKE2b-256 |
ef5df811f988a7c1f49391374c17ec59a2b788ec346a9e8da327db740109582e
|