473,790 Members | 2,629 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

PythonCard and Py2Exe

I've been banging my head against this problem for a week. It's time
to ask for help, because I'm obviously not going to solve this by trial
and error. I'm trying to create a standalone version (.exe) of
PythonCard's Custdb sample using Py2Exe version 0.5.0. Everytime I
attempt to compile the program, I get an error during compilation. I
need to formulate the correct setup file. Here's the one I began with:
from distutils.core import setup
from PythonCard import dialog, model
import PythonCard
import py2exe

setup( name = "custdb",
console = ["custdb.py"],
data_files = [ (".", ["custdb.ini ", "custdb.rsrc.py ",
"customerdata.c sv"]) ]
)

Every variation of this format failed. Does anyone have any ideas of
how to re-write this Setup file?

Jul 18 '05 #1
8 3060
Pi************* @yahoo.com wrote:
I've been banging my head against this problem for a week. It's time
to ask for help, because I'm obviously not going to solve this by trial
and error. I'm trying to create a standalone version (.exe) of
PythonCard's Custdb sample using Py2Exe version 0.5.0. Everytime I
attempt to compile the program, I get an error during compilation. I
need to formulate the correct setup file. Here's the one I began with:
from distutils.core import setup
from PythonCard import dialog, model
import PythonCard
import py2exe

setup( name = "custdb",
console = ["custdb.py"],
data_files = [ (".", ["custdb.ini ", "custdb.rsrc.py ",
"customerdata.c sv"]) ]
)

Every variation of this format failed.


failed, as in? did you get an error message? can you post the error message?

</F>

Jul 18 '05 #2
For this setup file, the executable packs, but when I attempt to run
the program, the screen flashes, " cannot import name radiogroup ".
I've attempted adding "import radiogroup", "from Pythoncard import
radiogroup" and "from Pythoncard.comp nents import radiogroup" to the
setup file, and that doesn't help. It simply terminates with no error.
I've tried removing all references to radiogroup from the script's
resource file, but that defeats the purpose, as the list box is central
to the script's use.

My computer runs the script fine, so the radiogroup module must be
there. I must just have the imports written wrong.

Jul 18 '05 #3
Pi************* @yahoo.com writes:
For this setup file, the executable packs, but when I attempt to run
the program, the screen flashes, " cannot import name radiogroup ".
I've attempted adding "import radiogroup", "from Pythoncard import
radiogroup" and "from Pythoncard.comp nents import radiogroup" to the
setup file, and that doesn't help. It simply terminates with no error.
I've tried removing all references to radiogroup from the script's
resource file, but that defeats the purpose, as the list box is central
to the script's use.

My computer runs the script fine, so the radiogroup module must be
there. I must just have the imports written wrong.


You should move these 'import ...' statements to your *script* so that
py2exe doesn find them, not to the setup script.

Thomas
Jul 18 '05 #4
> You should move these 'import ...' statements to your *script* so
that
py2exe doesn find them, not to the setup script.

Thomas


Removing import statements only returns this error message before the
package compiles:

= "custdb",
'setup' is not defined
No files are returned.

Jul 18 '05 #5
pi************* @gmail.com wrote:
You should move these 'import ...' statements to your *script* so that
py2exe doesn find them, not to the setup script.


Removing import statements only returns this error message before the
package compiles:

= "custdb",
'setup' is not defined

No files are returned.


Please use "cut and paste" to copy the *actual* error into your
message, rather than retyping (and removing critical information).

Also, if the setup.py script is not too large (less than about
20 lines) post it as well.

-Peter
Jul 18 '05 #6
The Error:

(Most recent call last):
C:\Documents and Settings\Gatewa y User\ Desktop\custdb\ setup.py", line
1,

