background top icon
background center wave icon
background filled rhombus icon
background two lines icon
background stroke rhombus icon

Download "Python как сделать красивую программу под ПК за 10 минут?"

input logo icon
Video tags
|

Video tags

python
android
windows
mac
разработка программ
уроки python
пайтон
как выучить python
для новичков
как создать программу на python
по на python
python по
создание программы python
gui python
интерфейс программы python
хауди хо
Subtitles
|

Subtitles

subtitles menu arrow
  • ruRussian
Download
00:00:03
can quickly create a program
00:00:05
in python with a beautiful interface, and
00:00:09
one that will work
00:00:11
simultaneously on windows mac and linux,
00:00:14
and we are talking about web interfaces, that is, for
00:00:17
example, the same discord atom or visual
00:00:20
studio caught these are programs for which
00:00:22
very beautiful and modern interface,
00:00:24
so why not do the same and
00:00:28
program the logic on our favorite go,
00:00:30
but for example, let's create a
00:00:33
simple but beautiful program to
00:00:35
display the weather in the specified city,
00:00:38
something similar we have already programmed for
00:00:40
go in more than one of the lessons It’s just that
00:00:42
this program was a console program back then, so
00:00:45
I think making an interface for it
00:00:47
would come in handy, but
00:00:49
we’ll start by installing the library and
00:00:52
or we need it to link Python
00:00:55
and display the web interface, but there’s nothing
00:00:57
complicated here, you’ll see it for yourself now
00:01:00
after this we need to create a
00:01:03
main file in which we will
00:01:05
write all our code and next to it we need to
00:01:08
create a folder in and in it the main file.
00:01:11
html already in it we will write the interface
00:01:15
of our program, and to complete the picture,
00:01:17
let’s also immediately find an icon for
00:01:20
our program, for this we can
00:01:23
go to the same site
00:01:24
aikyn archive dot com and personally, I did a little
00:01:27
searching and found this cool
00:01:29
icon so downloadable format png and
00:01:33
save it to our folder called
00:01:36
five
00:01:37
ay can, and then open the main
00:01:40
page file and write just three lines
00:01:42
of code here, namely, import the target, then
00:01:45
call the init method and in it indicate
00:01:48
the name of our folder where the program interface is located,
00:01:50
and this is v.b .
00:01:52
and in the start method we launch the
00:01:54
target itself accordingly and indicate here the
00:01:56
clock file that it will open and this is
00:01:58
main . xml and then we can also specify the
00:02:01
window size of our application, for now I
00:02:04
’ll leave it at 700 by 700, now open
00:02:08
the main file.
00:02:09
html and create here the basic
00:02:12
manual of any html document, unless
00:02:15
we connect here the script and rds, which we do
00:02:18
n’t actually have in the folder, but we
00:02:20
still need to connect it to work,
00:02:22
respectively, our libraries and of
00:02:25
course we register our icon here and
00:02:28
now we’ll run the resulting code and
00:02:31
let's see what happened, as you can see, everything
00:02:34
works, our program launched in
00:02:36
the window and it even displays the icon
00:02:39
that we set, in general it’s not bad,
00:02:42
but this won’t get you far, now it’s time to
00:02:45
write the code for our application to
00:02:47
display the weather, and you know, someone likes to
00:02:50
write code first and then
00:02:52
to make an interface for it, someone on the contrary here is
00:02:55
already a matter of habit, but for clarity,
00:02:57
let’s immediately
00:03:00
create a simple but beautiful
00:03:03
interface in html and css, while on the background I will put
00:03:06
some gradients and also add a
00:03:09
field for entering the country and city in which
00:03:11
you need find out the weather, but they will also
00:03:13
display the information about the weather in the
00:03:16
specified city, actually nothing
00:03:19
complicated, I’m doing it all in a
00:03:21
simple and fast way just to show
00:03:24
you how it all works, but there’s nothing
00:03:27
stopping you, for example, from getting tired and making a
00:03:29
super cool futuristic interface with a
00:03:32
bunch of animation and everything like that, as I already
00:03:35
said in the interface and this is the coolest thing
00:03:38
that is now available in the tai chi language
00:03:41
TML and CSS, you can create any type of
00:03:44
program that comes to your
00:03:46
mind, everything is limited only by your
00:03:48
imagination,
00:03:50
and in general, I succeeded something like
00:03:53
this, of course, is simple, but nevertheless,
00:03:56
let’s not forget that I did it in
00:03:58
a few minutes and let’s
00:04:00
move on directly to receiving and
00:04:03
displaying the weather. For this, as usual,
00:04:06
we need to first install the Pai
00:04:08
Aries module and then in the code, let’s write a
00:04:12
small test for to check if
00:04:14
ours works and the trick here is by the way you will need to
00:04:17
insert your api key which you can
00:04:20
get registered
00:04:22
on the openweathermap website. lesson, but in
00:04:25
general, I’ve already shown how to work with a volume junction,
00:04:30
and even more than once, so I do
00:04:32
n’t see much point in dwelling here,
00:04:34
especially since I’m just rewriting the
00:04:37
code now from the official documentation of this
00:04:39
library, but what
00:04:40
if you’re still learning python
00:04:43
or want to get started I recommend
00:04:45
paying attention to the free intensive
00:04:48
python for beginners,
00:04:50
here you will get acquainted with new languages,
00:04:53
you will write your first program and even a
00:04:56
game, and they will teach you everything from scratch, all you
00:04:59
need is a desire to learn, and the
00:05:02
lessons themselves will be held in an online format and
00:05:05
this is actually very conveniently once again,
00:05:08
the intensive is free and very
00:05:11
well suited for beginners or those who
00:05:13
just want to start learning python, well,
00:05:16
I put a link to registration in the
00:05:19
description under the video, go and
00:05:21
sign up ok as you can see everything
00:05:25
works in New York at the moment 28
00:05:28
degrees Celsius between other than that, it’s
00:05:31
quite warm and since we already have a
00:05:33
ready-made
00:05:34
interface and the code for getting the weather also
00:05:37
works, all that’s left is to simply connect it with each
00:05:39
other and this is done with the
00:05:42
help of a small Javascript code from
00:05:45
which we will call
00:05:47
Python methods, see for yourself how easy it is to
00:05:50
start with in Python cotta we create a function to
00:05:53
which we add a decorator for its l x pauses,
00:05:56
we can call this function from
00:05:58
javascript code and it will simply return the
00:06:01
current weather in the specified location, then
00:06:04
we go to our r-code and simply
00:06:06
create a script tag at the bottom in which
00:06:09
we write the necessary code, in particular here we
00:06:11
need write an asynchronous function
00:06:14
inside which we will access
00:06:16
python code and in it I will write only three
00:06:18
lines of code, namely getting the city
00:06:21
from the input field, then calling the
00:06:24
get function you do is paid in a and ultimately
00:06:26
displaying what this function will return
00:06:29
in our program
00:06:30
well, for convenience, I also connected
00:06:33
very jake, although you don’t have to do this or
00:06:36
even use some kind of react,
00:06:38
I’m writing the code as simply as possible,
00:06:41
now the main thing for me is to show how it generally
00:06:43
works without bothering with any
00:06:45
little things, well, let’s now launch
00:06:48
our program and check what we
00:06:50
got, as you can see, everything works
00:06:54
about our program, there is a full-fledged
00:06:56
beautiful and modern interface,
00:06:59
and we just wrote all the code in
00:07:01
literally five to ten minutes, but if
00:07:04
you sit a little more, then, as I already said,
00:07:07
you can make it really cool and
00:07:09
beautiful Prague, which can then be
00:07:11
packaged using the installer
00:07:14
and feel free to send to friends. By the way, about the
00:07:17
installer there was also a lesson on the channel,
00:07:20
otherwise I’m waiting for your royal like and
00:07:23
of course subscribe to the channel and
00:07:25
turn on the notification bell so
00:07:28
my episodes will appear at least sometimes good
00:07:30
luck tuba on your home page
00:07:36
[music]
00:07:43
[music]

