GithubHelp home page GithubHelp logo

bradjasper / attrgettersetter Goto Github PK

View Code? Open in Web Editor NEW
1.0 3.0 0.0 148 KB

Flexible attribute getter and setter functions (useful for attribute.dot.syntax w/ default value support)

License: MIT License

attrgettersetter's Introduction

attrgettersetter

Python provides a great operator.attrgetter method, but it doesn't support default values and there's no similar attrsetter method.

This module provides those two convenience functions

Example

class A(object):
    def __init__(self):
        self.b = B()
        self.name = "A"

class B(object):
    def __init__(self):
        self.name = "B"

class C(object):
    pass


# getter 
name = attrgetter("name")
remote_name = attrgetter("b.name")
a = A()
b = B()
c = C()

self.assertEquals(name(a), "A")
self.assertEquals(name(b), "B")
self.assertEquals(remote_name(a), "B")
self.assertEquals(name(c), None)

# setter
name = attrsetter("name")
remote_name = attrsetter("b.name")


a = A()
a.b = B()

name(a, "A-1")
remote_name(a, "B-1")
self.assertEquals(a.name, "A-1")
self.assertEquals(a.b.name, "B-1")

License

MIT

Contact

@bradjasper

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.