22:09 this vid is over 27 months old, is there any update video to this?
@yash11523 ай бұрын
21:12 _" firefox & mozilla gave up on web-apps, so it's impossible there "_ yeah, that's really sad. i ditched chrome, then ditched vivaldi. am using lw full time, and i miss the PWAs.
@yash11523 ай бұрын
11:40 haha, we got footer inside the body lol 😉
@yash11523 ай бұрын
7:52 "Add a flask run server" configuration 30:59 _" things like vue.js & reach front ends wrapping up some python code "_ haha
@yash11523 ай бұрын
7:04 my question is: if my logic doesn't require fetching any data from the server, can i make it so that all the logic processing happens only client side but written in python? 14:23 it seems yes, ... i.e. it seems that here the server side is only used to fetch those data... the processing is still happening client side. which is what i am looking for :)
@mikeckennedy3 ай бұрын
Yes, you can get the data only on the client. IIRC the Python backend is just to have something to call as an example API and keep the API key save there.
@yash11523 ай бұрын
@@mikeckennedy got it. thanks for the info 😃
@MrEstebanEscudero4 ай бұрын
great video
@Epic-Poetry6 ай бұрын
Love it, thanks
@mikeckennedy6 ай бұрын
Thanks, glad you found it useful.
@Cam3a7 ай бұрын
Fantastic
@alexdeem95218 ай бұрын
I have a disability. So I work one handed. My stream deck is a must have replacement for all those 2 handed shortcuts. Levelled up my GIT game ten fold ❤ so funny watching people when I demo something. They cant understand how quick my command inputs are 😂
@vectoralphaSec8 ай бұрын
Do you happen to know when the 2023 Django developer results will be posted? Im eager to see those.
@Lugoxc10 ай бұрын
Thanks for the tutorial. is this possible with nicegui?
@blazkowicz66610 ай бұрын
Is this valid for python 3.11+?
@karelkral681211 ай бұрын
When comparing Py and C# side by side, the main difference are missing block delimiters in Py 😊
@sammyay-man275411 ай бұрын
I don't understand. it didn't work for at all its like html didn't recognize it ....help me.
@evepredict Жыл бұрын
Can you also add code snippets ?
@konstantinrebrov6759 ай бұрын
Use Autohotkey to trigger by Streamdeck and add code snippets.
@aftalavera Жыл бұрын
Hey Mike eating roaches yet?
@aftalavera Жыл бұрын
This guy should do a cameo in Portlandia! 😂😂😂😂😂
@aftalavera Жыл бұрын
This guy went mad! He went from Mastodon to Mastodon by invite!
@mikeckennedy6 ай бұрын
I joined a public server on Mastodon called Fosstodon. The admins of that server decided to take it invite-only. However, Mastodon is a federation of 1,000s of servers and you can join almost any one of them without an invite. I'm not sure how the behavior of the admins of Fosstodon (who I don't know) reflects on my sanity. :)
@df6148 Жыл бұрын
🥲
@ajinkyax Жыл бұрын
I wish pyscript was a compiled tool part of webpack which would give an webassebmly output rather than using pyscript net service needed you to login. Also a real demo would be loading 10K user details in single-page app. which React cant do at the moment.
@pdecker Жыл бұрын
I've been forced to use AppImage to get the latest Python versions because the production server I'm running on is CentOS 7. This has the advantage of not interfering with the OS installed Python.
@ChrisMcDonough Жыл бұрын
I cosign!
@paulweveritt Жыл бұрын
Hey, I know you!
@ChrisMcDonough Жыл бұрын
@@paulweveritt prank caller
@mikeckennedy Жыл бұрын
Hey guys. :)
@ChrisMcDonough Жыл бұрын
@@mikeckennedy don't interrupt us we are arguing! :)
@qozia1370 Жыл бұрын
thank you
@MrLegarcia Жыл бұрын
Code over charm
@df6148 Жыл бұрын
When I felt like nobody around me was into coding I found your podcast and man talk about a morale boost! I learned so much and got sneak peeks at all sorts of good tools. I started to recognize all the different ways python is used. Some in Data Science, Some in Backend Dev or Devtools. All sorts of applications. I don’t think I would’ve learned this in another language. Python’s versatility really enabled all of this. But Thank you for the amazing content over the years. Are you ever going to do your podcasts live? With a live chat? That’d be awesome! The python community needs you!
@martinb.8912 Жыл бұрын
Omg thanks for this info. I am developing with python quite a while but did not know this.
@MelissaAtwell Жыл бұрын
Thank you for sharing this!
@TrinhPE.HuynhThiPhuong Жыл бұрын
How we can use opencv in pyscript?
@alxizr Жыл бұрын
Hi mike, great video. Thanks very much. Can we make it work in react for example ? My concern is the DOM interactions. If i want to add a callback to an element. Pyscript requires grabbing it from the DOM with query selector and id which is something that is a big no no in react
@jackyliu_jetbrains Жыл бұрын
JetBrains released Stream Deck plugin for IntelliJ IDEs, feature request welcome.
@personone6881 Жыл бұрын
Can you show me a step-by-step tutorial from the start explaining how to do this please?
@yash11523 ай бұрын
watch the previous video he uploaded. he went into pretty sufficiently detailed explanation. prerequisite being: basic knowledge about web pages, and backends. basic knowledge about pythyon.
@rickhorvath Жыл бұрын
BUT, my solution has several Projects and C# folders. I can no longer get it to run on my local server as I had been doing on a paid server. ThoughtS??
@rickhorvath Жыл бұрын
This is the only explanation that works - and can be easily understood. Thanks for sharing !
@jabuci Жыл бұрын
Note that there is a for loop inside the list comprehension... So yes, you do need loops in Python.
@user-wr4yl7tx3w Жыл бұрын
This is really well explained. The motivation was really helpful. It's a great way to teach and provide context.
@pybob Жыл бұрын
Thanks Mike for having us, we had a blast!
@Slacker4o Жыл бұрын
not useful for other than absolute beginners. :(
@Drakkle Жыл бұрын
Does list comprehension work with updating additional variables in a standard for loop? For example, I have a bit of code nested in a while loop that will check if a file exists, then update the version name to the next incremental value if true, and compile the file results into a list. I would be blown away if list comprehension is that robust but I don't know enough about it admittedly. I will update my code immediately if that's possible! Edit: found a post that specifies that while loops are not compatible with list comprehension. Ah well, it would be nice.
@raulrs50 Жыл бұрын
Thanks, you saved me a lot of time! :)
@mrmagnetic927 Жыл бұрын
i call it the fang operator. lol
@df6148 Жыл бұрын
Michael Kennedy is somebody that really cares about the Python community. The Bob Ross of python. 🎨 🏔️
@mikeckennedy Жыл бұрын
Thank you DF. :)
@ComputerVisionEngineer Жыл бұрын
Hey Michael, nice tutorial, do you know if there is a way of getting frames from the webcam using pyscript? Using opencv and calling cv2.VideoCapture(0) as I usually do in Python doesn't seem to work. I am surprised I haven't been able to find any documentation on how to do it.
@mikeckennedy Жыл бұрын
Thanks! It's likely possible. There is deep integration with JavaScript and PyScript. And JavaScript can do webcam stuff. So I'd see how to do it in JavaScript and then tie it in there.
@aadityakotadia5280 Жыл бұрын
Hi! I was making a personal project using openCV (and mediapipe) and had the same question. Did you ever figure out what to do? Thanks!
@mikecmw8492 Жыл бұрын
Hi, one issue I saw just copying/testing was: error: type object is not subscriptable (rides: list[int] = []). So did you get this error? int is not iterable. I fixed it with "from typing import List" ... "rides: List[int] = []"
@ADIR5818 Жыл бұрын
Awesome explainer !
@HimanshuYadav007 Жыл бұрын
Do you even need loops in Python? - Yes that you are using in list comprehension - Violla Genius LOL