#222 Autocomplete with type annotations for AWS and boto3 - podcast episode cover

#222 Autocomplete with type annotations for AWS and boto3

Feb 24, 202138 minEp. 222
--:--
--:--
Listen in podcast apps:

Episode description

Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/222

Transcript

Hello and welcome to Python Bytes, where we deliver Python news and headlines directly to your earbuds. This is episode 222, recorded February 24th, 2021. I'm Michael Kennedy. And I'm Brian Okken. And I'm Greg Herrera. Hey, Greg Herrera. Welcome, welcome. We have a special guest. Thank you. Welcome. Part of the Talk Python team and now part of the Python Bytes podcast. It's great to have you here. Happy to be here. Thank you.

Yeah, it's great. Also making us happy and many users throughout the world is Linode. Linode is sponsoring this episode and you can get $100 credit for your next project at pythonbytes.fm/Linode. Check them out. It really helps support the show. So, Greg, you want to just tell people really quickly about yourself before we dive into the topics? Yeah. Before I joined the team at Python Bytes, I had run a data analytics consulting firm where

we built data warehouses and did data science type things. It was called business intelligence at the time. And as I was learning, we started running into a lot of open source users, in particular, Python. And so I dove into the Python ecosystem when I sold that company to get up to speed on how things are going to be done in the future. That's awesome. One of those Wayne Gretzky moments, right? Yes, exactly.

Cool. Well, awesome. It's great to have you here. So I want to jump right into our first topic. We have a lot of things to cover today. So I'll try to not delay too long. But I've got to tell you, I'm a big fan of AWS S3. I'm a big fan of some of the services of AWS in general, right? Don't run the main stuff over there. But many of the things, many of the services and APIs I use. That said, I feel like the S3 or the Boto API, the Boto 3 API rather, is one of the worst programming interfaces

I've ever used in my life. I mean, it is so frustratingly bad. The way you work with it is you go through and you say, I'd like to talk to Amazon. And then you say, I would like to get a service. And instead of creating a class or a sub module or something like that, that would be very natural in Python. What you do is you go to a function and say, give me the service and you give it a string. Like I want quote S3, or I want quote EC2 or quote some other thing. And then you get a

generic object back and you have no idea what you got back, what you can do to it. You start passing stuff over to it. Sometimes it takes keyword arguments, but sometimes you just put dictionaries, which are one of the values of a keyword. There's just all this weirdness around it. So every time I interact with them, I'm like, oh, I'm just probably doing this wrong. I have no idea of even what type I'm working with because it's like this bizarro API that is like levels of

indirection. It's because it's generated at runtime or at least dynamically, right? There's not static Python that is it like looks at the service you're asking for and then like dynamic up thing. So I feel like there's a lot of work over there that could be done to just, you know, put a proper wrapper at a minimum on top of those types of things. That said, wouldn't it be nice if your editor knew better

than AWS is willing to help you with? So we've got this really cool library that I want to talk about. This was sent over by Michael Lerner. And the idea is you can add type annotations as an add-on to the Bodo library. So then you get full-on autocomplete. So let me give you a little example here. For those who are in the live stream, you can see it, but those are not, you can just like, I'll just describe it.

So for example, if I want to talk to S3, like I said, I say Bodo3.client, quote S3, as opposed to quote EC2. And what comes back is a base client, figure it out. It can do things. It can get a waiter and a paginator and it has the possibility to see exceptions about it. And that's it, right? That's all you know. And this is the API you get when you're working with things like PyCharm and VS Code and mypy and other type annotation validators, right? Lenters and whatnot. They get nothing.

So if you go and use this Bodo library, this Bodo type annotations, there's no runtime behavior. It just reads, I think they're PYI files. I can't remember what the final letter is, but it's like these kind of like a C++ header file. It just says these things have these, these fields, but no implementation. They actually come from, you know, the Bodo library. So we just go and import, you know, from Bodo three type annotations dot S3 import client. And we say S3 colon client equals this

weird factory thing. Boom. All of a sudden you get all the features of S3. You can say S3 dot and it says, create bucket, get object, create multi-part upload. Hey, guess what? Here's all the parameters that are super hard to find in the documentation. Thank you, Michael, for sending this over. I already rewrote one of my apps to use this. It's glorious. Nice. What do you guys think? So does it, you said

