Object has no attribute 'create_main_panel'
I am working on a code that has been previously written by someone else.
Running the below code on my machine:
from wx import PySimpleApp, Size, TE_PROCESS_ENTER, Frame, Panel,
SUNKEN_BORDER, StaticBox, PlatformInfo, TE_PROCESS_ENTER
from wx import BoxSizer, HORIZONTAL, TextCtrl, StaticText, Slider,
SL_AUTOTICKS, SL_LABELS, EXPAND, ALL, CheckBox, WINDOW_VARIANT_SMALL
from wx import StaticBoxSizer, VERTICAL, LEFT, TOP, LEFT, RIGHT, GROW,
Platform, PlatformInfo, GridSizer, Button, EVT_BUTTON
from wx import Slider, SL_AUTOTICKS, SL_LABELS,
EVT_COMMAND_SCROLL_THUMBTRACK, SpinCtrl, EVT_SPINCTRL,
ALIGN_CENTER_VERTICAL, ALIGN_CENTER_HORIZONTAL
from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas
from matplotlib.backends.backend_wxagg import NavigationToolbar2WxAgg as NavigationToolbar
from matplotlib.pyplot import figure as Figure
from scipy import random, double, reshape, savetxt
import my_libs as my
from networkx import read_graphml, spring_layout, Graph,
to_scipy_sparse_matrix, get_node_attributes,
get_edge_attributes,draw_networkx, write_graphml
class MyFrame(Frame):
def __init__(self, parent, ID, title):
Frame.__init__(self, parent, ID, title, size=(1200, 700))
##set default values###########
##network##
self.timesteps=20
self.groupfile = 'groups.txt'
self.nodefile = 'homes.txt'
self.radius=5000
self.P = 4
self.W = 20
self.Mvals = [0.45, 0.333, 0.15, 0.056, 0.008, 0.003]
self.Pedge = [1.0]
self.xmlfile = 'new_graph.xml'
self.randseed = ''
self.basename='new_data.txt'
##dynamics##
self.a0=0
self.b0=100
self.c0=0
self.thresh0=30
self.personal0=50
self.scale0=10
###############################
self.create_main_panel()
Results in the following error:
AttributeError: 'MyFrame' object has no attribute 'create_main_panel'
Does anyone know how to fix this?
python wxpython wxpython-phoenix
add a comment |
I am working on a code that has been previously written by someone else.
Running the below code on my machine:
from wx import PySimpleApp, Size, TE_PROCESS_ENTER, Frame, Panel,
SUNKEN_BORDER, StaticBox, PlatformInfo, TE_PROCESS_ENTER
from wx import BoxSizer, HORIZONTAL, TextCtrl, StaticText, Slider,
SL_AUTOTICKS, SL_LABELS, EXPAND, ALL, CheckBox, WINDOW_VARIANT_SMALL
from wx import StaticBoxSizer, VERTICAL, LEFT, TOP, LEFT, RIGHT, GROW,
Platform, PlatformInfo, GridSizer, Button, EVT_BUTTON
from wx import Slider, SL_AUTOTICKS, SL_LABELS,
EVT_COMMAND_SCROLL_THUMBTRACK, SpinCtrl, EVT_SPINCTRL,
ALIGN_CENTER_VERTICAL, ALIGN_CENTER_HORIZONTAL
from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas
from matplotlib.backends.backend_wxagg import NavigationToolbar2WxAgg as NavigationToolbar
from matplotlib.pyplot import figure as Figure
from scipy import random, double, reshape, savetxt
import my_libs as my
from networkx import read_graphml, spring_layout, Graph,
to_scipy_sparse_matrix, get_node_attributes,
get_edge_attributes,draw_networkx, write_graphml
class MyFrame(Frame):
def __init__(self, parent, ID, title):
Frame.__init__(self, parent, ID, title, size=(1200, 700))
##set default values###########
##network##
self.timesteps=20
self.groupfile = 'groups.txt'
self.nodefile = 'homes.txt'
self.radius=5000
self.P = 4
self.W = 20
self.Mvals = [0.45, 0.333, 0.15, 0.056, 0.008, 0.003]
self.Pedge = [1.0]
self.xmlfile = 'new_graph.xml'
self.randseed = ''
self.basename='new_data.txt'
##dynamics##
self.a0=0
self.b0=100
self.c0=0
self.thresh0=30
self.personal0=50
self.scale0=10
###############################
self.create_main_panel()
Results in the following error:
AttributeError: 'MyFrame' object has no attribute 'create_main_panel'
Does anyone know how to fix this?
python wxpython wxpython-phoenix
1
I'm pretty sure thatwx.Frame
hasn't (and did never have) a methodcreate_main_panel
. Probably there is some code mssing (with anotherFrame
class). By the way: The formatting of the code is wrong (seems like some automatic word wrapping kicked in), please fix.
– Michael Butscher
Jan 1 at 16:25
Yeah, this is NOT a method ofwx.Frame
.
– Mike Driscoll
Jan 2 at 15:51
add a comment |
I am working on a code that has been previously written by someone else.
Running the below code on my machine:
from wx import PySimpleApp, Size, TE_PROCESS_ENTER, Frame, Panel,
SUNKEN_BORDER, StaticBox, PlatformInfo, TE_PROCESS_ENTER
from wx import BoxSizer, HORIZONTAL, TextCtrl, StaticText, Slider,
SL_AUTOTICKS, SL_LABELS, EXPAND, ALL, CheckBox, WINDOW_VARIANT_SMALL
from wx import StaticBoxSizer, VERTICAL, LEFT, TOP, LEFT, RIGHT, GROW,
Platform, PlatformInfo, GridSizer, Button, EVT_BUTTON
from wx import Slider, SL_AUTOTICKS, SL_LABELS,
EVT_COMMAND_SCROLL_THUMBTRACK, SpinCtrl, EVT_SPINCTRL,
ALIGN_CENTER_VERTICAL, ALIGN_CENTER_HORIZONTAL
from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas
from matplotlib.backends.backend_wxagg import NavigationToolbar2WxAgg as NavigationToolbar
from matplotlib.pyplot import figure as Figure
from scipy import random, double, reshape, savetxt
import my_libs as my
from networkx import read_graphml, spring_layout, Graph,
to_scipy_sparse_matrix, get_node_attributes,
get_edge_attributes,draw_networkx, write_graphml
class MyFrame(Frame):
def __init__(self, parent, ID, title):
Frame.__init__(self, parent, ID, title, size=(1200, 700))
##set default values###########
##network##
self.timesteps=20
self.groupfile = 'groups.txt'
self.nodefile = 'homes.txt'
self.radius=5000
self.P = 4
self.W = 20
self.Mvals = [0.45, 0.333, 0.15, 0.056, 0.008, 0.003]
self.Pedge = [1.0]
self.xmlfile = 'new_graph.xml'
self.randseed = ''
self.basename='new_data.txt'
##dynamics##
self.a0=0
self.b0=100
self.c0=0
self.thresh0=30
self.personal0=50
self.scale0=10
###############################
self.create_main_panel()
Results in the following error:
AttributeError: 'MyFrame' object has no attribute 'create_main_panel'
Does anyone know how to fix this?
python wxpython wxpython-phoenix
I am working on a code that has been previously written by someone else.
Running the below code on my machine:
from wx import PySimpleApp, Size, TE_PROCESS_ENTER, Frame, Panel,
SUNKEN_BORDER, StaticBox, PlatformInfo, TE_PROCESS_ENTER
from wx import BoxSizer, HORIZONTAL, TextCtrl, StaticText, Slider,
SL_AUTOTICKS, SL_LABELS, EXPAND, ALL, CheckBox, WINDOW_VARIANT_SMALL
from wx import StaticBoxSizer, VERTICAL, LEFT, TOP, LEFT, RIGHT, GROW,
Platform, PlatformInfo, GridSizer, Button, EVT_BUTTON
from wx import Slider, SL_AUTOTICKS, SL_LABELS,
EVT_COMMAND_SCROLL_THUMBTRACK, SpinCtrl, EVT_SPINCTRL,
ALIGN_CENTER_VERTICAL, ALIGN_CENTER_HORIZONTAL
from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas
from matplotlib.backends.backend_wxagg import NavigationToolbar2WxAgg as NavigationToolbar
from matplotlib.pyplot import figure as Figure
from scipy import random, double, reshape, savetxt
import my_libs as my
from networkx import read_graphml, spring_layout, Graph,
to_scipy_sparse_matrix, get_node_attributes,
get_edge_attributes,draw_networkx, write_graphml
class MyFrame(Frame):
def __init__(self, parent, ID, title):
Frame.__init__(self, parent, ID, title, size=(1200, 700))
##set default values###########
##network##
self.timesteps=20
self.groupfile = 'groups.txt'
self.nodefile = 'homes.txt'
self.radius=5000
self.P = 4
self.W = 20
self.Mvals = [0.45, 0.333, 0.15, 0.056, 0.008, 0.003]
self.Pedge = [1.0]
self.xmlfile = 'new_graph.xml'
self.randseed = ''
self.basename='new_data.txt'
##dynamics##
self.a0=0
self.b0=100
self.c0=0
self.thresh0=30
self.personal0=50
self.scale0=10
###############################
self.create_main_panel()
Results in the following error:
AttributeError: 'MyFrame' object has no attribute 'create_main_panel'
Does anyone know how to fix this?
python wxpython wxpython-phoenix
python wxpython wxpython-phoenix
edited Jan 1 at 17:25


