Namespaces
Variants
Actions
(Redirected from How to execute a script)

Archived:How to execute a PySymbian script

Jump to: navigation, search
Archived.png
Aquivado: Este artigo foi arquivado, pois o conteúdo não é mais considerado relevante para se criar soluções comerciais atuais. Se você achar que este artigo ainda é importante, inclua o template {{ForArchiveReview|escreva a sua justificativa}}.

All PySymbian articles have been archived. PySymbian is no longer maintained by Nokia and is not guaranteed to work on more recent Symbian devices. It is not possible to submit apps to Nokia Store.


Article Metadata

Tested with
Devices(s): Nokia N95, Nokia E90

Compatibility
Platform(s): S60 1st Edition, S60 2nd Edition, S60 3rd Edition

Article
Keywords: execfile
Created: bogdan.galiceanu (20 Feb 2008)
Last edited: hamishwillee (31 May 2013)

Contents

Overview

This snippet shows how to execute a script in Python.

Source code

file_path = "C:\\python\\ball.py"
#The path of the script to be executed
 
#Execute the script
execfile(file_path)

Postconditions

The script is executed.

Additional information

In some cases there may be a NameError error in the executed script regarding variables not being defined (for example, if execfile(file_path) is called inside a function). To overcome this, execfile(file_path, {}) should be used, where the dictionary is the global namespace.

This page was last modified on 31 May 2013, at 04:08.
133 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved