SlideShare a Scribd company logo
Building mobile applications with Python over
                  X-platforms: Part I
                                           Victor Miclovich
                                            Appfrica Labs
                                    victor.miclovich@appfrica.org
                                          September 14, 2009


Abstract                                             converted into numbers. A screen lights up a
                                                     particular coordinate (pixel) and construct an
This paper exists just because it’s much more fun image with more advanced image analysis and
to build something than to actually learn theoretic signal processing (we’ll cover this if we’ve got time).
crap, right? What I try to put off in this article is
just a way to learn Python interactively.              Below is a list of data types we can expect to
We shall be looking at the Python basics and encounter in Python:
Graphical User Interfaces ===> [look out for other
papers on Messaging, video interaction, camera         • integers (int)
APIs, networking, and many other topics.]
                                                       • floating point (float)

                                                                 • strings or text (str)
1     Python basics
                                                             Data types are quite easy to understand; we shall
Programming languages are a way in which we can              discuss ways we can handle this kind of data
talk and make computers do things for us in a log-           throught mathematical processes like addition,
ical (or destructive) way. Like any language (both           subtraction and division.
natural and formal), there’s got to be a grammar
of some kind, doesn’t there? The grammar in this
case shall be known as a syntax .                            Integers integers are numbers that don’t have any
Let’s think about the human language (English,                   fractional parts! This refers to numbers like
French, ...) for a while. We see that there’s a lot              1, 2, 3, 4, ..., etc.
of structure, especially, logical structure. Sentences
are usually phased in particular ways that convey            floats floating point are numbers with fractional
the meaning a speaker intends to give the intended               parts or simply decimal numbers
audience. Isn’t that just so right? I think so. This         Strings Strings are just textual parts of data; they
is what we call having semantics. I want you                     could be alphabetic symbols, numbers or al-
think of this as just meaning of something.                      phanumeric

1.1    Data types
                                                             2      Python for Symbian OS
Data types defines the quality of ”things” a
computer has to interface with. This is includes             The Symbian OS is a mobile operating system.
things like numbers and text.      In essence, a             Many such installations are found in many modern
computer will only interact with numbers (binary             Nokia, Samsung, LG phones. We shall be using
i.e. {0, 1}). Images will in any case, always be             Python to illustrate the design and development


                                                         1
