Create GUI App with Tkinter and SQLite - Step by Step Python Tutorial for Beginners

  Рет қаралды 329,057

Python Simplified

Python Simplified

Күн бұрын

Пікірлер: 406
@justiccoolman1816
@justiccoolman1816 2 жыл бұрын
You are very sympathic and you have a talent for clear explanations,, but i think it would be better to teach sql from the beginning like it is meant to be. Sql is an relational database what means you would structure that case differently: Only two table are needed: The first table (name: Recipies) holds an id and name (recipiename) column. The second table (name Ingridients) holds following columns: another id, Recipies_Fk (foreign key, pointer to the id column of the first tabel) and then all the ingridient fields. Thats it. Now the table name of your sql statements are static. But you need now more sql statments: "Select * from Recipies" select a random line in the pyhton code and pass the id to the follwoing statement "Select * from Ingriedients where Recipies_Fk = ;". You also gain there big advantage which is that you are only loading the neccessary ingridients.
@PythonSimplified
@PythonSimplified 2 жыл бұрын
Thank you so much for the AWESOME tip Justic!! 🤩🤩🤩 I must admit - I didn't even think of this type of database architecture! At first, my thought was to store each recipe as a separate record on the same table - but the different number of ingredients was quite the deal breaker 😅 Instead of looking at ingredients and recipe names as different entities altogether - I combined them into one 🙃 Your suggested architecture is a million times better than what I came up with, so thank you so much for sharing it!! 😃😃😃
@japhethjay4880
@japhethjay4880 2 жыл бұрын
Yeah she definitely has to do more with the database design but your tutorials saw amazing. Keep up
@SOUFTVOFFICIEL
@SOUFTVOFFICIEL Жыл бұрын
Thank you for the video ... how can i convert Tkinter desktop App to Web App
@PythonSimplified
@PythonSimplified Жыл бұрын
​@@japhethjay4880 an updated version of the app is now available (based on a relational database of course 😉): github.com/MariyaSha/RandomRecipePicker/tree/main/relationalDB_complete_project_WINDOWS Currently working on a tutorial that converts it into a full-blown software (suitable for all operating systems with Inno Setup) 💪💪💪
@PythonSimplified
@PythonSimplified Жыл бұрын
Folks, an updated relational database version of the app is now available: github.com/MariyaSha/RandomRecipePicker/tree/main/relationalDB_complete_project_WINDOWS Will see you soon in a brand new tutorial that converts it into a full blown software suitable for all operating systems (auto-py-2-exe + Inno Setup) 😁😁😁
@bluesparrow9644
@bluesparrow9644 10 ай бұрын
This lady is a fantastic teacher and dedicated to her work. At one point she is savagely attacked by what appears to be wild cats and she carries on with the class....
@astropgn
@astropgn 3 ай бұрын
Exactly what I wanted! The doc said I need to log my blood pressure daily and I want to create a simple gui that I can input the values and a button to update a database, and also show a plot for the values and stuff. This video will be very useful!
@robynrox
@robynrox 10 күн бұрын
Thank you so much! Not only did you effectively demonstrate the process, you made it fun!
@cryptombt5880
@cryptombt5880 Жыл бұрын
You’re such a fantastic teacher. You make it sooooo easy to understand. You should make a full python course. I’d love that
@doodo7381
@doodo7381 Ай бұрын
When I want to make a gui tkinter project and also with SQLite3 the first youtube channel your channel will the first recommended channel in my mind
@kapibara2440
@kapibara2440 3 ай бұрын
It was an indeed worthy tutorial. 45 minutes spent with a brilliant teacher. Thank you ❤ Greetings from Poland :)
@christopherjones2388
@christopherjones2388 7 ай бұрын
Hi Mariya. I just finished the recipe picker project. I learned a lot. It is great to see how different programmers approach coding. I hope you produce more videos. Take care.
@lionatticus9743
@lionatticus9743 Жыл бұрын
After having almost finished the video, I’m back again to say, amazing and thank you!
@nemeziz_prime
@nemeziz_prime 2 жыл бұрын
Tkinter GUI + Database = Exactly what I was looking for !!! Thank you ❤️
@ingframin
@ingframin Жыл бұрын
This is the best tutorial on GUIs I have ever seen. Good job!
@danielx40
@danielx40 3 ай бұрын
Finally, someone talks like a real person, instead of with those "programmer voice" like in most online tutorials.
@lionatticus9743
@lionatticus9743 Жыл бұрын
Very straightforward and easy to understand. You might say… _Python Simplified_ . Thank you!
@dubzillagk6802
@dubzillagk6802 Жыл бұрын
Love your videos!! fixing to start a tkinter project that uses sqlite this is a great intro. At first I thought you were saying costume fonts. I had to watch till the end to learn what they were lol.
@Selbstzensur
@Selbstzensur 2 жыл бұрын
Very happy to see a woman explaining python stuff, thank you.
@freedtmg16
@freedtmg16 2 жыл бұрын
I know theirs a lot more work that goes into these videos to make them so smooth, but damn are they smooth. Thanks for another great tutorial!
@VanguardOnline2011
@VanguardOnline2011 2 жыл бұрын
I got 9 minutes in, and every minute was clear, practical, and perfectly explained. Subscribed! I will continue watching on weekend when I have more time. You have an excellent teaching style.
@PythonSimplified
@PythonSimplified 2 жыл бұрын
Thank you so much for the lovely comment Ryan! 😃 I hope you like the rest of it too 😉 (once you're back, please checkout the pinned comment up top suggesting how to improve the structure of my database, I really wish I figured it out on my own hahaha 😅)
@MegaJohn144
@MegaJohn144 2 жыл бұрын
This was a great presentation. The way you develop an app is the way most programmers think, I believe. At least it's the way I think. I have been away from Python for a couple of years, so this was a great review for me. I'm writing an app that uses SQLite 3 to query a database with a table of 40,000 lines. The queries are complex, but there is only one table. I usually use PySimpleGui, but there are some widgets that I need that PySimpleGui doesn't have -- like a tree control with checkboxes.
@yeetdeets
@yeetdeets 2 жыл бұрын
At 14:49 you could also just remove the parenthesis on the function. When you assign the function with parenthesis you assign the functions return value, which in this case is None as it doesn't return anything, and the function is executed at assignment. Lambda is mostly useful when you need a non-default sorting key, or when you are only changing one argument. Say for example, you inject a function into a class. You have a function triangle_area(bottom_side: float, angles: Tuple[float, float, float) -> float. But in your class the angles are always 60 degrees and it only takes a function triangle_area(bottom_side:float) -> float, so instead of making a brand new function, you pass it a lambda function Lambda x: triangle_area(x, (60,60,60)).
@robertcarroll5036
@robertcarroll5036 2 жыл бұрын
Wow Maria! That was beautifully done. Nice and clear, explained well and easy to follow. I will be watching a lot more of your videos. Thanks!!
@PythonSimplified
@PythonSimplified 2 жыл бұрын
Thank you so much Robert! Glad you liked it! 😃
@ibisboutto5247
@ibisboutto5247 2 жыл бұрын
What a lovely girl! and a great teacher! I wish I had a teacher like this 10 years ago. Clear explanations! Charming! and reads your mind. When you say: why are you..... She says: and if you are thinking about this: here is the answer hahahaha. amazing! Keep Rocking!
@paulmoss4199
@paulmoss4199 Жыл бұрын
Thank you for this, I followed it all the way through, typing in the code myself and learnt loads. This is just the right kind of pace for me 👍
@PythonSimplified
@PythonSimplified Жыл бұрын
Fantastic!!! 🤩🤩🤩You're absolutely welcome, Paul!! BTW, you can now convert this app into a real program that anyone can download and install on their computer! :) Checkout my recent tutorial from last week (designed specifically for the Random Recipe Picker app ;)): ⭐ Convert GUI App to Real Program - Python to exe to setup wizard kzbin.info/www/bejne/pmTXhH-XqdJ6rLc
@BilalAhmed-my3fk
@BilalAhmed-my3fk 2 жыл бұрын
I liked the way you teach.. I just started learning python, luckily found this video.. thanks for sharing your knowledge/skills.
@johnnyhicks8791
@johnnyhicks8791 2 жыл бұрын
I just been thinking about how to use tkinter. Thank you yt algorithms, and thank you too python simplified! :D
@PythonSimplified
@PythonSimplified 2 жыл бұрын
hahahaha so happy the algorithms got you here Johnny!!! 😊 I also have a bunch of other cool Tkinter tutorials which you might find handy (focusing extraction of text and images from PDF files): ⭐ Create simple GUI app with Tkinter (short 20 minutes video): kzbin.info/www/bejne/n6W1fYWcqrGShrM ⭐ Create advanced GUI app with Tkinter (much longer video, same app though): kzbin.info/www/bejne/r2mzg2eiiaaba6c Good luck with Tkinter! I hope it helps! 😀😀😀
@isojama1
@isojama1 2 жыл бұрын
Again, awesome education video! Learning a lot of stuff which are useful in my tasks. Thanks for your knowledge sharing :)
@daniscanada7155
@daniscanada7155 Жыл бұрын
I love the way you explain and speak even me that i'm not native from English i can understand. Blessings.
@Diegos79
@Diegos79 9 ай бұрын
Wonderful video tutorial. One of the best on the internet! Thanks a lot for your teaching quality. Have a nice day!
@ForTheForsaken
@ForTheForsaken 10 ай бұрын
I keep saying CORSORE to my friends out of context. You have changed the word forever for me.
@robertmoore7177
@robertmoore7177 Жыл бұрын
You have a killer way of explaining stuff. Your concepts have furthered my career so thanks.
@metralios
@metralios Жыл бұрын
This is my first time to watch a video from your channel. And i was amazed by your way of explaining things. I am eager to see your other videos. Keep gooing, really really amazing..
@JorgeEscobarMX
@JorgeEscobarMX 2 жыл бұрын
This is a good tutorial, it explains how to create a window and render a button attached to a function. Database connection is great and simple. There is a lot of hacky code, midway to the end. This tutorial is a mouthful, but now I'm interested on learning Tkinter properly on Udemy. Seems like Tkinter is what Java tried to do back in the 2000's to allow Java developers to make graphical user interfaces using Java.
@yarongolan3560
@yarongolan3560 2 жыл бұрын
Never thought that creating a Tkinter app could be that easy. your tutorial is great. Thank you
@PythonSimplified
@PythonSimplified 2 жыл бұрын
Thank you so much Yaron! 😃 שמחה לשמוע שאהבת! ד"ש מוונקובר! 😉
@alangregoric3640
@alangregoric3640 Жыл бұрын
Excelent tutorial. Keep up the good work. I really enjoyed it and it also got me thinking about it so I have made some additions. I noted that title always start with " " due to space addition while splitting words so I removed that extra space. Second thing I noted is some recipes have quite long titles so I made adjustment to break it down and insert " " after 3 words. This is what I added in "load_frame2" right after call of "pre_process" function: title = title[1:] if title.count(" ")>3: split_title = "" title_words = title.split(" ") i = 1 for w in title_words: split_title += w + " " if i % 3 == 0: split_title = split_title[:-1] split_title += " " i +=1 title = split_title[:-1]
@sunkamraj4684
@sunkamraj4684 Жыл бұрын
Excellent explanation mam. I got some ideas to make GUI application in Python. I also get how to handle sqlite3. Thank you mam. Exactly I need this. Past 3 days i had been searching for this. Thank God, Finally you help me a lot. Thanks a lot mam.
@slobodanmilic1331
@slobodanmilic1331 2 жыл бұрын
You are excellent teacher and expert for Python. Congratulation.
@MarceloNegreiros7
@MarceloNegreiros7 Жыл бұрын
Thank you Mariya. Your teaching is excellent. Thanks for sharing.
@shripop1424
@shripop1424 Ай бұрын
Hi Mariya ! Very nice. Helped me a lot to develop for MySQL application. Thanks.
@idrios
@idrios Жыл бұрын
I'm simultaneously thrilled and furious to learn how easy it is to center the app on the screen with just that root.eval("tk::PlaceWindow . center") method. I've gone to extensive lengths before for worse-looking behavior. This is an incredible tutorial and I learned a lot, thank you for this
@claydoug
@claydoug 2 жыл бұрын
Mariya, you do an awesome job explaining the code and I love watching your channel! Keep up the great work!
@PythonSimplified
@PythonSimplified 2 жыл бұрын
Thank you so much Clay!!! Will do!! 💪💪💪
@alexanderhj4504
@alexanderhj4504 2 жыл бұрын
Your application is too easy to implement, thanks for your contribution.
@igorhejke4523
@igorhejke4523 10 ай бұрын
Hi Mariya. You impressed me with your knowledge and the way you explain the hard programming issues. Thank you.
@gencxhiha9346
@gencxhiha9346 Жыл бұрын
I just started learning Python and I was lucky to come across you videos which made me not only fall in love with you and your way of explaining complex concepts with simple words but fall in love with Python... It's a pleasur to whatch and hear you teach.
@bubayohanna4347
@bubayohanna4347 6 ай бұрын
Your tutorials makes me love python more and more. Thanks keep it up.😍
@knocker6970
@knocker6970 2 жыл бұрын
This was a first video witch i watched) And i really like it! ❤️👍 So i will now watch your tutorials. I started to understand English quite recently😅. It will be great practice for me)
@esiriel
@esiriel 2 жыл бұрын
well done ! that was fun to watch and really good explanations !
@canal4.0
@canal4.0 Жыл бұрын
Você é d + loura ! Linda inteligente e exelente programadora ! Meus sinceros parabéns pelo sucesso linda!
@TheWhitde
@TheWhitde 2 жыл бұрын
love your accent... very similar to my wife who's Russian with very good/excellent English.
@Hubert4515
@Hubert4515 Жыл бұрын
cool video, you just gained a new subscriber ;) not a beginner in python but was always curious on tkinter topic
@AbdulWahid-jl4ut
@AbdulWahid-jl4ut 8 ай бұрын
Subscribed your channel within 5 minutes of your teaching
@daw70772
@daw70772 10 ай бұрын
Hi Maria, yo're amazing and create the best tutorial I've ever seen for beginner! :)
@phamngocongthi5174
@phamngocongthi5174 9 ай бұрын
u really save me in my report for the last subject of semester
@manifestasisanubari
@manifestasisanubari 6 ай бұрын
I was weirded out by the font changing to default Windows font when I added the custom Ubuntu and Shanti fonts. Then, I realized I need to install them first on the machine 🤣. Thank you for your knowledge, teacher!
@raymondmichael4987
@raymondmichael4987 2 жыл бұрын
Hahahahaha 🤣, let me learn to "force it". Thanks lady, I like the energy
@kaisj7
@kaisj7 2 жыл бұрын
Thank You Again for this GUI App video ;)
@tvs3497
@tvs3497 9 ай бұрын
I like this very much. You do a great video. I'm going to try the pancake recipe.
@shoaibasif12
@shoaibasif12 2 жыл бұрын
your videos are extremely helpful for the beginners! I often recommend them to friends who are getting started with python.
@PythonSimplified
@PythonSimplified 2 жыл бұрын
Yeey! Super happy to hear!!! 😀 Thank you so much for the support! 😊
@alanprado6210
@alanprado6210 2 жыл бұрын
I ABSOLUTLY LOVED this Video, it was super clear and you made eveything look so simple and easy Thank you so MUCH for the effort u put into into, Keeping the code zoomed in was the best thing, it helped A LOT Please keep the same video style and im highly looking forward to the next video. i was honestly feeling down recently because i could not understand some tutorials, but your video really boosted me and my confidence to keep learning. Take Care Maryia💗
@PythonSimplified
@PythonSimplified 2 жыл бұрын
Thank you so much for the incredible comment Alan!!! 😀😀😀 I'm super happy to help, will keep it up for sure!! 😉
@devvratgupta5522
@devvratgupta5522 Жыл бұрын
@@PythonSimplified H
@rubialugattimoreira1978
@rubialugattimoreira1978 2 жыл бұрын
Impresed as easy you teach! 👏👏
@simplyrahul
@simplyrahul 10 ай бұрын
You are a great instructor… loved your videos 💫
@user-uq5qw1fk3d
@user-uq5qw1fk3d 2 жыл бұрын
Great tutorial! Subscribed.
@aarushjain3060
@aarushjain3060 10 ай бұрын
Thank you so much for this amazing tutorial!
@Myrslokstok
@Myrslokstok 2 жыл бұрын
Even tough I done some tkinter before this was among the best spent hour this quarter. I will watch this again. She is actyally moore fun and intelligent then she is 🤩, witch is actually amazing. She should expand on this beutifull app, I have to understand how to make an export XML-file. I think this is a very good start tough, but it needs some good looking Entryfields as well.
@nejinii1353
@nejinii1353 2 жыл бұрын
Thanks a lot for the time put in this video. You helped me a lot with your clear explanations and your cheerfull attitude made it so easy to follow you every step. Looking forward to watch some more of your content! Keep up the great work ^^
@PythonSimplified
@PythonSimplified 2 жыл бұрын
Thank you so much for the lovely comment Neji! 😁😁😁
@SOUFTVOFFICIEL
@SOUFTVOFFICIEL Жыл бұрын
Thank you for the video ... how can i convert Tkinter desktop App to Web App
@eizou.inkomika
@eizou.inkomika Жыл бұрын
Thank you for this hudge complet and easy TkInter tuto. Very clear. Maybe my libs are a "little" to old, but : - from PIL import ImageTk raised a import exception. So, i use logo_img = tk.PhotoImage(file="assets/RRecipe_logo.png") and it works. - SQL command "SELECT * FROM sqlite_schema WHERE type='table';" didn't work, So, i use "SELECT * FROM sqlite_master WHERE type='table';" If it could be usefull to someone ... Put root.eval("tk::PlaceWindow . center") just after load_frame1() seems to be nice too ;)
@nasraldeneisa4172
@nasraldeneisa4172 Жыл бұрын
😅You are so amazing, thank you, good luck
@user-wo2hd7ig8e
@user-wo2hd7ig8e 2 жыл бұрын
Hi Mariya! Thanks for such a great video!
@AirNorthOne
@AirNorthOne 2 жыл бұрын
omg, havent use tkinter for over 5 yrs now. I remember I was also able to package the whole tkinter project into an exe
@edgargiobanny
@edgargiobanny Жыл бұрын
Good practices greetings from Mexico, your videos are very good....!!!
@dironin2363
@dironin2363 2 жыл бұрын
Great content! C'mon, sis, get 100k ❤
@drgatsis
@drgatsis 2 жыл бұрын
Thanks for the intro! Just finished coding a database app (with pandas). :) Dr J
@TheQasim222
@TheQasim222 Жыл бұрын
Thanks my dear i am just say i love you for your support thanks again
@danielschwan3298
@danielschwan3298 2 жыл бұрын
I'm used to learn new Python things from Indian Developers, which I hardly understand, so it's very refreshing to see and listen to you. Also the Cat accident is very relatable, since my cat alwys do such things
@stephenehler262
@stephenehler262 3 ай бұрын
Best Pancake recipe ever!
@josecintron85
@josecintron85 2 жыл бұрын
Great video... One thing I noticed is that when Frame2 was bigger than Frame1 when we returned to Frame1, Frame1's size changed to that of Frame2 rather than staying at the original size. Any way to fix this? Example at 45:13
@Makingdifference100
@Makingdifference100 Жыл бұрын
I love the ton of your voice.
@ReactNinja
@ReactNinja Жыл бұрын
It was a phenomenal laugh when you were destroying frames. 😂😂
@juankilian8531
@juankilian8531 2 жыл бұрын
Thank you for all the tutorials and videos. Im new to python and looking at doing a mobile app with kivy. Any chance you have a video or can make one with kivy linking to mysql (login and pulling data from a table etc.)
@alanprado6210
@alanprado6210 2 жыл бұрын
Just a question, in which element do i add the padding to the ingredients list? just like like in the picture
@mechasepehr8545
@mechasepehr8545 10 ай бұрын
Keep going this is amazing
@victoryusmd
@victoryusmd Жыл бұрын
Thanks for tutrial ! I think OOP is needed here ...
@rodriguescaio
@rodriguescaio Жыл бұрын
In love with this
@sammflynn6751
@sammflynn6751 Жыл бұрын
you give of such positive vibe damn
@viktorpinneker763
@viktorpinneker763 2 жыл бұрын
Thank you very much for this tutorial 👍
@mausmi2965
@mausmi2965 2 жыл бұрын
Bigggg FAN 🔥
@jeuxmathinfo9578
@jeuxmathinfo9578 Жыл бұрын
You are a fantastic teacher !!! 🏆🏆🏆🏅🏅🏅🙏🤗
@chimkens
@chimkens 2 ай бұрын
thank you! When I set the button colors, the application will not show the correct hex color. Why is that?
@dhawaljoshi
@dhawaljoshi 2 жыл бұрын
awesome tutorial. One feedback, we should make the ingredients scrollable as when a large list pops up the button is nowhere to be seen. apart from that it looks complete.
@aakashgupta7781
@aakashgupta7781 Жыл бұрын
Hello, I am looking to build an app (I have basic knowledge of python), the app will show a search bar with drop down list, once I clicked it will display some columns with pre-entered values. The data base will be maintained in a csv file. Can you please recommend the plug in I will need to execute the above project? Thank you in advance.
@2JSinc
@2JSinc Жыл бұрын
Hi Mariya, I'm new to python and to your channel, just watched a few of your videos, and I must say you are one the few channels teaching python that is easy to understand and follow, thank you. Would it be possible for you to create a tutorial about an app that I can use a base app that I can build upon? The app that I would like to build is an app for recording data/information that I will get from a scanned pdf document, so the app would have two panes/grids one for encoding the Data Record and One for viewing the Pdf File, I need to somehow mark the pdf file if it was encoded already and save the data to a database or excel or csv file, can you demonstrate how to accomplish this, maybe a simple contact information app that will get the info from a scanned pdf file of a contact form just to demo the concept. Thanks in advance...
@jimross8150
@jimross8150 7 ай бұрын
Great video I learned alot
@miroslavburianek
@miroslavburianek 2 жыл бұрын
Love this tutorial
@user-rl2kd2ls9n
@user-rl2kd2ls9n Жыл бұрын
Thank you for your tutorials they're very helpful
@RojaySuccessful
@RojaySuccessful 10 ай бұрын
I had an issue fetching the database at 25:17 using cursor.execute("SELECT * FROM sqlite_schema WHERE type='table';")..... got it working using cursor.execute("SELECT * FROM sqlite_master WHERE type='table';") Great job by the way :)
@NotFunnyDad
@NotFunnyDad 8 ай бұрын
This also was a resolution for me.
@CesarPeron
@CesarPeron 2 жыл бұрын
2:06 your desk, is mine too 😹😹😹😻
@christopheanfry2425
@christopheanfry2425 Жыл бұрын
Excellent content thank you so much for your work. 🙏
@jameswilliams-nw3lq
@jameswilliams-nw3lq 10 ай бұрын
Thank you very much!
@TheRealHouji
@TheRealHouji 2 жыл бұрын
I think I'm in love with Python because of this
@mhtmoukhtar6958
@mhtmoukhtar6958 10 ай бұрын
Hello, Maria this is an awesome explanations,, well done Maria 🥰🥰🥰
@rafathrafeek3264
@rafathrafeek3264 4 ай бұрын
thank you for the video and the best explanation.
@PythonSimplified
@PythonSimplified 4 ай бұрын
Thank you for the lovely comment! :)
@LifterAndy
@LifterAndy Жыл бұрын
Мария ты лучшая! Супер урок!
Django QuickStart Web Application for Beginners
23:11
Python Simplified
Рет қаралды 84 М.
SQLite Backend for Beginners - Create Quick Databases with Python and SQL
13:32
ПРОВЕРИЛ АРБУЗЫ #shorts
00:34
Паша Осадчий
Рет қаралды 6 МЛН
마시멜로우로 체감되는 요즘 물가
00:20
진영민yeongmin
Рет қаралды 31 МЛН
DAD LEFT HIS OLD SOCKS ON THE COUCH…😱😂
00:24
JULI_PROETO
Рет қаралды 13 МЛН
Convert GUI App to Real Program -  Python to exe to setup wizard
23:27
Python Simplified
Рет қаралды 499 М.
If __name__ == "__main__" for Python Developers
8:47
Python Simplified
Рет қаралды 388 М.
God-Tier Developer Roadmap
16:42
Fireship
Рет қаралды 7 МЛН
Modern Graphical User Interfaces in Python
11:12
NeuralNine
Рет қаралды 1,5 МЛН
3 PYTHON AUTOMATION PROJECTS FOR BEGINNERS
17:00
Internet Made Coder
Рет қаралды 1,6 МЛН
Make Tkinter Look 10x Better in 5 Minutes (CustomTkinter)
4:40
TurbineThree
Рет қаралды 256 М.
Using tkinter with classes
28:23
Atlas
Рет қаралды 56 М.
Телефон-електрошокер
0:43
RICARDO 2.0
Рет қаралды 1,3 МЛН
Cheapest gaming phone? 🤭 #miniphone #smartphone #iphone #fy
0:19
Pockify™
Рет қаралды 4,1 МЛН
Я УКРАЛ ТЕЛЕФОН В МИЛАНЕ
9:18
Игорь Линк
Рет қаралды 127 М.
S24 Ultra and IPhone 14 Pro Max telephoto shooting comparison #shorts
0:15
Photographer Army
Рет қаралды 8 МЛН