you rewrote the app. Does it really change? No, I, well, let me rephrase that. I wanted to make a change in the way one of my apps that was extremely S3 heavy, it basically shuffles a bunch of stuff around and like on using S3 and some other stuff. And I wanted to change it. But before I changed it, I'm like, well, let me fancy it up with all these types. And then it'll tell me whether I'm doing it

right or wrong and whatnot. So now if I have a function, I can say it takes an S3 dot client and my pie will say, no, no, no. You gave that an S3 service locator or whatever the heck. There's like all these different things you can sort of get that will do similar, but not the same stuff. So yeah, anyway, fantastic,

fantastic addition, because this really should be coming from Bodo three. I just don't, I feel, you know, maybe it was a little bit harsh on them at the beginning, but the reason I, it's like one of these things where you, you write a function, you just say, well, take star arcs, star, star KW arcs, and you don't bother to write the documentation. You're like, well, how in the world am I supposed

to know what to do with this? Like there's, it could so easily help me. And it's just like, not right. Like those could be keyword arguments with default values or whatever. So like, I feel like, you know, a company as large as Amazon, they could probably justify writing like typed wrappers around these things that really help people and help my pie and all these other like validation tools. But until then,

Bodo three type annotations. Awesome. Yeah. Oh, and Dean also threw out really quick before we move on your next item, Brian, that Bodo types can literally, well, not literally save my life. Yes, I agree, Dean. It's like, Oh, sorry. Did I like take down that EC2 machine? I didn't mean that. I wanted something else. I want to delete the bucket. Sorry. Anyway. Awesome. Interesting. Literally. Translate transition. Yes. Yes. Indeed. So yeah. So I want to cover code reviews. Brian,

you're such a romantic. So this was suggested by Milos, I think, and written by Michael Lynch. And it's an article called how to make your code reviewer fall in love with you. And just, oh my gosh, it's got great content, but the title, yuck. Maybe you're not a romantic. I mean, come on. Well, I mean, I like my coworkers, but you know, anyway, even in the, in the article, it says, it says even your reviewer will literally fall in love with you. Oh, they won't literally fall in love

with you. They might figuratively appreciate your code review. I mean, they may, but it could be an HR issue. Yeah. Anyway. But I do want to cover it. There's, there's some really great tips in here. Cause actually being nice to your, being nice to your reviewers will help you immensely. And one of the things he covers is just value your reviewers time. And there's, and I just put a code review in this

morning, just to try this out, try some of these techniques. And it only takes like an extra 30 seconds, maybe a minute to do it right. And, and it saves everybody on your team time. So it's worth, worth it. So let's cover a few of these. One of them is don't just check for mistakes. Imagine that you're reading the code review for the first time. So you need to be the reviewer of your code first.

So that's, that's actually really important. And I, I encourage that with everybody on my team, because there's times where the disc, you know, it just doesn't, there's stuff in there that's not, it doesn't make sense. And why is that, why is that related to the thing? I guess we're, we'll get there. Okay. Well, and you can also, you know, if you're in a rush, what you say can come across feeling unkind or inconsiderate. And you're just like, I didn't really mean to be inconsiderate.

I just like, I've got four of these and I have 20 minutes. I just got to get it, you know, but it, that's not how it's received. You know, it may be received really differently. So, you know, from that perspective, right? Yeah. And even, even if the code review itself only takes somebody a few minutes to review your code change, it's interrupted their, their day by a half an hour, at least. So respect that entire time. one of the next suggestions is, write clear change

log description. So, right. And, and, and he, he describes this a little bit. One of the things is, it's not just what you changed, but it it's what your change achieves and why you made the change. That's the, why is always way more important than what you did. I can look at the code change. I should be able to look at the code change and know, know what you changed. So don't describe that too much in the, in the list at the top. next, narrowly that I want to talk

about narrowly scope your changes. So, they can skip down. Here's what I did this week. Yeah. Have a look. Yeah. now it's easy to do that. Like I haven't checked in for a while. So here's what I did. Yeah. No, no, no, no. And actually this is something that I even caught myself doing yesterday. I, I noticed that a test, really kind of needed refactored cause it, I needed to add a test to a, to a test module. And there was, there was some, there was the way the entire

test module was arranged. I could rearrange the, the, the fixtures so that it would run like three times faster. if I changed the setup and common setup and stuff like that, I really wanted to do that, but that's not what I really needed to do. What I really needed to do was just add a test. So I added the test and that code review went through this morning. And then today I'm going to do a cleanup of trying to make things faster. So separating them is important. Also, another thing is,

separating, functional and non-functional changes. So you're like, in this case, you're in a, you're adding a test to a module. You got like, you notice that the formatting is just a nightmare. just write that down on your to-do list, either do that merge first, clean it up and then merge it and then add your change or add your change and then clean it up. Do them in two merge

requests. It'll be a lot easier for people to figure out, break up large change lists. If you've got, if you've been working for a while, maybe you should merge them in a few times, a few, you know, in pieces. If it's, if it's like a thousand lines of code and 80 files, that's too big. That's just way too big. and then there's, there's actually quite a few, chunks in there that talk about basically being a nice person. So, respond gracious. I'm just going to pick out one, respond

graciously to critiques. And that's the hardest one for me. If somebody picks apart your code, they're not attacking you. They're talking about the code and they want to own the code also. So think about those as, as, as, as the, the reviewer wanting to, make the code theirs as well as yours and try to respond well and don't get too defensive about it because fights in code reviews are not fun. Yeah. And often there's a power differential, right? A senior person is reviewing

junior person's type of work. So that's always true. Yeah. Yeah. Yeah. For sure. Greg is someone who's relative to say Brian and me a little bit newer at, at, at Python. what are your thoughts on this code review stuff? I mean, I, I know you don't necessarily write a lot of code in teams that gets reviewed, but you see this as helpful, stressful. Yeah. Yeah. It's, it's, it's important

important to do the, if you have the interpersonal part of it, right? Like the, both they, they trust each other, the, the, you know, the reviewer and the reviewee, it's going to go a lot more smoothly. It's, it's, it's, we're in this together, a shared fate, and, and it'll go as opposed to, uh, conflict. it's going to, it's going to be much easier. Yeah, for sure. Brian, quick comment from Magnus, I believe a code review should really review the current code, not just the diff

line. So the whole code comes out better after review. Yeah. Yeah, definitely. it depends on how big it is, right? Like maybe like that little sub module or, or something, right? It could be too massive, but yeah. Yeah. And actually this is, this is one of the times where I kind of put it on the brakes and just say, you're right. We do need to fix that and, and put it on the to-do list, but it shouldn't stop a merge just because, things are. Yeah. Brian, does your team do

internal PRs or do you just, do you just make changes? No, everything goes through a PR. Yeah. I, I vary. Right. Sometimes I do some. All right. Greg, you're, you're up next on, yeah. Yeah. Thank you. Speaking of repos and merges and PRs and all that stuff.

We thank Hector Munoz for sending, this suggestion in it, it started with a, response to a blog, on Tidelift, by Tidelift about, Hey, if I'm making a decision on, on which, library to use, how, how do, how could I, gauge the maturity of that library? So, yeah, that's a question I get all the time from people like, Hey, I'm new to Python. I want to

know which library I should use. How do I know if the library is a good choice or a bad choice? And so there's a lot of different metrics you might use, but maybe they're hard to find, right? Exactly. So, Lawrence Malloy made, made this, library repo dash available so that you can, you can track, the metrics about, you know, that give a clear indication of the health of, of the, project. You got your open issues over any timeframe. this, this actually captures it,

you know, with, within the time range that the user specifies. So how many items were open, how many issues are open, how many closed in that timeframe is still open. And, it will give you a much better feel for the, the level of maturity and, and, and, activity. yeah, this is cool. Like how long issues have been setting their open or, total number of open issues over time that, like how fast should it be enclosed versus being opened versus unassigned. Yeah. All those kinds of

things are really important. Another one, probably in here somewhere, I just haven't seen it yet, is, the number of PRs that are open. Like a real red flag to me is I go to a project and there's, you know, significant number of PRs that are both open and maybe even not responded to. And they've been there for like six months. You're like, okay, whoever's working on this, they've kind of lost the love for it. Yeah. Yeah. And, yeah. And tying it together, it's, it's, might be the signal

