Skip to main content

Enjoy the flexibility of structs with esu!

Project description

Welcome to Esu Struct!

Build Status Documentation Status PyPI PyPI - Python Version PyPI - License

Enjoy the flexibility of structs with esu!

You can create types on the fly with previously declared fields and methods by using esu struct.
The created type additionally contains methods for equation, hashing and string representation.

Install

pip install esu

Usage

from esu import Struct

Customer = Struct(
            'Customer', 
            'name', 'age', 
            methods={
                'greeting': lambda self: "Hello {}".format(self.__dict__['name'])
            })

dave = Customer()
dave.name = 'Dave'
dave.age = 25
dave.greeting() # => Hello Dave 

anna = Customer('Anna', 28)
anna.greeting() # => Hello Anna

Documentation

For further information, read the documentation that can be found: https://esu.readthedocs.io

Contribution

  1. Fork it!
  2. Make your changes!
  3. Send a PR!

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

esu-2.1.0.tar.gz (2.8 kB view details)

Uploaded Source

File details

Details for the file esu-2.1.0.tar.gz.

File metadata

  • Download URL: esu-2.1.0.tar.gz
  • Upload date:
  • Size: 2.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for esu-2.1.0.tar.gz
Algorithm Hash digest
SHA256 57cf8107669b1aac733210e8cae84e1c3959db53d755ec06a20ee4f2dee2f374
MD5 220730e84390c574b30a8bb62463d88b
BLAKE2b-256 17f3ed79fe35220cc992d13095c8700b560e020b1bfbfff4e6ec54de2e6b05a0

See more details on using hashes here.

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