GUI PROGRAMMING USING TKINTER to celebrate Translation Week

Slides:



Advertisements
Similar presentations
Topics in Python Blackjack & TKinter
Advertisements

Raspberry Pi The singing jelly baby.
Noadswood Science,  To know how to use Python to produce windows and colours along with specified co-ordinates Sunday, April 12, 2015.
ACORDE FOR TPC TEST Status report. Top Modules Bottom Modules.
Embedded Programming and Robotics Lesson 19 Raspberry Pi Programming in C 1.
Python Introduction.
Escape A sticky man adventure using TKINTER python module By: Channing Burgess.
Raspberry Pi Training Truman College Goals of our Training Today Unbox and boot up the Raspberry Pi (RPi) Learn how to access the desktop graphical.
SINGLE BOARD COMPUTERS -KEVIN JOSE. WHY DO WE USE THEM? Good performance at low price GPIO capability to interact with the outside world Small form factor,
Computer Science 111 Fundamentals of Programming I User Interfaces Introduction to GUI programming.
GETTING STARTED WITH PYTHON Part I of Minecraft: Pi Edition October 17, 2015.
SAD and Python with EPICS at IHEP,Beijing, Noboru Yamamoto KEK, JAPAN.
Vehicle Collision Avoidance System
Tcl/Tk package in R Yichen Qin
Guide to Programming with Python Chapter Ten GUI Development: The Mad Lib Program.
Computing Science 1P Lecture 18: Friday 2 nd March Simon Gay Department of Computing Science University of Glasgow 2006/07.
Mid-term Progress Report Isaac Rieksts My web site
FLUKA GUI Status FLUKA Meeting CERN, 10/7/2006.
PC204 Lecture 9 Conrad Huang Genentech Hall, N453A x
PYTHON GUI PROGRAMMING
Python Programming Graphical User Interfaces Saad Bani Mohammad Department of Computer Science Al al-Bayt University 1 st 2011/2012.
Computing Science 1P Lecture 17: Friday 23 rd February Simon Gay Department of Computing Science University of Glasgow 2006/07.
How the Session Works Outline Practical on arrival Talk 1 Reflect on practical Clarify concepts Practical exercises at your own pace Talk 2: Further concepts.
Graphical User Interface You will be used to using programs that have a graphical user interface (GUI). So far you have been writing programs that have.
OCR GCSE Computing © Hodder Education 2013 Slide 1 OCR GCSE Computing Python programming 1: Introduction.
Copyright © 2015 Pearson Education, Inc. Publishing as Pearson Addison-Wesley C H A P T E R 13 GUI Programming.
Lesson 3 - The Entry Box.. Last week We produced a Tkinter window with a label and a button Now we are going to create a new program that creates a Button.
Graphics Programming with Python. Many choices Python offers us several library choices:  Tkinter  WxPython  PyQt  PyGTK  Jython  And others...
Jericho CSCI 7818 September 5, 2001 Carissa Mills.
Creating visual interfaces in python
Servo Motors Precise angular motion. Servo Motors Raspberry Pi Webcam Interfaces Keeping track of things.
Guide to Programming with Python
COMPSA Exam Prep Session by Paul Allison On: April 8th from 1:30-3:00 Location TBA Winter 2016CISC101 - Prof. McLeod1.
PROGRAMMING USING PYTHON LANGUAGE ASSIGNMENT 1. INSTALLATION OF RASPBERRY NOOB First prepare the SD card provided in the kit by loading an Operating System.
An introduction to the Raspberry Pi. What is a Raspberry Pi?  University of Cambridge’s Computer Laboratory  Decline in skill level  Designed for education.
COMPSA Exam Prep Session On: April 8th from 1:30-3:00 Location TBA Winter 2016CISC101 - Prof. McLeod1.
NASA Robotic Mining Competition. Controllers Arduino Mega - controls motors and sensors Raspberry Pi - Linux based computer that has the autonomous.
RaspberryPi.
Grado en Ingeniería de Tecnologías y Servicios de Telecomunicación
Prototyping Home Automation Concepts
Embedded Software Development with Python and the Raspberry Pi
Topics Graphical User Interfaces Using the tkinter Module
Graphical User Interfaces (GUIs)
Raspberry Pi / Linux Workshop
RASPBERRY PI WORKSHOP.
Event Driven Programming Dick Steflik
HTX.
Graphical User Interfaces (GUIs)
Developing applications using Chromium
CISC101 Reminders Last lecture!  Grading of Quiz 4 underway.
GUI Using Python.
CEIS 100 Innovative Education- -snaptutorial.com
Tkinter Python User Interface
This Week: Tkinter for GUI Interfaces Some examples
Tkinter GUIs Computer Science and Software Engineering
پروتكل آموزش سلامت به مددجو
Artificial Intelligence app
Building Graphical User Interface with Swing a short introduction
What is a Raspberry Pi? The Raspberry Pi is a low cost, credit-card sized computer that plugs into a computer monitor or TV, and uses a standard keyboard.
DOMOTICA MAY MONTH Sander Claassen John Heesterbeek Ad van Berlo
Project 3: An Introduction to File Systems
Read paper on Raspberry Bluetooth Interface. Progress in Python
Raspberry Pi – VNC Server Connection
Computer Science 111 Fundamentals of Programming I User Interfaces
Topics Graphical User Interfaces Using the tkinter Module
FEniCS = Finite Element - ni - Computational Software
LING 408/508: Computational Techniques for Linguists
Tareq Khan, Ph.D. Assistant Professor,
FEATURES OF PYTHON.
Robot and Crickit HAT © Copyright 2019 by Dr. Elizabeth I. Horvath and Dr. Eva A. Horvath 1.
Presentation transcript:

