Skip to main content

Non-empty string

Project description

nonemptystr

PyPI PyPI - Python Version Code style: black license

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)

Uploaded Source

Built Distribution

nonemptystr-1.0.0-py3-none-any.whl (3.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page