Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!us.feeder.erje.net!feeder.erje.net!eu.feeder.erje.net!ecngs!feeder2.ecngs.de!newsfeed.freenet.ag!news2.euro.net!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.036 X-Spam-Evidence: '*H*': 0.93; '*S*': 0.00; 'api.': 0.04; 'attributes': 0.07; 'python': 0.09; 'from:addr:mrabarnett.plus.com': 0.16; 'from:addr:python': 0.16; 'from:name:mrab': 0.16; 'message- id:@mrabarnett.plus.com': 0.16; 'wrote:': 0.17; 'instance': 0.17; 'this:': 0.23; 'header:In-Reply-To:1': 0.25; 'header:User- Agent:1': 0.26; 'wrote': 0.26; 'extend': 0.26; 'i.e.': 0.27; 'interface': 0.27; 'this?': 0.28; 'received:192.168.1.3': 0.29; 'class': 0.29; "i'm": 0.29; 'code': 0.31; 'skip:s 30': 0.33; 'to:addr:python-list': 0.33; 'done': 0.34; 'something': 0.35; 'but': 0.36; 'method': 0.36; 'test': 0.36; 'does': 0.37; 'subject:: ': 0.38; 'some': 0.38; 'sure': 0.38; 'to:addr:python.org': 0.39; 'received:192': 0.39; 'skip:" 10': 0.40; 'received:192.168': 0.40; 'brown': 0.65; 'satellite': 0.65; 'header:Reply-To:1': 0.68; 'reply-to:no real name:2**0': 0.72; 'reply-to:addr:python.org': 0.84; 'subject:Class': 0.91 X-CM-Score: 0.00 X-CNFS-Analysis: v=2.0 cv=XeZXOvF5 c=1 sm=1 a=0nF1XD0wxitMEM03M9B4ZQ==:17 a=O2Kvzccb_dQA:10 a=ihvODaAuJD4A:10 a=OUOv7kDek9cA:10 a=8nJEP1OIZ-IA:10 a=EBOSESyhAAAA:8 a=8AHkEIZyAAAA:8 a=LLrYFlJYELkA:10 a=_THoWooRS64tNY7tgnkA:9 a=wPNLvfGTeEIA:10 a=0nF1XD0wxitMEM03M9B4ZQ==:117 X-AUTH: mrabarnett:2500 Date: Wed, 09 Jan 2013 21:28:35 +0000 From: MRAB User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:17.0) Gecko/17.0 Thunderbird/17.0 MIME-Version: 1.0 To: python-list@python.org Subject: Re: Class confusion References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list Reply-To: python-list@python.org List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 31 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1357766921 news.xs4all.nl 6880 [2001:888:2000:d::a6]:43454 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:36519 On 2013-01-09 20:13, Rodrick Brown wrote: > How can I make a class that has methods with attributes and other > functions? > I see a lot of code > > > I'm reading the documentation to Redhat's Satellite software which has a > XMLRPC interface and wrote the following code to test the api. > > I would like to extend this code to support methods with methods? I see > this done a lot in python code but I'm not sure how to accomplish > something like this? > > i.e. > > sc = SatelliteConnect() > sc.get_systemlist().get_systemid() ? > or > sc.get_systemlist().get_running_kernel() > > How does one chain methods and attributes like this with classes? > [snip] This: sc.get_systemlist().get_systemid() simply means that the method "get_systemlist" returns an instance of some class (let's call it "SystemList") which has a method "get_systemid".