of where you need code reviews if you're, if you're stuck somewhere. Yeah, that's right. I mean, that's basically what a PR is. It's like a, it's waiting on a code review more or less. Yeah. Yep. Yeah. Awesome. All right. Well, this is really cool. And I think it'll, it'll help people who create repos or create projects, make sure that their repo is getting sort of the health of what they're doing. But then also for people who are new or new to a project, they could quickly look

at it and go, red flags or, you know, green flags, which is it? Yeah. Yeah. Certainly. If you're doing the, the, the things that are making your prod, your, your, it's all part of transparency. This is, this is where we're the real deal over here on this team. Yeah. And they even have a cool little categorization bar chart of the types of issues that are open, like feature requests versus, uh, good first issue versus bugs and so on. That's cool. So Ryan, what do you think?

Well, I guess I, I don't know if you covered this already, but I'm a little lost. is this a service or is that something I add to my repo? You know, I think it's something you run, you point it at a repo and you run it. Okay. But that's my understanding. I don't totally. Yeah. I haven't used it, but I believe so. Yeah. Yeah. So it's a command, a CLI thing. You just pointed at like some, some GitHub repo and you say, tell me how they're doing.

What I want to depend on this thing. Yes or no. No, I think that's cool. Like it. Yeah. You know what else is cool? Sponsors. Sponsors that keep us going. Thank you. Thank you. And Linode is very cool because, not only are they sponsoring the show, but they're giving, everyone a bunch of credit, a hundred dollars credit for, just using our link. And, you know, you want to build something on Kubernetes. You want to build some virtual servers or something like that. Here you go.

So you can simplify your infrastructure and cut your cloud bills in half. Linode's Linux virtual machines, develop, deploy, and scale your modern applications faster and easier. And whether you're working on a personal project or some of those larger workloads really should be thinking about something affordable and usable and just focused on the job like Linode. So as I said, you'll get a hundred dollars free credit. So be sure to use the link in your podcast player. You got data centers

around the world. it's the same pricing, no matter where you are, line up, tell them where your customers are and you want to create your stuff there and that's pay the same price. You also get 24, seven, three 65 human support. Oh my gosh. I'm working on another, some, something else with someone else. Allison, this would be so appreciated right now, but not, and if it was a Linode, they'd be helping me

out. But oh my gosh, don't get me on a rant about, other things. Anyway, do you can choose shared or dedicated compute and scale the price with your need and so on and use your a hundred dollars credit, even on S3 compatible storage. How about that? You could, you know, use Boto, Boto three and the type annotations that change where it's going to point it over there. So yeah, if it runs a Linode or if it

runs a Linux, it runs a Linode. So use pythonbytes.fm/Linode. Click the create for your account button to get started. So, Brian, I'm not covering two topics this week, like normal, you know, because no, because I have so many, I can't even possibly deal with it. So it's all about extra, extra, extra, extra, extra here all about it. Okay. The first one, may know what a CVE is. If it applies to your software, you don't like that. So, this sounds more scary than I believe it is,

but let me just do a quick little statement here. A reading from, nist.gov Python three up through three nine one, which was the latest version of Python until five days ago has a buffer overflow in pyCRG repper D types, which may lead to remote code execution. Remote code execution sounds bad. That sounds like the internet taking my things and my data and other bad stuff. When you're accepting a floating point number. Oh, wait a minute. a floating point number. Like I might get at a

Jason API. Somebody posts some data and here's my floating point number, but this one hacks my Python web app with remote code execution. That sounds bad, right? Yeah. Yeah. Now it turns out the way it has to be used. It's like, it's, it's a very narrow thing. It shouldn't send people's like hair on fire running. Like, Hey, I've got to update the server. Right. But you should still probably update it. So

what do I do? I've logged into the various servers, Linux servers, Ubuntu latest version of Ubuntu that I want. And I say, Oh my goodness. I heard about this. Please, date, you know, do an app update. There better be a update for Python three. Oh no, no. There's no update for Python three. In fact, it's still running three, eight, five where this was fixed in three, eight, eight or something like

