Skip to main content

(XLOFT) X-Library of tools

Project description

Logo

XLOFT

(XLOFT) X-Library of tools.

Build Status Docs PyPI pyversions PyPI status PyPI version fury.io
GitHub issues PyPI Downloads GitHub license Code style: Ruff PyPI implementation GitHub repository
Format Top Size Last commit GitHub release

Currently, the collection is represented by one element `NamedTuple`.

Documentation

Online browsable documentation is available at https://kebasyaty.github.io/xloft/.

Requirements

View the list of requirements.

Installation

uv add xloft

Usage

from xloft import NamedTuple


nt = NamedTuple(x=10, y="Hello")
# or
d = {"x": 10, "y": "Hello"}
nt = NamedTuple(**d)

nt.x  # => 10
nt.y  # => "Hello"
nt.z  # => raise: KeyError

len(nt)  # => 2
nt.keys()  # => ["x", "y"]
nt.values()  # => [10, "Hello"]

nt.has_key("x")  # => True
nt.has_key("y")  # => True
nt.has_key("z")  # => False

nt.has_value(10)  # => True
nt.has_value("Hello")  # => True
nt.has_value([1, 2, 3])  # => False

nt.get("x")  # => 10
nt.get("y")  # => "Hello"
nt.get("z")  # => None

d = nt.to_dict()
d["x"]  # => 10
d.get("y")  # => "Hello"
d.get("z") # => None

for key, val in nt.items():
    print(f"Key: {key}, Value: {val}")

nt.update("x", 20)
nt.update("y", "Hi")
nt.x  # => 20
nt.y  # => "Hi"
nt.update("z", [1, 2, 3])  # => raise: KeyError

nt["x"]  # => raise: KeyError
nt["y"]  # => raise: KeyError
nt["z"]  # => raise: KeyError
nt["x"] = 20  # => TypeError
nt["y"] = "Hi"  # => TypeError
nt["z"] = [1, 2, 3]  # => TypeError

nt.x = 20  # => raise: AttributeDoesNotSetValue
nt.y = "Hi"  # => raise: AttributeDoesNotSetValue
nt.z = [1, 2, 3]  # => raise: AttributeDoesNotSetValue

del nt.x  # => raise: AttributeCannotBeDelete
del nt.y # => raise: AttributeCannotBeDelete

Changelog

View the change history.

License

This project is licensed under the MIT.

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

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

xloft-0.1.15-py3-none-any.whl (5.8 kB view details)

Uploaded Python 3

File details

Details for the file xloft-0.1.15-py3-none-any.whl.

File metadata

  • Download URL: xloft-0.1.15-py3-none-any.whl
  • Upload date:
  • Size: 5.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.13

File hashes

Hashes for xloft-0.1.15-py3-none-any.whl
Algorithm Hash digest
SHA256 1cb20c7913a6ad4cb0c67a86a56ddc3273d84451b16f02150c66a33c76c59b07
MD5 ccefbcb08902309d515afad8f35a748a
BLAKE2b-256 7ca63caf218b5e10f9d2fbede1d060a12dce01bb6163a14b653add7bd31dd1e4

See more details on using hashes here.

Supported by

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