Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4026112
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T10:55:47+00:00 2026-05-20T10:55:47+00:00

Anyone know of any easy way to track changes to a dictionary object in

  • 0

Anyone know of any easy way to track changes to a dictionary object in python? I am at a high level doing crud, so I have a couple methods that handle changing a dictionary, if the dictionary changes I want to call a function to basically do an Observer/Notify.

 class MyClass(object):
     def update(self, item):
        changed = False

        if(self.my_dict.has_key(item.id)):
           self.my_dict[item.id] = item
           changed = True

        if(changed):
          self.notify()

What I am trying to avoid is all of the tracking(setting the boolean) code. Was hoping there was an easier way to track changes. This is a simple case, but there could have been more complicated logic that would result in me having to set the changed flag.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T10:55:48+00:00Added an answer on May 20, 2026 at 10:55 am

    You can derive from the dict class and add a callback on any changes. This requires to overwrite any methods that change the dictionary:

    class NotifyDict(dict):
        __slots__ = ["callback"]
        def __init__(self, callback, *args, **kwargs):
            self.callback = callback
            dict.__init__(self, *args, **kwargs)
        def _wrap(method):
            def wrapper(self, *args, **kwargs):
                result = method(self, *args, **kwargs)
                self.callback()
                return result
            return wrapper
        __delitem__ = _wrap(dict.__delitem__)
        __setitem__ = _wrap(dict.__setitem__)
        clear = _wrap(dict.clear)
        pop = _wrap(dict.pop)
        popitem = _wrap(dict.popitem)
        setdefault = _wrap(dict.setdefault)
        update =  _wrap(dict.update)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Anyone know if any easy way to find out if a site is written
Does anyone know any site or book that presents problems like python challenge ,
Does anyone know of an easy way to take the website created in MS
Does anyone know of a clean and easy way to truncate a section of
Does anyone know of a good, animated ItemsControl for Silverlight, or an easy way
Simple question. Does anyone know an easy way to convert SpreadsheetML (Excel 2003 XML)
Does anyone know of an API or an easy way to get information about
Does anyone know if there is an easy way to put a border around
Does anyone know of an easy way to create a script that can connect
Does anyone know any good resources with tasks or problems to get practice in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.