that. And a week's gone by and there's still no update for Python on Ubuntu by default. Now, what I can do is I can go to this like place that seems semi-official, but not really official called dead snakes and add that as a package manager endpoint for apps. But I don't really want to do that either. That sounds like maybe even worse than running old Python. So that sends me down item number two of my, of my extra, extra, extra, extra, extra. And that is building Python from source

on Ubuntu. Because, I, I really don't want to be running the old Python in production, even if it is unlikely, you know, unlikely yourself over dead snakes. Okay. I, well, no, what I originally wanted to do maybe yes, but originally what I wanted to do was use pyenv because pyenv lets you install all sorts of different versions, right? Yeah. Yeah. Well, the only one available that was three, nine was three, nine, one, which was the one with the bug still.

And then locally I use homebrew on my machine and it just updated yesterday. I think it was, uh, but it was a little bit behind, but that's updated. So yeah, I guess I do. anyway, so I've found a cool article that walks you through all the building, the stuff. And then, the thing that makes me willing to try this and trust this, but also related to the next extra, extra, extra is you can go instead of doing make install, which is the compile stuff takes a while, but then magic

Python comes out the other side, you can say make alt install. And what it'll do is it'll install the version of Python under like a version name. So I can type Python 3.9 and get Python 3.9.2 with no vulnerabilities. But if I just type Python or Python 3, it's just the system one. So that one didn't seem too dangerous to me. Yeah. And then I just create a virtual environment for my stuff that runs on the

server. Python 3.9.9-mvenv create that. And then off it goes. And then it's just running this, this one from here. So, pretty good. that worked out quite well. So anyway, I've been doing that for a week and the world hasn't thrashed or blown up or anything. So apparently this works. One has, yeah. One heads up though, is like, I have a bunch of machines that are all the same version of Linux. They all seem to have different dependencies and ways of dealing

with this. Like one said, Oh, the SSL module is not installed as a system library, like apt install LibSSL type thing. Another one, it had that, but it didn't have some other thing, some other aspect that I forgot, but like, they all seem to have different stuff that you also got to add in. So that was a little bit, walkie in the beginning, but it's all good now. All right. That's extra number two. extra number three really probably should have preceded that because

to make all that work, I wanted to make sure that I had it just right. And so I wanted to do this on Ubuntu 20, 20 Oh four LTS. And yet I cannot run Docker, which is exactly the place where you would do this sort of thing to test it out. I couldn't do Docker on my Apple M one. Oh no. Okay. Now Docker says it runs. Docker says you can run Apple, a Docker prototype on your M one, but I've installed it. And all that does is sit there and say, starting, starting, starting, starting, starting,

indefinitely. And it will never run. I've uninstalled it. I've done different versions of it. Like it just won't run. people that were listening said, Oh, what you got to do is you probably installed parallels or this other thing. And it caused this problem and he could fix it this way. Like, Nope, the problem isn't there. Cause I didn't install any of those things. I can't change. So long story short. I, go ahead. No, I was just laughing. Yeah. Yeah. And so what I ended up doing

is I saw a really cool trick, not trick technique. I put this in the show notes. You can just say, uh, basically two lines on the command line prompt or do a Docker to say, you know what, if you want to just do Docker stuff, don't do it here, do it over there. And so I have my Intel, uh, MacBook pro that can, that's running, Ubuntu and a virtual machine. So I just turned that on.

And I just said, Docker context, create that thing over there. And then Docker context use. And after that, every Docker command without thinking about it, remember it just automatically runs over on that machine. And I know it's working because my Mac one, my Mac M one mini, is super quiet. You'd never hear it or anything. But when I work with Docker, I can hear the thing grinding away over in the corner. So that's, I know it's working. All right. Really quick. I know

I'm running low on time. The last one is people have heard me whinge on about depend upon and how it's such a pain. And I'm sure they're thinking like, Oh, Michael, why are you whinging about this? Why are you like just complaining? You know, it's, it can't be that bad. Yeah. So look what is on the screen here. Depend upon merge conflict with itself. Like, so these are the things I have to do on Monday

morning. I have to log in and it says there's a merge conflict. Depend about put cryptography equal, equal three, four, six, when it had unchanged for months, cryptography equal, equal three dot four dot three. It's like though it's one line. It it's, it's conflicting with itself. Like this is crazy. So anyway, this is not a big deal, but people are like, why does Michael keep complaining about depend upon merges? Like, cause I have to go like the one line. It changes merges with