GUI PROGRAMMING USING TKINTER to celebrate Translation Week By: Aula Jazmati

Using Labels and Entry Widgets in Python Tkinter to celebrate Raspberry Pi Translation Week The last week in September is the International Interpreters and Translators Week -

GUI PROGRAMMING USING TKINTER The primary GUI toolkit we will be using is Tk, Python’s default GUI. We’ll access Tk from its Python interface called Tkinter (short for “Tk interface”). Tk is not the latest and greatest, nor does it have the most robust set of GUI building blocks, but it is fairly simple to use, and with it, you can build GUIs that run on most platforms. Introduction This object is created by the Tk class in Tkinter and is instantiated as follows: for python 2 sudo apt-get install python-tk for python 3 sudo apt-get install python3-tk >>> import tkinter >>> top = tkinter.Tk() you just need to use the following to install the tkinter for python3: sudo apt-get install python3-tk

1

Testing 1:

Testing 2:

Testing 3:

Raspberry Pi Translation Week 2

Raspberry pi Testing :

Raspberry pi Testing : My code : https://gist.github.com/aula9/305dff3f9033e4a237b47232954c8875

Reference: https://www.python-course.eu/tkinter_entry_widgets.php https://www.python-course.eu/tkinter_labels.php https://www.sunfounder.com/learn/sensor-kit-v2-0-for-raspberry-pi-b-plus/lesson-10-buzzer-module-sensor-kit-v2-0-for-b-plus.html https://github.com/gumslone/raspi_buzzer_player/blob/master/buzzer_player.py https://www.14core.com/wiring-the-passive-active-buzzer-with-raspberry-pi/ https://gist.github.com/mandyRae/459ae289cdfcf6d98a6b My Codes: https://gist.github.com/aula9/2a0f60bffde758371f3958ac0a20eff3 https://gist.github.com/aula9/5789efd4fa4438f3168c33650852baac https://gist.github.com/aula9/305dff3f9033e4a237b47232954c8875

Raspberry Pi Translation ((Translation week celebrations)) https://projects.raspberrypi.org/en Many Thanks to : Raspberry Pi Foundation Translation Community Manager: Nina Szymor And all the team https://www.raspberrypi.org/translate/

Thank you #RPiTranslate