Non-empty string
Project description
nonemptystr
Non-empty string.
Usage
pip install nonemptystr
from nonemptystr import EmptyString, nonemptystr
name: nonemptystr = nonemptystr("John")
try:
name = nonemptystr("")
except EmptyString:
print("The name is empty.")
... with pydantic
pip install nonemptystr, pydantic
from nonemptystr import nonemptystr
from pydantic import BaseModel, ValidationError
class Request(BaseModel):
user_id: nonemptystr
try:
request = Request.model_validate({"user_id": ""})
print(f"user_id: {request.user_id}")
except ValidationError:
print("user_id is empty")
API
Module nonemptystr
class nonemptystr(obj: object)
Subclass of str
.
Raise EmptyString
exception if str(obj)
is empty string.
class EmptyString
Subclass of ValueError
.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
nonemptystr-1.0.0.tar.gz
(2.8 kB
view hashes)
Built Distribution
Close
Hashes for nonemptystr-1.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a96b2dc347548c3b113c975de3a30d7e1badd87634d72e144b0ffba00f45538f |
|
MD5 | fc1e56fd7c79b5275de66d4bd852a03a |
|
BLAKE2b-256 | 9a9bb749092d60ce48c30f670b94bf105553f65edab4c0e68fd3a9a7324b9e7a |