Pass nullable arguments that may not exist
Project description
nullability
Pass nullable arguments that may not exist.
Usage
>>> Nullable(1).value
1
>>> print(Nullable(None).value)
None
>>> Nullable.if_not_none(1)
Nullable(value=1)
>>> print(Nullable.if_not_none(None))
None
Usecase example:
>>> from dataclasses import dataclass
>>> from typing import Optional
>>> from nullability import Nullable
>>> @dataclass
... class Foo:
... bar: Optional[int]
... baz: Optional[int]
...
... def update(
... self,
... bar: Optional[Nullable[int]]=None,
... baz: Optional[Nullable[int]]=None,
... ):
... if bar:
... self.bar = bar.value
... if baz:
... self.baz = baz.value
... return self
>>> foo = Foo(bar=1, baz=2)
>>> foo.update(bar=Nullable(3))
Foo(bar=3, baz=2)
>>> foo.update(baz=Nullable(None))
Foo(bar=3, baz=None)
>>> foo.update(bar=Nullable.if_not_none(None))
Foo(bar=3, baz=None)
>>> foo.update(bar=Nullable.if_not_none(4))
Foo(bar=4, baz=None)
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
nullability-0.1.1.tar.gz
(4.4 kB
view details)
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 nullability-0.1.1.tar.gz.
File metadata
- Download URL: nullability-0.1.1.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c8d49016a1e299779aa0d306fab037d87f8b84cba9576e769b03d0eff3cf7027
|
|
| MD5 |
756a41f18a3c33adaa3a210752c1a2ef
|
|
| BLAKE2b-256 |
590c5aca5db810d992dd1f9235cb2eccfaa123bed4b6fcbc674697506c1b9453
|
File details
Details for the file nullability-0.1.1-py3-none-any.whl.
File metadata
- Download URL: nullability-0.1.1-py3-none-any.whl
- Upload date:
- Size: 3.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
251938c7d34813b840e73dae180d31c7f21e74b93f5502a6ebc23736761d2e45
|
|
| MD5 |
06d1cc073c9faa2f432f113acd52ad44
|
|
| BLAKE2b-256 |
7fb0ef8ed598a71ca88c15e72ba54dc09aca763d4975136db4d68896a65b803d
|