itself. Like this is not product. All right. Oh no, we're not looking at that one yet. That's for later. All right. I guess that's it. Oh, final shout out though. I'll put this in the link in the show notes. Anthony Shaw along with one of his coworkers, whose name I'm sorry, I forgot, built a GitHub bot that will automatically merge all those things for you or specifically for depend about. So I'll cover that more later when he writes it up, but he did it like a little shout out about it,

Twitter. So link to that since it's related. Yeah. That was a lot of extras. Yeah. I got a short one. It's an extra tool also. So it's also about Docker. So yeah, yeah. This is quite related. Nice follow on. So, Josh peak suggested, and I'm not sure what he was listening to, but he just, or just wondering if we'd heard about it. that if one of the things people talk about with testing is whether or not they should, mock or stub act activities to the database. And even if,

and then I've, you know, I've talked with a lot of people about that. And even if you've got a database that's, that has in memory set up, so you can, you can configure it to be in memory during your testing and stuff. It's still a different configuration. So, one of the suggestions that we've gotten from a lot of, a lot of people is stick your database in a Docker container and then test it. So, and then Josh peak suggested this, library called test

containers dash Python. And this is slick. I mean, this thing really is, you've got, you just install this thing and you've, you can, so it covers what Selenium grid containers, standalone containers, my SQL database containers, my SQL Maria DB, Neo 4J, Oracle DB, Postgres, Microsoft SQL server, even wow. And then just normal Docker containers. Yeah. It also even does a MongoDB, even though it's not listed. I saw some of the examples that had Mongo as well.

Oh, that's great. I was, I was curious about that. So after you install this thing, you can just, it provides context managers. It probably has other stuff too. I didn't read all of it, but this is just really not that much code to create a, a Docker container that you can throw your connect and fill your dummy data in or whatever. I love it. It's like, I want to, I want to use Docker to help test stuff in isolation,

but I don't want to know about Docker or be able to use Docker or care about Docker. Right. Right. So what it gives you is, it gives you a SQLAlchemy friendly URL, that you can, uh, just, just connect to your connect SQLAlchemy or whatever, but you, you just get this URL out. So if you have, if you're configuring your, where your database is through URL, that you can throw that in whatever configuration environment or variable or whatever, and test as you run with

that. And it's pretty neat. That's so cool. Yeah. Just with my SQL container, give it some connection string you want or some, like host, address or whatever as my SQL. And then you just off you go, right? Just the Docker thing exists while the context is open. Yeah. And I didn't specifically see any documentation in here talking about pytest, but if anybody's curious, um, I'm sure it'll work with that because, even if you have to write your own, fixture,

you can, you can return a context manager items in a fixture. So that'll work. Yeah. Yeah. Yeah. Super cool. You know, I was, that's exactly what I was thinking when you were talking about as a pytest fixture that maybe loads it and then fills it with test data and then hands it off to the test or something like that. Yeah. Yeah. Greg, what do you think? I like it. Yeah. That's neat. Right. Hey, I got a quick, a quick follow-up from the last one. Magnus on the

Livestream asks, will using Pydantic mitigate the floating point overflow bug? using Pydantic definitely makes exchanging JSON data really nice and does some validation, but I suspect it probably doesn't. That said, you know, people really wish I could find this conversation. There was a conversation with Dustin Ingram and I think Brett Cannon talking about this and how it's really not that severe because I believe you got to take the input and directly hand it off at the C layer in

Python, like passing it to float parentheses in Python, I don't think is enough to trigger it. You've got to like go down into something like NumPy or something super low level. So it's not as dangerous, but you know, there's a lot of things that you see later. So who knows what's going on down there? so that's why I'm building from source for the moment. Anyway, I should also throw out there really quick.

I was also just frustrated that the latest version I can get is three eight, which is over a year old. And I was like, why am I on a year old version of Python when I could just take an hour and be on the new version of Python? There's more to it than just the bug. All right. I guess, Greg, we'll throw it back to you for this last one. Don't have a graph. Yeah. Yeah. Thank you. the context on this was I had been in, in, data science in pretty much the