name = "custdb",
'setup' is not defined
There may be a single word infront of 'setup' on the fourth line, it
scramble on my screen because I have to use a screen capture to read
the error (it pops up for just a second before the window shuts down.
Here's the full setup.py script I ran to get the error:

from distutils.core import setup
import py2exe

setup( name = "custdb",
console = ["custdb.py"],
data_files = [ (".", ["custdb.ini ", "custdb.de.rsrc .py"
"custdb.rsrc.py ", "customerdata.c sv"]) ]
)

*note: "data_files " is all one line in my Python IDLE

Jul 18 '05 #7
pi************* @gmail.com wrote:
(Most recent call last):
C:\Documents and Settings\Gatewa y User\ Desktop\custdb\ setup.py",
line 1, name = "custdb", 'setup' is not defined

There may be a single word infront of 'setup' on the fourth line, it
scramble on my screen because I have to use a screen capture to read
the error (it pops up for just a second before the window shuts down.
That's because you're not running it from a command prompt.
Please open a command prompt (Start Menu, select "Run",
type "cmd.exe" and ENTER, then type the following line
to get to the folder with the script:

cd "c:\documen ts and settings\gatewa y user\desktop\cu stdb"

(If that doesn't work, perhaps there is really a space in
front of "desktop" as you show above...)

Once you're there, you should be able to run the script
directly just by typing its name plus the arguments
required: "setup.py py2exe" (without the quotes). If
you can get that far, you should have the full error
message in a form you can directly cut and paste. If
it adds nothing over what you show above, however, then
I'm at a loss because I can't see how your script could
possibly have generated that error...
Here's the full setup.py script I ran to get the error:

from distutils.core import setup
import py2exe

setup( name = "custdb",
console = ["custdb.py"],
data_files = [ (".", ["custdb.ini ", "custdb.de.rsrc .py"
"custdb.rsrc.py ", "customerdata.c sv"]) ]


This makes no sense to me, given the error message. The error
reports that it fails on "line 1", yet line 1 in the above
is the import statement, and doesn't have name = "custdb" on
it as the error reports.

-Peter
Jul 18 '05 #8
I am using the command prompt. What I realized after reading your
entry, Peter, is that if I use "setup.py py2exe" instead of "start
setup.py py2exe" I can see the error in the same window without it
closing.

I went into the script and double spaced everything in case Notebook
smashed the lines together while I was tweaking the code. After that,
the code resumed packing. Now, however, it seems I'm back where I
started. Running the .Exe returned this error:
Traceback (most recent call last):
File "custdb.py" , line 202, in ?
app = model.Applicati on(CustDbStack)
File "PythonCard\mod el.pyc", line 337, in __init__
File "PythonCard\res ource.pyc", line 48, in getResource
File "PythonCard\res ource.pyc", line 86, in __init__
File "PythonCard\res ource.pyc", line 91, in __init__
File "PythonCard\res ource.pyc", line 91, in __init__
File "PythonCard\res ource.pyc", line 96, in __init__
File "PythonCard\res ource.pyc", line 139, in enforceSpec
File "PythonCard\res ource.pyc", line 30, in loadComponentMo dule
ImportError: cannot import module 'radiogroup
Cannot import module 'radiogroup' was the initial problem I was having.
This is just a more detailed error message.

Jul 18 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
1319
by: Ron Stephens | last post by:
Thanks, Tony, we long term newbies need to stick together ;-)) I just updated a few PythonCard versions of three of the modules from askMerlin, and posted them in a link right below the askMerlin100.py command line program. The PythonCard version of election.py in particular is very easy and illustrates what these programs do. You will have to install wxPython and PythonCard in order to use these, so I provide links for that. I must say,...
2
2094
by: Adrian Smith | last post by:
I am using pythoncard 0.7.2 for windows. I am trying to use the same code for a large number of buttons so started out by using def on_mouseDown(self,event): but then I need to display the button that I pressed but you can only have an absolute component name like: self.component.Button1.label = "clicked"
1
1637
by: Oriana | last post by:
Hi! I was wondering if anyone can give me any light in this...I've written a PythonCard application and I'm trying to create a Windows executable but when I run my setup I get a bunch of errors... My setup looks like this: from distutils.core import setup import py2exe
2
633
by: PipedreamerGrey | last post by:
I'm trying to create a standalone version (.exe) of PythonCard's Custdb sample using Py2Exe version 0.5.0. Everytime I attempt to compile the program, I get an error during compilation. This is the exact code I'm using in the setup file: from distutils.core import setup import py2exe setup( name = "custdb", console = , data_files = ) ]
1
1733
by: Varun Hiremath | last post by:
Hello everybody, I was trying to install pythoncard on my system and I got this error. I am using an unstable version of Debian. Can someone tell me what the error could be. Is it because I am usingUnstable version of Debian I am getting this error or is it because of some other reason. I hope I am mailing this error to the right mailing list if not pls let me know.
1
1978
by: jlocc | last post by:
Hi!! I am working on a school project and I decided to use PythonCard and wxPython for my GUI development. I need a password window that will block unwanted users from the system. I got the pop-up password question to work... def on_openBackground(self, event): result = dialog.textEntryDialog(self,
4
2359
by: Tequila | last post by:
I'm having some trouble starting PythonCard on my PC. I've downloaded and ran python-2.5.msi to install Python on my machine. And PythonCard-0.8.2.win32.exe to install PythonCard. When I try to run the program I get the following error: ====================================== C:\Python25\Lib\site-packages\PythonCard\tools \codeEditor>codeEditor.py Traceback (most recent call last):
8
2063
by: king kikapu | last post by:
Hi to all folks here, i downloaded and "playing" with PythonCard and i just want to share my thoughts so maybe we can discuss a little about it. I was used to wxGlade before and i think PythonCard is even better. I like the separate implementation of GUI and Code that PythonCard provides, i also like the "binding system" so you can bind functions to events and have them executed at runtime. I also like that it does not force you to use...
8
5992
by: Kevin Walzer | last post by:
I'm curious to know what others think of these two frameworks for building wxPython apps. PythonCard has been around longer, but its development seems to have slowed. The last release, 0.8.2, has been out for quite awhile now. Dabo is newer and seems to have gathered a lot of buzz. Anyone try both? What's your preference and why? Is one more robust than the other?
24
2384
by: John Henry | last post by:
For serveral years, I have been looking for a way to migrate away from desktop GUI/client-server programming onto the browser based network computing model of programming. Unfortunately, up until recently, browser based programs are very limited - due to the limitation of HTML itself. Eventhough PythonCard hasn't keep up with the latest widgets in wxpython, the programs so created still works a lot better - until now. If you look at...
0
9512
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10413
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10200
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9021
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7530
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6769
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5551
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3707
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2909
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.