Loss of human identity
1,1911926
1,1911926
asked Jan 1 at 16:16
Hannah AlexanderHannah Alexander
1
1
1
I'm pretty sure thatwx.Frame
hasn't (and did never have) a methodcreate_main_panel
. Probably there is some code mssing (with anotherFrame
class). By the way: The formatting of the code is wrong (seems like some automatic word wrapping kicked in), please fix.
– Michael Butscher
Jan 1 at 16:25
Yeah, this is NOT a method ofwx.Frame
.
– Mike Driscoll
Jan 2 at 15:51
add a comment |
1
I'm pretty sure thatwx.Frame
hasn't (and did never have) a methodcreate_main_panel
. Probably there is some code mssing (with anotherFrame
class). By the way: The formatting of the code is wrong (seems like some automatic word wrapping kicked in), please fix.
– Michael Butscher
Jan 1 at 16:25
Yeah, this is NOT a method ofwx.Frame
.
– Mike Driscoll
Jan 2 at 15:51
1
1
I'm pretty sure that
wx.Frame
hasn't (and did never have) a method create_main_panel
. Probably there is some code mssing (with another Frame
class). By the way: The formatting of the code is wrong (seems like some automatic word wrapping kicked in), please fix.– Michael Butscher
Jan 1 at 16:25
I'm pretty sure that
wx.Frame
hasn't (and did never have) a method create_main_panel
. Probably there is some code mssing (with another Frame
class). By the way: The formatting of the code is wrong (seems like some automatic word wrapping kicked in), please fix.– Michael Butscher
Jan 1 at 16:25
Yeah, this is NOT a method of
wx.Frame
.– Mike Driscoll
Jan 2 at 15:51
Yeah, this is NOT a method of
wx.Frame
.– Mike Driscoll
Jan 2 at 15:51
add a comment |
1 Answer
1
active
oldest
votes
This is only the beginning of a much larger program. As it stands, nothing you do is going to fix this, short of finding the original programmer's code for self.create_main_panel(), my_lib, and probably a whole lot more, then installing the missing import libraries (with pip) such as mathplotlib, scipy, etc.
The following gets the code running minimally, but only produces an empty frame.
import wx
from wx import Frame
class MyFrame(Frame):
def __init__(self, parent, ID, title):
Frame.__init__(self, parent, ID, title, size=(1200, 700))
##set default values###########
##network##
self.timesteps=20
self.groupfile = 'groups.txt'
self.nodefile = 'homes.txt'
self.radius=5000
self.P = 4
self.W = 20
self.Mvals = [0.45, 0.333, 0.15, 0.056, 0.008, 0.003]
self.Pedge = [1.0]
self.xmlfile = 'new_graph.xml'
self.randseed = ''
self.basename='new_data.txt'
##dynamics##
self.a0=0
self.b0=100
self.c0=0
self.thresh0=30
self.personal0=50
self.scale0=10
###############################
# self.create_main_panel()
if __name__ == '__main__':
app = wx.App()
frame = MyFrame(None, wx.ID_ANY, 'Any Title')
frame.Show(True)
app.MainLoop()
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53996990%2fobject-has-no-attribute-create-main-panel%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
This is only the beginning of a much larger program. As it stands, nothing you do is going to fix this, short of finding the original programmer's code for self.create_main_panel(), my_lib, and probably a whole lot more, then installing the missing import libraries (with pip) such as mathplotlib, scipy, etc.
The following gets the code running minimally, but only produces an empty frame.
import wx
from wx import Frame
class MyFrame(Frame):
def __init__(self, parent, ID, title):
Frame.__init__(self, parent, ID, title, size=(1200, 700))
##set default values###########
##network##
self.timesteps=20
self.groupfile = 'groups.txt'
self.nodefile = 'homes.txt'
self.radius=5000
self.P = 4
self.W = 20
self.Mvals = [0.45, 0.333, 0.15, 0.056, 0.008, 0.003]
self.Pedge = [1.0]
self.xmlfile = 'new_graph.xml'
self.randseed = ''
self.basename='new_data.txt'
##dynamics##
self.a0=0
self.b0=100
self.c0=0
self.thresh0=30
self.personal0=50
self.scale0=10
###############################
# self.create_main_panel()
if __name__ == '__main__':
app = wx.App()
frame = MyFrame(None, wx.ID_ANY, 'Any Title')
frame.Show(True)
app.MainLoop()
add a comment |
This is only the beginning of a much larger program. As it stands, nothing you do is going to fix this, short of finding the original programmer's code for self.create_main_panel(), my_lib, and probably a whole lot more, then installing the missing import libraries (with pip) such as mathplotlib, scipy, etc.
The following gets the code running minimally, but only produces an empty frame.
import wx
from wx import Frame
class MyFrame(Frame):
def __init__(self, parent, ID, title):
Frame.__init__(self, parent, ID, title, size=(1200, 700))
##set default values###########
##network##
self.timesteps=20
self.groupfile = 'groups.txt'
self.nodefile = 'homes.txt'
self.radius=5000
self.P = 4
self.W = 20
self.Mvals = [0.45, 0.333, 0.15, 0.056, 0.008, 0.003]
self.Pedge = [1.0]
self.xmlfile = 'new_graph.xml'
self.randseed = ''
self.basename='new_data.txt'
##dynamics##
self.a0=0
self.b0=100
self.c0=0
self.thresh0=30
self.personal0=50
self.scale0=10
###############################
# self.create_main_panel()
if __name__ == '__main__':
app = wx.App()
frame = MyFrame(None, wx.ID_ANY, 'Any Title')
frame.Show(True)
app.MainLoop()
add a comment |
This is only the beginning of a much larger program. As it stands, nothing you do is going to fix this, short of finding the original programmer's code for self.create_main_panel(), my_lib, and probably a whole lot more, then installing the missing import libraries (with pip) such as mathplotlib, scipy, etc.
The following gets the code running minimally, but only produces an empty frame.
import wx
from wx import Frame
class MyFrame(Frame):
def __init__(self, parent, ID, title):
Frame.__init__(self, parent, ID, title, size=(1200, 700))
##set default values###########
##network##
self.timesteps=20
self.groupfile = 'groups.txt'
self.nodefile = 'homes.txt'
self.radius=5000
self.P = 4
self.W = 20
self.Mvals = [0.45, 0.333, 0.15, 0.056, 0.008, 0.003]
self.Pedge = [1.0]
self.xmlfile = 'new_graph.xml'
self.randseed = ''
self.basename='new_data.txt'
##dynamics##
self.a0=0
self.b0=100
self.c0=0
self.thresh0=30
self.personal0=50
self.scale0=10
###############################
# self.create_main_panel()
if __name__ == '__main__':
app = wx.App()
frame = MyFrame(None, wx.ID_ANY, 'Any Title')
frame.Show(True)
app.MainLoop()
This is only the beginning of a much larger program. As it stands, nothing you do is going to fix this, short of finding the original programmer's code for self.create_main_panel(), my_lib, and probably a whole lot more, then installing the missing import libraries (with pip) such as mathplotlib, scipy, etc.
The following gets the code running minimally, but only produces an empty frame.
import wx
from wx import Frame
class MyFrame(Frame):
def __init__(self, parent, ID, title):
Frame.__init__(self, parent, ID, title, size=(1200, 700))
##set default values###########
##network##
self.timesteps=20
self.groupfile = 'groups.txt'
self.nodefile = 'homes.txt'
self.radius=5000
self.P = 4
self.W = 20
self.Mvals = [0.45, 0.333, 0.15, 0.056, 0.008, 0.003]
self.Pedge = [1.0]
self.xmlfile = 'new_graph.xml'
self.randseed = ''
self.basename='new_data.txt'
##dynamics##
self.a0=0
self.b0=100
self.c0=0
self.thresh0=30
self.personal0=50
self.scale0=10
###############################
# self.create_main_panel()
if __name__ == '__main__':
app = wx.App()
frame = MyFrame(None, wx.ID_ANY, 'Any Title')
frame.Show(True)
app.MainLoop()
edited Jan 2 at 18:21
answered Jan 2 at 18:12
Sarah2400Sarah2400
12
12
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53996990%2fobject-has-no-attribute-create-main-panel%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
I'm pretty sure that
wx.Frame
hasn't (and did never have) a methodcreate_main_panel
. Probably there is some code mssing (with anotherFrame
class). By the way: The formatting of the code is wrong (seems like some automatic word wrapping kicked in), please fix.– Michael Butscher
Jan 1 at 16:25
Yeah, this is NOT a method of
wx.Frame
.– Mike Driscoll
Jan 2 at 15:51