proprietary world. So proprietary software using, SQL server and Tableau and, Cognos and those different tools. We started noticing we're Bay area based company. We started noticing that, um, customers were leaving that proprietary world and going to, Python. And that's, that actually is one of the things that led me to, to myself to start going in and understanding

the industry. And it just in the time that I've been with talk Python, which is a bit just a shy, short of a year now, I'm seeing, a relentless March towards more and more adoption in, the Python ecosystem for businesses that had traditionally always relied on proprietary software. And, and it's, it's, it's reaching top of mind, to, to, a level that I, I didn't expect that it was going to happen so fast. You know, you followed the, the Jeffrey Moore, the, adoption, you know,

the early adopters and then hitting the main street. This one is moving really fast. we're seeing like, some of the largest corporations in the world moving, looking at Python as a means of looking, moving away from Excel even. And, it's, it's, it's just, it's reaching top of mind because more and more decision makers are hearing from their technology teams that they can deliver solutions at unprecedented price performance. And, that's always going to talk.

Well, you weren't, you were talking this realm, like we should talk Gartner, right? So there was a Gartner study, about why companies are moving to open source. And it was really interesting because a lot of people say, well, you've got to move to open source because it doesn't cost money. So it helps the bottom line. And so many of the companies that were interviewed by Gartner were like, it has nothing to do with price. I mean, price, it's a benefit. We'll take not paying less.

That's fine. But this is about higher quality, higher visibility and so on. And I think that's a real interesting inherent advantage in the community. Right. And in the, in the case of, um, of Excel, you're hitting up against, limitations in Excel, you know, the size limitations, most notably, and now you're able to, to handle it with, it happens to be open source, the solution, but you really, the pain was the limitations and, now you're able to do without it.

There's got to also be maintenance too, because we, I mean, sometimes I've heard Pearl referred to as a, a write only language, but, but it's got regular expressions. Yeah. Yeah. It's, it's got nothing over trying to edit somebody else's spreadsheet full of macros. Right. Oh yeah. Yeah. If they put some VBA in there, it's the kiss of death for sure. Yeah. That's like, those are like go-to statements. It's insane.

Yeah. And, so what we're seeing is, you know, even though it, it feels like there's a heavy adoption, it's still relatively small in road compared to what we're going to see in the future. Um, it's like, water rapidly collecting behind a weak dam. And, we've seen that happen in the industry before. I think that's a really great thing to highlight, Greg. I, I talked with Mahmoud Hashemi, who at the time was at PayPal about Python, soft Python for enterprise software development.

As I think this is the fourth episode of talk Python. It was certainly right at the beginning in 2015. I remember that one. Yeah. And, it was like a big question. Like, well, does it make sense? Should people be using Python for these company stuff? Does that make it like now it just seems, yeah. I mean, it seems just like so obvious. there's one thing I was actually going to cover this and I'll cover it again,

more depth because I had so many extras already. So I made room, but one of the interesting things that Google came on to sponsor the PSF at, they say, they probably don't say this is like a friendly one, but there was another, article. This is just the sort of fresh release from the PSF, but they came on and they're now sponsoring, the PSF as a visionary sponsor, which I think is over 300,000 in terms of how much there's, and they're also sponsoring a core developer,

particularly for things around like security and PI PI and whatnot. So a lot of interesting stuff. I'll come back to that later, but, and another show, but yeah, it seems worth giving a little shout out about that. Yep. And then a quick comment, Greg, from Magnus. I read an article about the re, the reinsurance industry also moving in from Excel to Python. Yeah. I can imagine. Awesome. Thank you, Magnus. Yeah. All right. I guess that's it for our items. Now,

Brian, how about some extras? Well, I know that you've been using, you've been using Firefox for a while, right? I did notice over on, your stream that looks a little Firefoxy over there. What happened, man? Yeah. So the, the thing that convinced me, is this announcement thing.

They just released Firefox 86 and it's got this, enhanced cookie protection. And I don't understand the gist of it, but mostly it's, it seems like, they just said, you know, whatever site you're on, they can, you, cause you know, sometimes I've heard people say I turn off cookies. Well, like sites don't work without, cause some of them just don't. Yeah. You want to log in? Well, you're going to need a cookie. Yeah. So, or just saving stuff. I don't want,

