Metadata-Version: 2.1
Name: rcheck
Version: 0.0.8
Summary: Runtime type checking
Home-page: https://www.github.com/alrudolph/rcheck
License: Apache-2.0
Author: Alex Rudolph
Author-email: alex3rudolph@gmail.com
Requires-Python: >=3.11,<4.0
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Project-URL: Repository, https://www.github.com/alrudolph/rcheck
Description-Content-Type: text/markdown

# `rcheck`

Runtime type checking.

```py
from rcheck import r

package_name = "rcheck"
package_name = r.check_str("package_name", package_name)
print(package_name)  # "rcheck"
```