Description:

Лёгкий способ делать ПК программы на Python с красивым интерфейсом. Работающие одновременно на Windows, Mac и Linux! 💗 Бесплатный интенсив "Python для начинающих" - https://gb.ru/courses/112 === 🔵 Наш TELEGRAM: https://t.me/howdyho_official Наш ВК: https://www.vk.com/howdyho_net Сотрудничество https://vk.com/topic-84392011_33285530 💗 Музыка предоставлена YouTube Audio Library.

Preparing download options

popular icon
Popular
hd icon
HD video
audio icon
Only sound
total icon
All
* — If the video is playing in a new tab, go to it, then right-click on the video and select "Save video as..."
** — Link intended for online playback in specialized players

Questions about downloading video

mobile menu iconHow can I download "Python как сделать красивую программу под ПК за 10 минут?" video?mobile menu icon

  • http://unidownloader.com/ website is the best way to download a video or a separate audio track if you want to do without installing programs and extensions.

  • The UDL Helper extension is a convenient button that is seamlessly integrated into YouTube, Instagram and OK.ru sites for fast content download.

  • UDL Client program (for Windows) is the most powerful solution that supports more than 900 websites, social networks and video hosting sites, as well as any video quality that is available in the source.

  • UDL Lite is a really convenient way to access a website from your mobile device. With its help, you can easily download videos directly to your smartphone.

mobile menu iconWhich format of "Python как сделать красивую программу под ПК за 10 минут?" video should I choose?mobile menu icon

  • The best quality formats are FullHD (1080p), 2K (1440p), 4K (2160p) and 8K (4320p). The higher the resolution of your screen, the higher the video quality should be. However, there are other factors to consider: download speed, amount of free space, and device performance during playback.

mobile menu iconWhy does my computer freeze when loading a "Python как сделать красивую программу под ПК за 10 минут?" video?mobile menu icon

  • The browser/computer should not freeze completely! If this happens, please report it with a link to the video. Sometimes videos cannot be downloaded directly in a suitable format, so we have added the ability to convert the file to the desired format. In some cases, this process may actively use computer resources.

mobile menu iconHow can I download "Python как сделать красивую программу под ПК за 10 минут?" video to my phone?mobile menu icon

  • You can download a video to your smartphone using the website or the PWA application UDL Lite. It is also possible to send a download link via QR code using the UDL Helper extension.

mobile menu iconHow can I download an audio track (music) to MP3 "Python как сделать красивую программу под ПК за 10 минут?"?mobile menu icon

  • The most convenient way is to use the UDL Client program, which supports converting video to MP3 format. In some cases, MP3 can also be downloaded through the UDL Helper extension.

mobile menu iconHow can I save a frame from a video "Python как сделать красивую программу под ПК за 10 минут?"?mobile menu icon

  • This feature is available in the UDL Helper extension. Make sure that "Show the video snapshot button" is checked in the settings. A camera icon should appear in the lower right corner of the player to the left of the "Settings" icon. When you click on it, the current frame from the video will be saved to your computer in JPEG format.

mobile menu iconWhat's the price of all this stuff?mobile menu icon

  • It costs nothing. Our services are absolutely free for all users. There are no PRO subscriptions, no restrictions on the number or maximum length of downloaded videos.