Posts
Showing posts from January, 2021
#1 | Introduction and Creating Label | Python for GUI Using Tkinter in Tamil
- Get link
- X
- Other Apps
#5 | Java Beginners Tutorial in Tamil | Understanding the difference between JDK,JRE & JVM in Tamil
- Get link
- X
- Other Apps
#4 | Java Beginners Tutorial in Tamil | Write Your First Hello World Program in Java
- Get link
- X
- Other Apps
#3 | Java Beginners Tutorial in Tamil| Setting Environment Variable in Java Tamil
- Get link
- X
- Other Apps
#2 | JAVA Beginners Tutorial in Tamil | Installing Java and Notepad ++ in Windows
- Get link
- X
- Other Apps
#-1 | Java Beginners tutorial in Tamil | Introduction to JAVA Programming
- Get link
- X
- Other Apps
Introduction to Python Programming | Python Programming tutorial in Tamil
- Get link
- X
- Other Apps
Hi All, நாம் அதிகமான programming languages(c, c++, java)-ஐ கற்றிருக்கலாம் அவை அனைத்தும் நமக்கு கற்றுக்கொள்ள கடினமாகவும் இருந்துருக்கலாம் ஆனால் நாம் இன்று கற்றுக்கொள்ள போகும் programming language மிகவும் எளிமையான ஒன்ற. இதில் உள்ள அனைத்து concepts-ம் நம்மை python கற்றுக்கொள்ள உற்சாகப்படுத்தும் வகையில் அமைந்து உள்ளது. வாருங்கள் அதை கற்றுக்கொள்ளலாம். Introduction to Python: Python என்பது நாம் கற்றுக்கொள்ள மிகவும் எளிதான மற்றும், சக்திவாய்ந்த(Powerful) programming language Object Oriented Programming-கிற்கு இது மிகவும் எளிதான ஆனால் பயனுள்ள கட்டமைப்புகளைக் கொண்டுள்ளது Python has efficient high level data struture இது Interpreted language என்பதால் இதில் நேர்த்தியான syntax மற்றும் dynamic typing உள்ளது இன்றைய சூழலில் python என்பது ஒரு முக்கியமாண language-ஆக scripting மற்றும் rapid application உருவாக்குவதற்கு அதிகமான இடங்களில் உதவுகிறத python interpreter மற்றும் extensive standard library's இலவசமாக source மற்றும் binary வகைகளில் நமக்கு python website-ல் உள்ளத...
Creating Search Bar using python tkinter | Python tkinter projects samples
- Get link
- X
- Other Apps
Hi All, we can easily create a simple search bar using python tkinter here are the example program to create a searc bar from tkinter import * import webbrowser root = Tk() root.title("Search bar") def search(): url = enter_box.get() webbrowser.open(url) label1 = Label(root, text = "Enter URL here", font = ("arial", 15, "bold")) label1.grid(row = 0, column = 0) enter_box = Entry(root, width = 35) enter_box.grid(row = 0, column = 1) btn = Button(root, text = "Search", command = search, bg = "blue", fg = "white", font = ("arial", 14, "bold")) btn.grid(row =1, column = 0) root.mainloop() Video Reference :
Easy way to Share the Files and Folders from PC/Laptop to Mobiles Without Using any softwate and applications
- Get link
- X
- Other Apps

Hi All, we have tried many ways to transfer / share our laptop or pc files to mobiles using third parties applications. in some cases we have faced lot of issues while sharing. but using this simple method we can share all our PC / Laptop files to mobile in a 2 mins. before starting this you have need a basic knowledge in a python if not its does'nt matter just install the python application in your computer and follow the below steps. we used http.server module to perform this operation we should connect our laptop/pc and mobile in a same network else laptop or pc should connect with mobile hotspot Steps: Install the Python Application Open the command prompt where, --bind - your computer / laptop ip address (our httpserver will start running on this ip) --directory - name of directory which we want to share with our mobile now just go to your mobile browser and type yourip:8...
Easy Way to download youtube videos using python application without using any software
- Get link
- X
- Other Apps
Hi All, Youtube videos donwload seivatharku nam evalavo websites/applications use panirupom athil silavaikal namaku ilavasamaka kidaikum silavai paid version kidaikum athila namaku niraya features irukalam athe samayam namaku sila problems kooda varalam but intha post-il nam pakka irukum youtube application naam sonthamaka develop panna pora applicaton atharkana coding and explanation video keela iruku kandipa parunga... #needed packages for developing this application from tkinter import * #this package is used to download the youtube video from pytube import YouTube #this package is used to convert the file size from hurry.filesize import size import os root = Tk() root.geometry("500x500") root.configure(background='white') root.resizable(0,0) root.title("Youtbe Downloader") #function that donwload the video from youtube and store in local computer def Download(): url = YouTube(str(link.get())) video = url.streams.first() video.download() ...