Attachment 'albums.pyw'
Download 1 #!/bin/env python
2 #----------------------------------------------------------------------------
3 # Name: albums.pyw
4 # Purpose: starts everything
5 #
6 # Author: Peter Damoc (peter at sigmacore.net)
7 # adapted from Martin Fowler's MVP example
8 # Created: January 2006
9 # Version: 0.1
10 # Licence: wxWindows license
11
12 import presenters
13 import models
14 import views
15 import interactors
16
17 '''
18 Just creates the Presenter with some albums, a way to display them(the View)
19 and a way to interact with them (the Interactor)
20 '''
21 presenters.AlbumPresenter(models.GetDemoAlbums(), views.AlbumWindow(), interactors.AlbumInteractor())
Attached Files
To refer to attachments on a page, use attachment:filename, as shown below in the list of files. Do NOT use the URL of the [get] link, since this is subject to change and can break easily.You are not allowed to attach a file to this page.