there's times where I just don't, there's nothing private there. I don't want to log in. Every time, but I don't want you to share it with other people either. So this, this, this enhancement is just, keep the sites cookies to themselves. So they have like a cookie jar or a storage area for cookies. That's individual to each site. And you can save as many as you want for your site. And then the, another site gets another one. And there's the, the, the obvious, like you

were saying, login stuff. I used, you know, different login providers. There is an exception for that. So you can, you can use a login providers and it allows that, but these are, these are non tracking cookie uses. So yeah, I'm super excited about this as well. Basically, if you were to go to CNN.com and then you were to go, I'm not for sure about this, right. But likely then you were to go to

the verge and then you're going to go to chewy.com and buy something for your pet. Like very likely they're using some ad network that's put a cookie that knows you did that sequence of events. And Oh, by the way, you're logged in as so-and-so over on that one. So, and all the other sites, we now know that so-and-so is really interested in chew toys for a medium-sized dog, but a puppy, not a, not a

full-crow. Right. You know, and that's, it gets to the point where people think, Oh, well, all these things are listening to us on our phone, but they just like track us so insanely deeply. And so the idea is yeah. Let that third party thing, let it set a cookie. But when they get the chewy.com from CNN.com and they ask for the cookies there, like, yeah, sure. You can have your third party cookie, but it's a

completely unrelated brand new one. As if you like deleted your history and started over it, which is beautiful. I'm super excited about this as well. Yeah. And, Robert Robinson says that CNN better not try to sell him. I'm with you, man. I'm with you. Doggy toys from the doggy toy site news from the news site. Sometimes they're hard to tell apart, but you never know. Stay in your lane. Stay in your lane. All right. yeah. So that was the one thing you wanted to cover, right?

Yeah. Yeah. I did my extra, extra, extra, extra. So I've already covered that. So I feel like, Greg, anything you want to throw out there before we, move on to a joke? No, it can't get in the way of a joke. No, I know this is good. So sometimes we, we find an interesting joke or a funny thing out there. And sometimes we strike gold, right? Like Brian pie jokes. I mean, pip X install pie joke. Come on. Like the CLI is now full of dad developer jokes. Well,

I kind of feel like I got one of those here as well. So there's this place called, article called 56 funny code comments that people actually wrote. Nice. I don't want to go through 56, but I feel like we may revisit this. So I want to go through four here. Okay. I linked to the real article in there, but I pulled them out separately. So I'm showing on the screen here. Like I'll, I'll read the first one and we can take turns reading. There's only four or five here.

So the first one is, is it a big like header at the top of a function in a comment? It says, dear maintainer, once you're done trying to optimize this routine and you've realized what a terrible mistake that was, please increment the following counter as a warning to the next guy. Total hours wasted here equals 73. Is that awesome or what? Yeah. Oh man. That's beautiful. Isn't it? Yeah. I've had, I've had code that were every like the next, like one out of five developer that gets to it says,

Oh, I think we can make this cleaner. And they don't. Nope. They just make it stop working. Then they have to fix it. And then it goes back like it was. All right, Brian, you want to do the next one? Sure. sometimes I believe compiler ignores all my comments. Huh? That's a comment. Sometimes I believe the compiler ignores all your comments. Like probably all the time. Hopefully. Oh, this next one's my favorite. Yeah. All right. Greg, that was you. Great. Drunk, drunk. Fix later.

I can totally see that one. Honesty. Honesty. also this one is nice. Probably this came from stack overflow and a partial level of understanding. The comment is magic. Do not touch. Yeah, definitely. Yeah. Brian, you want to round us out with this last one? Because sometimes the best part about comments is if they're accurate or not. Is there wrong? Yeah. I've heard people refer to comments as future lies. and this one, is there's a routine called, it's a Boolean returns

a Boolean. It's called is available. And it returns false. It's just a single statement return false with a comment that says always returns true. I love it. I'm telling you, there's going to be a lot of good jokes coming from this, this article here. So yeah, pretty good. All right. Well, thank you, Brian, as always, Greg, thank you for being here. Thank you for having me. Yeah, It was definitely great. And thanks everyone for listening.

Transcript source: Provided by creator in RSS feed: download file