of mobile applications. And while we are at it,     import appuifw
ready yourselves with either a phone emulator or name = appuifw.query(u"Type your
the actual phone                                   name:","text")
                                                   appuifw.note(u"Hello World! Greetings
  We shall use Nokia smartphones as our platform from: "+str(name),"info")
for learning Python in a more interesting way.
Below are instructions on how to install Python in In the first line of code, we import the appuifw
a Nokia (S60) phone:                               module, which handles user interface elements
                                                   such as text input fields and popup notes.
  • Download the Installation files, you will find
     them at SourceForge’s PyS60 project page, In the second line of code, we create a single-field
     http://sourceforge.net/projects/pys60. Get a dialog using the query() function (think of this
     recent and compartable version with your as f (x, y)) which is found inside the appuifw
     phone.                                        module with two parameters: label and type. The
                                                       label is the text we want printed out and type
        – the PyS60 interpreter. (these are usually
                                                       refers to whether the text should appear as a
          signed and have a .sis extension).
                                                       warning popup, info popup, danger popup or some
         – the pythonscript shell (there are version other definitive standard. You may have noticed a
           numbers included, you should be mindful certain character u that we placed before our string
           of that).                                   because the only text our phone understands is
                                                       unicode: a standard way by which textual infor-
    • Download the Python SDK (software develop-
                                                       mation is portrayed and that has internationalized
      ment kit); this is is at http://forum.nokia.com.
                                                       support (this means many natural languages are
    • A phone memory/data card (you will need a supported e.g. Russian, Chinese, Arabic, etc.).
      place to store the programs you run for your
      phone).                                             Other types are supported, not just ”text” type.
                                                       They include ”number”, ”date”, ”time”, ”query”,
    • You will need a computer that runs either Win- and ”code”.
      dows, Linux or Mac OS X.

    • A USB cable or bluetooth to connect with the         Introduction to GUIs
      computer.
                                                   This is the easiest thing you will learn about in
As we move on, you will experience the use of both PyS60 (our code name for Python in mobile). In
your phone and computer; you can search for more this section I demonstrate the following stuff you
tips; I will explain certain features practically. will interface with your phone in any case.

                                                            • note - popup notes
3      PyS60: your first program
This program consists of three lines of code; I will        • query - single-field input dialog
explain what each line does, but first what result
do we want from the program???                              • multi-query - two-field text input dialog

 1. We want it to display a text input field; a place        • popup menu - simple menu
    where the phone’s user can type in stuff!

 2. Display a pop-up note that says somethig like           • selection list - simple list with find pane (like
    ”Greetings from:” followed by whatever the                a search)
    user typed into the input field.
                                                            • multi-selection list - list to make the multiple
The code is:                                                  selections


                                                       2
Example 1:          Text input field and Dialogs, Menus, and Selection
popup note                                                 lists
Native UI (User Interface) elments that PyS60 of-
fers are accessible through a module called: ap-           Single-Field Dialog: query
plication user interface framework which in code           Its syntax   is   query(label,type[, initial
is written appuifw. It is an interface to the S60          value])
UI application framework that takes care of all UI         Code hack:
functionalities on the S60 platform. But first an
introduction to what a module is in Python.                appuifw.query(u"Type a word:    ", "text",
                                                           u"Foo")
Python lesson: module                           This fuction shows a single-file dialog. The dialog
                                                can include some instruction text that is passed as
A module is a file that contains a collection of
                                                a string (by putting the u in front of the string ””)
related functions and data grouped together.
PyS60 comes with a rich set of modules, for
example messaging to handle SMS functionalites, Exercise
camera for taking photos, and appuifw, which The aim of this section is to allow you guys to prac-
provides ready-to-use UI elements.              tice! You can practice with your phone or emulator.

   The modules’ contents are described in detail in         import appuifw
the Python library reference and Python for S60            appuifw.query(u"Type a   word:","text")
API documentation.                                         appuifw.query(u"Type a   number:","number")
To use a module (group of functionalities or abili-        appuifw.query(u"Type a   date:","date")
ties) in your code, it must be imported at the be-         appuifw.query(u"Type a   time:","time")
ginning of the script, for example:                        appuifw.query(u"Type a   password:" "code")
                                                           appuifw.query(u"Do you   like
import appuifw                                             PyS60","query")

And to pick off functionalities from your module,
we write the module name, a dot and then name of
function that we want!

appuifw.query(label,type)

Here, appuifw is the module name and query is
the function you want to use.
You may import many modules using a single im-
port statement:

import appuifw, e32 This imports two modules:
appuifw and e32.

In the first example several sections ago we used the
query() and note() functions... (remember just like
f (x)) and the functions belong to appuifw module.
These functions generate UI elements, dialogs, that
are displayed on the when the PyS60 interpreter
executes the script. They become visible on the
phone screen as soon as the corresponding Python
function is called.

                                                       3

More Related Content

What's hot

Python tutorial
Python tutorialPython tutorial
Python tutorial
kshitij chaurasiya
 
Note on a Mobile Security... or How the Brave Permutation Saved a Naughty Key...
Note on a Mobile Security... or How the Brave Permutation Saved a Naughty Key...Note on a Mobile Security... or How the Brave Permutation Saved a Naughty Key...
Note on a Mobile Security... or How the Brave Permutation Saved a Naughty Key...
Petr Dvorak
 
Python Programming
Python ProgrammingPython Programming
Python Programming
shahid sultan
 
WEB PROGRAMMING UNIT VIII BY BHAVSINGH MALOTH
WEB PROGRAMMING UNIT VIII BY BHAVSINGH MALOTHWEB PROGRAMMING UNIT VIII BY BHAVSINGH MALOTH
WEB PROGRAMMING UNIT VIII BY BHAVSINGH MALOTH
Bhavsingh Maloth
 
Web Programming UNIT VIII notes
Web Programming UNIT VIII notesWeb Programming UNIT VIII notes
Web Programming UNIT VIII notes
Bhavsingh Maloth
 
Chapter 1 - INTRODUCTION TO PYTHON -MAULIK BORSANIYA
Chapter 1 - INTRODUCTION TO PYTHON -MAULIK BORSANIYAChapter 1 - INTRODUCTION TO PYTHON -MAULIK BORSANIYA
Chapter 1 - INTRODUCTION TO PYTHON -MAULIK BORSANIYA
Maulik Borsaniya
 
Chapter 8 getting started with python
Chapter 8 getting started with pythonChapter 8 getting started with python
Chapter 8 getting started with python
Praveen M Jigajinni
 
PYTHON CURRENT TREND APPLICATIONS- AN OVERVIEW
PYTHON CURRENT TREND APPLICATIONS- AN OVERVIEWPYTHON CURRENT TREND APPLICATIONS- AN OVERVIEW
PYTHON CURRENT TREND APPLICATIONS- AN OVERVIEW
EditorIJAERD
 
Python Tutorial
Python TutorialPython Tutorial
Python Tutorial
AkramWaseem
 
Mastering python lesson1
Mastering python lesson1Mastering python lesson1
Mastering python lesson1
Ruth Marvin
 
Python presentation by Monu Sharma
Python presentation by Monu SharmaPython presentation by Monu Sharma
Python presentation by Monu Sharma
Mayank Sharma
 
Python quick guide1
Python quick guide1Python quick guide1
Python quick guide1
Kanchilug
 
1. python programming
1. python programming1. python programming
1. python programming
sreeLekha51
 
C++0x :: Introduction to some amazing features
C++0x :: Introduction to some amazing featuresC++0x :: Introduction to some amazing features
C++0x :: Introduction to some amazing features
Christian Perone
 
Introduction to Python
Introduction to PythonIntroduction to Python
Introduction to Python
DrMohammed Qassim
 
Python - Lesson 1
Python - Lesson 1Python - Lesson 1
Python - Lesson 1
Andrew Frangos
 
Python intro
Python introPython intro
Python intro
Piyush rai
 

What's hot (17)

Python tutorial
Python tutorialPython tutorial
Python tutorial
 
Note on a Mobile Security... or How the Brave Permutation Saved a Naughty Key...
Note on a Mobile Security... or How the Brave Permutation Saved a Naughty Key...Note on a Mobile Security... or How the Brave Permutation Saved a Naughty Key...
Note on a Mobile Security... or How the Brave Permutation Saved a Naughty Key...
 
Python Programming
Python ProgrammingPython Programming
Python Programming
 
WEB PROGRAMMING UNIT VIII BY BHAVSINGH MALOTH
WEB PROGRAMMING UNIT VIII BY BHAVSINGH MALOTHWEB PROGRAMMING UNIT VIII BY BHAVSINGH MALOTH
WEB PROGRAMMING UNIT VIII BY BHAVSINGH MALOTH
 
Web Programming UNIT VIII notes
Web Programming UNIT VIII notesWeb Programming UNIT VIII notes
Web Programming UNIT VIII notes
 
Chapter 1 - INTRODUCTION TO PYTHON -MAULIK BORSANIYA
Chapter 1 - INTRODUCTION TO PYTHON -MAULIK BORSANIYAChapter 1 - INTRODUCTION TO PYTHON -MAULIK BORSANIYA
Chapter 1 - INTRODUCTION TO PYTHON -MAULIK BORSANIYA
 
Chapter 8 getting started with python
Chapter 8 getting started with pythonChapter 8 getting started with python
Chapter 8 getting started with python
 
PYTHON CURRENT TREND APPLICATIONS- AN OVERVIEW
PYTHON CURRENT TREND APPLICATIONS- AN OVERVIEWPYTHON CURRENT TREND APPLICATIONS- AN OVERVIEW
PYTHON CURRENT TREND APPLICATIONS- AN OVERVIEW
 
Python Tutorial
Python TutorialPython Tutorial
Python Tutorial
 
Mastering python lesson1
Mastering python lesson1Mastering python lesson1
Mastering python lesson1
 
Python presentation by Monu Sharma
Python presentation by Monu SharmaPython presentation by Monu Sharma
Python presentation by Monu Sharma
 
Python quick guide1
Python quick guide1Python quick guide1
Python quick guide1
 
1. python programming
1. python programming1. python programming
1. python programming
 
C++0x :: Introduction to some amazing features
C++0x :: Introduction to some amazing featuresC++0x :: Introduction to some amazing features
C++0x :: Introduction to some amazing features
 
Introduction to Python
Introduction to PythonIntroduction to Python
Introduction to Python
 
Python - Lesson 1
Python - Lesson 1Python - Lesson 1
Python - Lesson 1
 
Python intro
Python introPython intro
Python intro
 

Viewers also liked

Mobile communities and innovation
Mobile communities and innovationMobile communities and innovation
Mobile communities and innovation
Victor Miclovich
 
Crowdmapping
CrowdmappingCrowdmapping
Crowdmapping
Victor Miclovich
 
Django Girls Mbale [victor's sessions]
Django Girls Mbale [victor's sessions]Django Girls Mbale [victor's sessions]
Django Girls Mbale [victor's sessions]
Victor Miclovich
 
Okfest
OkfestOkfest
Story spaces pitch
Story spaces pitchStory spaces pitch
Story spaces pitch
Victor Miclovich
 
Android Development Slides
Android Development SlidesAndroid Development Slides
Android Development Slides
Victor Miclovich
 
Google devfest makerere university
Google devfest makerere universityGoogle devfest makerere university
Google devfest makerere university
Victor Miclovich
 

Viewers also liked (7)

Mobile communities and innovation
Mobile communities and innovationMobile communities and innovation
Mobile communities and innovation
 
Crowdmapping
CrowdmappingCrowdmapping
Crowdmapping
 
Django Girls Mbale [victor's sessions]
Django Girls Mbale [victor's sessions]Django Girls Mbale [victor's sessions]
Django Girls Mbale [victor's sessions]
 
Okfest
OkfestOkfest
Okfest
 
Story spaces pitch
Story spaces pitchStory spaces pitch
Story spaces pitch
 
Android Development Slides
Android Development SlidesAndroid Development Slides
Android Development Slides
 
Google devfest makerere university
Google devfest makerere universityGoogle devfest makerere university
Google devfest makerere university
 

Similar to Build Apps

Python Class 1
Python Class 1Python Class 1
Python Class 1
arijit banerjee
 
Introduction to python for Beginners
Introduction to python for Beginners Introduction to python for Beginners
Introduction to python for Beginners
Sujith Kumar
 
Python_Introduction_Good_PPT.pptx
Python_Introduction_Good_PPT.pptxPython_Introduction_Good_PPT.pptx
Python_Introduction_Good_PPT.pptx
lemonchoos
 
Introduction python
Introduction pythonIntroduction python
Introduction python
Jumbo Techno e_Learning
 
Python Tutorial | Python Programming Language
Python Tutorial | Python Programming LanguagePython Tutorial | Python Programming Language
Python Tutorial | Python Programming Language
anaveenkumar4
 
python programming.pptx
python programming.pptxpython programming.pptx
python programming.pptx
Kaviya452563
 
intro.pptx (1).pdf
intro.pptx (1).pdfintro.pptx (1).pdf
intro.pptx (1).pdf
ANIKULSAIKH
 
Socket programming-in-python
Socket programming-in-pythonSocket programming-in-python
Socket programming-in-python
Yuvaraja Ravi
 
Python tutorial for beginners - Tib academy
Python tutorial for beginners - Tib academyPython tutorial for beginners - Tib academy
Python tutorial for beginners - Tib academy
TIB Academy
 
Cmpe202 01 Research
Cmpe202 01 ResearchCmpe202 01 Research
Cmpe202 01 Research
vladimirkorshak
 
Presentation on python
Presentation on pythonPresentation on python
Presentation on python
william john
 
Python basic
Python basicPython basic
Python basic
radhikaadroja
 
Training report 1923-b.e-eee-batchno--intern-54 (1).pdf
Training report 1923-b.e-eee-batchno--intern-54 (1).pdfTraining report 1923-b.e-eee-batchno--intern-54 (1).pdf
Training report 1923-b.e-eee-batchno--intern-54 (1).pdf
YadavHarshKr
 
Python Course.docx
Python Course.docxPython Course.docx
Python Course.docx
AdnanAhmad57885
 
Introduction to python
Introduction to pythonIntroduction to python
Introduction to python
Mohammed Rafi
 
Python Programming Draft PPT.pptx
Python Programming Draft PPT.pptxPython Programming Draft PPT.pptx
Python Programming Draft PPT.pptx
LakshmiNarayanaReddy48
 
Final presentation on python
Final presentation on pythonFinal presentation on python
Final presentation on python
RaginiJain21
 
MODULE 1.pptx
MODULE 1.pptxMODULE 1.pptx
MODULE 1.pptx
KPDDRAVIDIAN
 
session5-Getting stated with Python.pdf
session5-Getting stated with Python.pdfsession5-Getting stated with Python.pdf
session5-Getting stated with Python.pdf
AyushDutta32
 
introduction of python in data science
introduction of python in data scienceintroduction of python in data science
introduction of python in data science
bhavesh lande
 

Similar to Build Apps (20)

Python Class 1
Python Class 1Python Class 1
Python Class 1
 
Introduction to python for Beginners
Introduction to python for Beginners Introduction to python for Beginners
Introduction to python for Beginners
 
Python_Introduction_Good_PPT.pptx
Python_Introduction_Good_PPT.pptxPython_Introduction_Good_PPT.pptx
Python_Introduction_Good_PPT.pptx
 
Introduction python
Introduction pythonIntroduction python
Introduction python
 
Python Tutorial | Python Programming Language
Python Tutorial | Python Programming LanguagePython Tutorial | Python Programming Language
Python Tutorial | Python Programming Language
 
python programming.pptx
python programming.pptxpython programming.pptx
python programming.pptx
 
intro.pptx (1).pdf
intro.pptx (1).pdfintro.pptx (1).pdf
intro.pptx (1).pdf
 
Socket programming-in-python
Socket programming-in-pythonSocket programming-in-python
Socket programming-in-python
 
Python tutorial for beginners - Tib academy
Python tutorial for beginners - Tib academyPython tutorial for beginners - Tib academy
Python tutorial for beginners - Tib academy
 
Cmpe202 01 Research
Cmpe202 01 ResearchCmpe202 01 Research
Cmpe202 01 Research
 
Presentation on python
Presentation on pythonPresentation on python
Presentation on python
 
Python basic
Python basicPython basic
Python basic
 
Training report 1923-b.e-eee-batchno--intern-54 (1).pdf
Training report 1923-b.e-eee-batchno--intern-54 (1).pdfTraining report 1923-b.e-eee-batchno--intern-54 (1).pdf
Training report 1923-b.e-eee-batchno--intern-54 (1).pdf
 
Python Course.docx
Python Course.docxPython Course.docx
Python Course.docx
 
Introduction to python
Introduction to pythonIntroduction to python
Introduction to python
 
Python Programming Draft PPT.pptx
Python Programming Draft PPT.pptxPython Programming Draft PPT.pptx
Python Programming Draft PPT.pptx
 
Final presentation on python
Final presentation on pythonFinal presentation on python
Final presentation on python
 
MODULE 1.pptx
MODULE 1.pptxMODULE 1.pptx
MODULE 1.pptx
 
session5-Getting stated with Python.pdf
session5-Getting stated with Python.pdfsession5-Getting stated with Python.pdf
session5-Getting stated with Python.pdf
 
introduction of python in data science
introduction of python in data scienceintroduction of python in data science
introduction of python in data science
 

Recently uploaded

20240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 202420240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 2024
Matthew Sinclair
 
20240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 202420240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 2024
Matthew Sinclair
 
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
Edge AI and Vision Alliance
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
Safe Software
 
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with SlackLet's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
shyamraj55
 
Columbus Data & Analytics Wednesdays - June 2024
Columbus Data & Analytics Wednesdays - June 2024Columbus Data & Analytics Wednesdays - June 2024
Columbus Data & Analytics Wednesdays - June 2024
Jason Packer
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems S.M.S.A.
 
TrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy SurveyTrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy Survey
TrustArc
 
Unlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdf
Unlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdfUnlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdf
Unlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdf
Malak Abu Hammad
 
Infrastructure Challenges in Scaling RAG with Custom AI models
Infrastructure Challenges in Scaling RAG with Custom AI modelsInfrastructure Challenges in Scaling RAG with Custom AI models
Infrastructure Challenges in Scaling RAG with Custom AI models
Zilliz
 
Mariano G Tinti - Decoding SpaceX
Mariano G Tinti - Decoding SpaceXMariano G Tinti - Decoding SpaceX
Mariano G Tinti - Decoding SpaceX
Mariano Tinti
 
20240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 202420240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 2024
Matthew Sinclair
 
Climate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing DaysClimate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing Days
Kari Kakkonen
 
Serial Arm Control in Real Time Presentation
Serial Arm Control in Real Time PresentationSerial Arm Control in Real Time Presentation
Serial Arm Control in Real Time Presentation
tolgahangng
 
Building Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and MilvusBuilding Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and Milvus
Zilliz
 
UI5 Controls simplified - UI5con2024 presentation
UI5 Controls simplified - UI5con2024 presentationUI5 Controls simplified - UI5con2024 presentation
UI5 Controls simplified - UI5con2024 presentation
Wouter Lemaire
 
Artificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopmentArtificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopment
Octavian Nadolu
 
How to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For FlutterHow to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For Flutter
Daiki Mogmet Ito
 
Things to Consider When Choosing a Website Developer for your Website | FODUU
Things to Consider When Choosing a Website Developer for your Website | FODUUThings to Consider When Choosing a Website Developer for your Website | FODUU
Things to Consider When Choosing a Website Developer for your Website | FODUU
FODUU
 
GraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracyGraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracy
Tomaz Bratanic
 

Recently uploaded (20)

20240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 202420240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 2024
 
20240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 202420240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 2024
 
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
 
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with SlackLet's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
 
Columbus Data & Analytics Wednesdays - June 2024
Columbus Data & Analytics Wednesdays - June 2024Columbus Data & Analytics Wednesdays - June 2024
Columbus Data & Analytics Wednesdays - June 2024
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
 
TrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy SurveyTrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy Survey
 
Unlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdf
Unlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdfUnlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdf
Unlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdf
 
Infrastructure Challenges in Scaling RAG with Custom AI models
Infrastructure Challenges in Scaling RAG with Custom AI modelsInfrastructure Challenges in Scaling RAG with Custom AI models
Infrastructure Challenges in Scaling RAG with Custom AI models
 
Mariano G Tinti - Decoding SpaceX
Mariano G Tinti - Decoding SpaceXMariano G Tinti - Decoding SpaceX
Mariano G Tinti - Decoding SpaceX
 
20240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 202420240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 2024
 
Climate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing DaysClimate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing Days
 
Serial Arm Control in Real Time Presentation
Serial Arm Control in Real Time PresentationSerial Arm Control in Real Time Presentation
Serial Arm Control in Real Time Presentation
 
Building Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and MilvusBuilding Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and Milvus
 
UI5 Controls simplified - UI5con2024 presentation
UI5 Controls simplified - UI5con2024 presentationUI5 Controls simplified - UI5con2024 presentation
UI5 Controls simplified - UI5con2024 presentation
 
Artificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopmentArtificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopment
 
How to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For FlutterHow to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For Flutter
 
Things to Consider When Choosing a Website Developer for your Website | FODUU
Things to Consider When Choosing a Website Developer for your Website | FODUUThings to Consider When Choosing a Website Developer for your Website | FODUU
Things to Consider When Choosing a Website Developer for your Website | FODUU
 
GraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracyGraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracy
 

Build Apps

  • 1. Building mobile applications with Python over X-platforms: Part I Victor Miclovich Appfrica Labs victor.miclovich@appfrica.org September 14, 2009 Abstract converted into numbers. A screen lights up a particular coordinate (pixel) and construct an This paper exists just because it’s much more fun image with more advanced image analysis and to build something than to actually learn theoretic signal processing (we’ll cover this if we’ve got time). crap, right? What I try to put off in this article is just a way to learn Python interactively. Below is a list of data types we can expect to We shall be looking at the Python basics and encounter in Python: Graphical User Interfaces ===> [look out for other papers on Messaging, video interaction, camera • integers (int) APIs, networking, and many other topics.] • floating point (float) • strings or text (str) 1 Python basics Data types are quite easy to understand; we shall Programming languages are a way in which we can discuss ways we can handle this kind of data talk and make computers do things for us in a log- throught mathematical processes like addition, ical (or destructive) way. Like any language (both subtraction and division. natural and formal), there’s got to be a grammar of some kind, doesn’t there? The grammar in this case shall be known as a syntax . Integers integers are numbers that don’t have any Let’s think about the human language (English, fractional parts! This refers to numbers like French, ...) for a while. We see that there’s a lot 1, 2, 3, 4, ..., etc. of structure, especially, logical structure. Sentences are usually phased in particular ways that convey floats floating point are numbers with fractional the meaning a speaker intends to give the intended parts or simply decimal numbers audience. Isn’t that just so right? I think so. This Strings Strings are just textual parts of data; they is what we call having semantics. I want you could be alphabetic symbols, numbers or al- think of this as just meaning of something. phanumeric 1.1 Data types 2 Python for Symbian OS Data types defines the quality of ”things” a computer has to interface with. This is includes The Symbian OS is a mobile operating system. things like numbers and text. In essence, a Many such installations are found in many modern computer will only interact with numbers (binary Nokia, Samsung, LG phones. We shall be using i.e. {0, 1}). Images will in any case, always be Python to illustrate the design and development 1
  • 2. of mobile applications. And while we are at it, import appuifw ready yourselves with either a phone emulator or name = appuifw.query(u"Type your the actual phone name:","text") appuifw.note(u"Hello World! Greetings We shall use Nokia smartphones as our platform from: "+str(name),"info") for learning Python in a more interesting way. Below are instructions on how to install Python in In the first line of code, we import the appuifw a Nokia (S60) phone: module, which handles user interface elements such as text input fields and popup notes. • Download the Installation files, you will find them at SourceForge’s PyS60 project page, In the second line of code, we create a single-field http://sourceforge.net/projects/pys60. Get a dialog using the query() function (think of this recent and compartable version with your as f (x, y)) which is found inside the appuifw phone. module with two parameters: label and type. The label is the text we want printed out and type – the PyS60 interpreter. (these are usually refers to whether the text should appear as a signed and have a .sis extension). warning popup, info popup, danger popup or some – the pythonscript shell (there are version other definitive standard. You may have noticed a numbers included, you should be mindful certain character u that we placed before our string of that). because the only text our phone understands is unicode: a standard way by which textual infor- • Download the Python SDK (software develop- mation is portrayed and that has internationalized ment kit); this is is at http://forum.nokia.com. support (this means many natural languages are • A phone memory/data card (you will need a supported e.g. Russian, Chinese, Arabic, etc.). place to store the programs you run for your phone). Other types are supported, not just ”text” type. They include ”number”, ”date”, ”time”, ”query”, • You will need a computer that runs either Win- and ”code”. dows, Linux or Mac OS X. • A USB cable or bluetooth to connect with the Introduction to GUIs computer. This is the easiest thing you will learn about in As we move on, you will experience the use of both PyS60 (our code name for Python in mobile). In your phone and computer; you can search for more this section I demonstrate the following stuff you tips; I will explain certain features practically. will interface with your phone in any case. • note - popup notes 3 PyS60: your first program This program consists of three lines of code; I will • query - single-field input dialog explain what each line does, but first what result do we want from the program??? • multi-query - two-field text input dialog 1. We want it to display a text input field; a place • popup menu - simple menu where the phone’s user can type in stuff! 2. Display a pop-up note that says somethig like • selection list - simple list with find pane (like ”Greetings from:” followed by whatever the a search) user typed into the input field. • multi-selection list - list to make the multiple The code is: selections 2
  • 3. Example 1: Text input field and Dialogs, Menus, and Selection popup note lists Native UI (User Interface) elments that PyS60 of- fers are accessible through a module called: ap- Single-Field Dialog: query plication user interface framework which in code Its syntax is query(label,type[, initial is written appuifw. It is an interface to the S60 value]) UI application framework that takes care of all UI Code hack: functionalities on the S60 platform. But first an introduction to what a module is in Python. appuifw.query(u"Type a word: ", "text", u"Foo") Python lesson: module This fuction shows a single-file dialog. The dialog can include some instruction text that is passed as A module is a file that contains a collection of a string (by putting the u in front of the string ””) related functions and data grouped together. PyS60 comes with a rich set of modules, for example messaging to handle SMS functionalites, Exercise camera for taking photos, and appuifw, which The aim of this section is to allow you guys to prac- provides ready-to-use UI elements. tice! You can practice with your phone or emulator. The modules’ contents are described in detail in import appuifw the Python library reference and Python for S60 appuifw.query(u"Type a word:","text") API documentation. appuifw.query(u"Type a number:","number") To use a module (group of functionalities or abili- appuifw.query(u"Type a date:","date") ties) in your code, it must be imported at the be- appuifw.query(u"Type a time:","time") ginning of the script, for example: appuifw.query(u"Type a password:" "code") appuifw.query(u"Do you like import appuifw PyS60","query") And to pick off functionalities from your module, we write the module name, a dot and then name of function that we want! appuifw.query(label,type) Here, appuifw is the module name and query is the function you want to use. You may import many modules using a single im- port statement: import appuifw, e32 This imports two modules: appuifw and e32. In the first example several sections ago we used the query() and note() functions... (remember just like f (x)) and the functions belong to appuifw module. These functions generate UI elements, dialogs, that are displayed on the when the PyS60 interpreter executes the script. They become visible on the phone screen as soon as the corresponding Python function is called. 3