Extending Dict
What I am trying to do:
Hold an object/dict of session credential information (user_name, password, remote_url, agent_type, etc) under a human legible session name.
In prototyping I made a session class with a property __sessions that I planned to be a dict. The problem I'm having is exposing a lot of the built in parts of dict. Like "something" in mysessions or for session in mysessions.
I know there has to be a better way, but my grasp of python is still pretty lacking when it comes to lists and dicts.
