Brought to you by Michael and Brian - take a Talk Python course or get Brian's pytest book


Transcript #97: Java goes paid

Return to episode page view on github
Recorded on Wednesday, Sep 26, 2018.

00:00 Hello and welcome to Python Bytes, where we deliver Python news and headlines directly to your earbuds.

00:05 This is episode 97, recorded September 26, 2018. I'm Michael Kennedy.

00:11 And I'm Brian Ockin.

00:12 Hey, Brian. How are you doing today?

00:13 Hey, I'm doing great.

00:14 Awesome. Awesome. Me too. Lots of big news. So much news that I can't even keep up with it.

00:19 Yeah, it's a good thing that there's like this weekly podcast that keeps us up on Python news.

00:23 I know. Where's the one that we get to listen to?

00:25 Yeah.

00:27 That's what we need. We need a meta podcast.

00:29 No, that's okay. Other people don't do that.

00:32 Yeah, that's right.

00:32 So I also want to say thank you to Datadog for sponsoring this episode.

00:37 Really happy to have them on board. Check them out at pythonbytes.fm/datadog.

00:41 Cool t-shirt lives at that URL. More to say about that later.

00:46 PyPI just keeps getting better and better, doesn't it?

00:48 Yeah, PyPI keeps getting better and the tools around it.

00:51 And a recent release just a couple days ago of Twine.

00:57 So Twine has been updated.

00:58 And for people that don't know, Twine is the thing that pushes your code from your laptop or your computer or your server or wherever to PyPI.

01:11 And Twine has a check function now.

01:13 Actually, there's quite a few things in the new Twine upgrade.

01:17 But this one's neat because once you've packaged your distribution up and everything and your wheels and whatever, it usually shows up in a dist folder.

01:28 And then you say Twine check dist and then everything in it.

01:32 And it checks to make sure that one of the things it does, I think it does a lot of things, but at the very least, one of the things it does is make sure your readme is rendering properly, supposedly.

01:42 Yeah, that's really cool that it even checks that, right?

01:45 Because that's hard to test, right?

01:47 How do you know if your readme is not rendering properly?

01:50 Yeah, we're linking to an article that's from on the PyPI that is how to make a PyPI-friendly readme.

02:00 So there's actually, it's not really difficult, but it's one of those things that, it's one of the last things you do before you, well, it shouldn't be the last thing.

02:09 But when you're getting a package together and you're like, hey, I have this really cool idea, I want to push it up on PyPI, you got to make sure the readme works.

02:16 And this is one of those steps.

02:19 And there's just a little short article on how to do that right.

02:22 Yeah.

02:22 Although like magic, it's not difficult, but the stuff you have to put in your setup.py and everything.

02:28 Yeah, that's a good find.

02:29 Anyone who is either maintaining or thinking of creating a PyPI package should definitely check it out.

02:34 Yeah, and I think in your build toolchain or your talks toolchain to add a check step to make sure to go ahead and check before pushing it up, that would be a good thing to do.

02:44 That can be like a pre-commit hook or something.

02:46 Wow.

02:47 I don't know.

02:47 Definitely part of your continuous integration anyway.

02:50 Yeah, definitely part of your CI.

02:52 The first item I have is pretty interesting.

02:55 And when you think of the languages and technologies that you can use, most of the time we think of programming languages and their subsequent runtimes basically being free, right?

03:08 I mean, obviously Python.

03:09 Like you don't think, well, what does CPython cost?

03:12 But even from places where you might not necessarily expect it, right?

03:16 Like C++, it's free.

03:18 Go is free.

03:19 Microsoft.net is free.

03:22 Right?

03:22 All these things.

03:23 You know what's not free these days?

03:25 What?

03:25 Java.

03:25 Really?

03:26 So apparently, Sun has made the Java runtime for, you're going to have to just check out the article on the register to make sure I get this exactly right, but roughly, Java is making the runtime a subscription, and the subscription costs $25 per processor per month for commercial entities.

03:49 Wow.

03:50 Is that crazy?

03:51 Yeah.

03:52 There's definitely some cases, like as students and whatnot, where you can just use Java for free.

03:57 But a lot of commercial organizations that depend upon Java need to read this article and the subsequently linked 330-page document that describes this process over at Oracle.

04:09 Hmm.

04:10 So that's pretty interesting, right?

04:11 Yeah.

04:12 Yeah.

04:12 Yeah.

04:12 Yeah.

04:12 Yeah.

04:12 Yeah.

04:12 Yeah.

04:12 Yeah.

04:12 Yeah.

04:12 It's the run times even.

04:13 So you have to, like, if somebody else makes a Java application, it's not the person making it, it's the person running it.

04:20 Yeah.

04:20 Yeah.

04:20 So it says, Oracle's put a price on the Java SE and its subsequent support.

04:26 So $25 per processor per month plus a $2.50 per user per month on the desktop.

04:32 Okay.

04:33 Unless you buy a whole bunch.

04:34 Yeah.

04:34 So it looks like maybe $250.

04:36 Wow.

04:37 Yeah.

04:37 It's kind of all convoluted, but it's, yeah, it's quite interesting.

04:41 They say the older run times, you can still use them for free, but, like, who wants to use a run time that has no bug fixes, no security patches or things like that, right?

04:53 Yeah, I guess maybe they're trying to make everybody move to Python.

04:58 Yeah.

04:58 And that's exactly, that was my first thought.

05:00 It's like, yeah, Java's been pretty high in the language rankings.

05:02 Maybe it's going to plummet now.

05:04 I mean, seriously, this is pretty crazy.

05:06 So, yeah, it says, also, there's a little bit of a stick to go with the carrot.

05:11 Yeah.

05:12 Come January 2019, Java SE 8 on the desktop won't be updated anymore unless you buy a subscription.

05:19 And, yeah, the short version is every commercial enterprise needs to look at their Java standard edition usage to see if they have something to do with licensing now.

05:28 So this was sent in by one of our listeners, and I'm super sorry I didn't write down the name in the show notes, but thank you for sending it in.

05:34 This is interesting.

05:35 I know it's not directly a Python thing, but it's just, you know, here's the thing.

05:39 I kind of always sort of thought of Java as more or less open source, and I guess it's just, you know, that Oracle oversaw, but I guess that's not the case.

05:47 Yeah.

05:47 Weird.

05:48 Okay.

05:49 Yeah.

05:49 Anyway, there's that.

05:51 Yeah.

05:51 Well, this next topic is really, really important.

05:54 For importing.

05:55 Importing.

05:56 Yeah.

05:56 It's very, very importing.

05:58 Tell us about it.

06:00 Importing.

06:01 Yeah.

06:01 Absolute versus relative imports in Python.

06:04 This is an article on the real Python.

06:07 I think it's on real Python.

06:08 Realpython.com.

06:10 There's a lot of great articles there.

06:11 Yeah.

06:12 I like what they're doing.

06:13 Great job over there.

06:13 Me too.

06:14 The relative, and I lost my tab, but the most of your imports are going to be, the first part of the article is talking about normal kinds of imports.

06:23 Like just the, you know, you import a package, like the import statement.

06:27 Right.

06:28 You do from package import something or from package dot, some sub package.

06:33 There's a lot of, there's a lot of versions of that.

06:35 So it's covering that.

06:37 But there's, like for instance, there's relative imports, which includes dots.

06:43 So, like from dot, import something.

06:47 Or import dot something.

06:49 And I never, I kind of never remember how all that works.

06:53 So I'm glad that somebody wrote it up.

06:55 I know it could probably find its other places, but this is a nice write-up of what all this means.

07:00 So in general, people say the recommendation is don't do this.

07:04 Don't do relative imports.

07:06 But sometimes you have to, and there's a lot of good times.

07:09 So for instance, if you were a package maintainer or you're developing a package, the modules within the package should be able to use functions from other modules.

07:18 That's why you have them.

07:19 But how do you import that?

07:21 You don't just, and one of the ways is you, you know, from dot, neighbor module, import something.

07:28 And that's what the single dot is, is import a module from the same package you're already at relatively.

07:34 Yeah, that's cool.

07:35 You know, the other thing that bugs me about when you have a package and sub packages that all interact and you use the full or external import style, if you want to rename that package, you're like, oh, I kind of like would rather call it this.

07:48 All of a sudden, there's like lots of pain and suffering that happens.

07:51 Yeah.

07:52 Well, even within it, if you import it from the top, yeah, you have to go through and change it.

07:58 I don't know.

07:58 Yeah, exactly.

07:59 It's not something I see very much, but I think it's a great article to have it all written up.

08:03 Yeah, well, I use the dot, dot.

08:05 I guess it's a parent package thing.

08:07 I don't really use that.

08:08 But the single dot, I use all the time to just say the import something from the same package I'm in to keep.

08:15 That way, like you said, you don't have to, if you decide on a different name for your package, you don't need to change that.

08:21 Yeah, absolutely.

08:22 Very nice.

08:22 So this is a good write-up.

08:23 Yeah.

08:24 So before we get to the next one, which is kind of retro and fun, let me tell you quickly about Datadog.

08:29 If you're not familiar with them, you should check them out.

08:30 They're especially good for distributed systems, microservices, things like that.

08:34 So they're a monitoring platform that brings together metrics, logs, request traces, all in one place.

08:39 Datadog has a trace as search and analytics feature that lets you break down your Python app performance by user, by URL, all sorts of cool stuff like that.

08:53 So you can quickly, easily troubleshoot and optimize your Python app.

08:57 So try that out today with a free trial and Datadog will send you a free cool dog t-shirt.

09:03 It's very nice.

09:04 Check them out at pythonbytes.fm/Datadog to get started.

09:07 The user ID thing, searching on users is kind of cool.

09:10 You could maybe line that up if like a particular user had a complaint or something, you could maybe use that.

09:16 Exactly.

09:17 I get this all the time.

09:19 Like, oh, this thing is not working super well on your platform.

09:22 I'm like, seems to be working pretty well.

09:24 I just don't understand.

09:25 But if I could actually dig into it by user ID, that'd be awesome.

09:28 Yeah, that's cool.

09:30 Yeah.

09:30 So I promise to do something retro, right?

09:32 Yeah.

09:33 I love retro.

09:34 Quite retro.

09:35 Yeah.

09:36 So you should check out, if you feel like making a game, you know, a lot of people get into programming because they were interested in making games.

09:44 And that's why they got into programming.

09:45 That was not me, actually.

09:46 Like, I enjoyed playing games when I was younger.

09:48 I sometimes still do.

09:50 But I wasn't like, oh, I have to go into computers so I can make a game.

09:53 I know a lot of people did.

09:54 But the reality of make a game now is get 100 of your, you know, highly skilled developers and artists friends together and work for a year, which doesn't make a lot of sense, right?

10:04 Yeah.

10:04 So you might make like a cool 2D scroll or retro thing.

10:07 And this thing called Pyxel, P-Y-X-E-L, like pixel, Python, pixel sort of thing, is a retro game engine for Python.

10:15 How fun.

10:16 So the idea is you only get 16 colors.

10:17 You get four sounds that can be played at the same time.

10:21 It's a Python 3 run game platform.

10:25 It runs on all the major platforms, Windows, macOS, and Linux.

10:29 It even comes with a bunch of cool examples.

10:31 So if you pip install it, then you can just run install Pyxel examples.

10:35 And then you can go and explore them.

10:37 But what do you think?

10:38 Looking at some of the screenshots there.

10:40 It looks kind of fun.

10:41 I got to try to check this out.

10:43 Yeah.

10:43 You don't have to be like massively skilled to create the graphics because you only get like a few colors.

10:47 You only get like a certain size.

10:50 It's not, you know, you don't have to be crazy artistic game studio type place to make this.

10:56 Yeah.

10:56 These are the types of video games that I grew up on.

10:58 So yeah.

10:59 Yeah.

11:00 I think people might enjoy this.

11:01 And like I said, I think it makes it pretty accessible.

11:04 It's an interesting way to bring UI capabilities to Python for people who might want to, like if you are doing some sort of programming class or you're doing, you know, like a school club or an hour of code type of thing.

11:19 An hour of code is probably too short.

11:20 But, you know, those types of projects where you want to let, especially kids who are impatient and don't care that much for terminal apps and are not ready for web apps, like they could build a fun little thing if you gave them this as a foundation.

11:31 Yeah.

11:32 Each house.

11:33 So cool.

11:33 Yeah.

11:34 If people are into retro games, check this out.

11:36 You can create your own with Python.

11:37 What if I don't want to create a game?

11:39 I just want to create a command line interface.

11:41 You mean like most apps?

11:43 Yeah.

11:43 So that's, you could even make your game have command line interfaces.

11:48 Yeah.

11:49 So there's a couple of options, right?

11:50 You could use sys.argv.

11:52 That'd be pretty awesome.

11:53 That's pretty extensible.

11:54 You could also use higher level things like argparse or click, right?

12:00 Click.

12:00 Yeah.

12:01 Yeah.

12:01 What's up with click?

12:02 I know there's a lot of great options and sometimes you just reach for what you know.

12:05 And since I've written a few command line interfaces from the sys.args and not enjoyed it, I have enjoyed working with click.

12:14 And so click's been around for a while.

12:15 But the news, really, I wanted to highlight it because it's cool that the click version 7 was released recently.

12:23 And there's a huge list of, I mean, normally we don't just cover a version update of something just for the heck of it because things update all the time.

12:36 Except for click doesn't update all the time.

12:39 The last version of click was released January of 2017.

12:44 So that's neat that we have a new one.

12:46 So there's all sorts of fun stuff in here.

12:49 I don't know what I'm really excited about.

12:51 There's ZShell auto-completion support that was added.

12:54 That's kind of neat.

12:56 That is quite cool.

12:57 I use ohmyzsh, which I love.

12:59 And this is really exciting for me because it's based on ZShell.

13:03 One of the other things is click interfaces have, they include a help option.

13:07 You can do --help and it tells you what the options are for your command line interface and how to call it.

13:14 You have to build that sort of stuff in, but it's pretty easy to write up.

13:17 But one of the things they've added is that if you do it wrong, it doesn't tell you, it just says this is wrong or something.

13:22 It doesn't tell you, it doesn't point to the help.

13:25 But now it does.

13:26 So in this version, any usage errors will now hint at using the help option, which is cool.

13:32 Yeah, I like it.

13:33 And actually, there's pages and pages and pages of updates.

13:36 There's a lot of stuff that changed.

13:37 So good job, folks.

13:39 And I didn't realize it was part of the Palettes project, which is also Flask, the people that work on Flask.

13:45 Yeah, yeah, it's part of Palettes.

13:47 And you talked about how it hasn't been updated in a while and this is a major release.

13:51 Like Flask just went 1.0 and we talked about that a little while ago as well.

13:54 That's pretty awesome.

13:55 Yeah.

13:55 And I know that the Palettes people, they take donations for if you're utilizing this and want to help out.

14:02 They would love to have your money.

14:03 They would.

14:05 They would.

14:05 They have a special arrangement with the PSF.

14:09 So it's sort of a nonprofit thing as well somehow, I think.

14:11 Yeah.

14:12 And nice people too.

14:13 Yep, absolutely.

14:14 So this is cool.

14:15 I'm glad you highlighted it.

14:16 I want to understand the ZSH autocomplete a little bit more.

14:19 That's sweet.

14:19 So, Brian, do you use the cloud much?

14:22 I think so.

14:23 Well, we live in Oregon, so we get lots of clouds.

14:25 Oh, yeah.

14:25 We, like, definitely use the cloud at least half the year.

14:27 Yeah.

14:29 No, so.

14:31 That was a really bad joke.

14:33 It's a pretty good one.

14:34 Yeah, I liked it.

14:35 So one of the challenges of especially, like, platform as a service and things that are not infrastructure but other stuff, database as a service and other higher order things, is that you often pay, like, as you use them.

14:51 Right?

14:51 And, like, if I use a virtual machine, I turn on the virtual machine, I know what it costs.

14:55 Right?

14:55 Like, I go to DigitalOcean, fire that thing up.

14:58 I know, like, the server that runs Python Bytes plus the database server.

15:02 I think they cost $15 a month together.

15:05 Right?

15:05 I know it's $15 pretty much other than bandwidth, which is mostly covered.

15:09 If you use something like, say, Firebase or AWS Lambda or other things, like, you pay as you use it.

15:16 And generally that's to your advantage.

15:18 Right.

15:19 But the you isn't really you.

15:20 The you is your users are using it.

15:22 Right.

15:23 And you don't necessarily know how much your users are going to use it.

15:25 Right.

15:25 I mean, it's a good problem to have.

15:27 Like, I have lots of users.

15:28 They're using my app a lot.

15:29 So I'm using my cloud service a lot.

15:31 But it's super, super scaling.

15:33 And it turns out that if you program badly, you may have a higher bill than you otherwise expected.

15:42 Yeah.

15:43 So here's an example, which I think is just maybe a cautionary tale for everyone using clouds.

15:48 And it doesn't really too much depend on, like, what cloud you're using.

15:52 Anything that where the price depends upon user consumption.

15:56 I have a real world example for myself.

15:57 I'll tell you about it at the end.

15:59 But the article I want to cover here is the title is how we spent $30,000 in Firebase in less than three days.

16:06 Wow.

16:08 And Firebase is like a database as a service exposed over, like, HTTP endpoint for JavaScript type of thing.

16:15 Like, that's pretty much my understanding of it.

16:18 I don't really use it.

16:18 But it's like if I'm doing, say, an AngularJS or some kind of front-end JavaScript app, I can, like, just connect to Firebase straight from my client-side code.

16:27 And then we're good.

16:29 It can do the various things that it needs to do.

16:31 Right.

16:31 So there's this place called Vaki, something like that, in Columbia.

16:37 And it's, like, kind of like Kickstarter, but Colombian.

16:40 And they had just launched.

16:42 And it turned out that they had this project on there that became the largest crowdfunding campaign in Columbia by, like, collecting three times as much money as anyone ever had in the first two days.

16:53 So they collected tons and tons of money.

16:56 They had, like, 2 million sessions, like, 20 million page views, 15,000, like, backings or whatever you call that.

17:02 Sounds good, right?

17:03 Well, it turns out the site was running really slow.

17:06 And the folks who built it, they were somewhat new developers.

17:09 They were like, I don't know what to do to make this work.

17:10 I know what.

17:11 Let's just upgrade all the frameworks.

17:13 We're using Angular 4.

17:14 Let's upgrade to Angular 6 or something to this.

17:16 It wasn't Angular.

17:17 Maybe it's React.

17:17 I don't know.

17:17 Whatever framework they have, they're just like, we're going to upgrade these things.

17:20 Nope.

17:20 That didn't fix it.

17:21 Right?

17:21 So they spent, like, a day, like, poking around.

17:23 And it was still running slow.

17:25 And it kept slowing down more and more.

17:27 They couldn't figure out what's going on.

17:28 And they logged into their Firebase account.

17:30 And they saw their bill was, like, $30,000.

17:32 It was costing $600 an hour more every hour.

17:36 Oh, wow.

17:36 Yikes.

17:37 And they're like, what is going on?

17:38 So it was like, you know, like, Firebase, you pay on, like, the number of calls and type

17:42 of thing.

17:42 So it turned out that they have this little part of the site, just like in Kickstarter, in

17:46 the right, it says there's this many contributions.

17:48 And currently, this much money has been, like, pledged towards this account.

17:51 And I think what happened was their implementation of showing that number, it didn't, like, summit

17:57 in the database.

17:58 It, like, sucked down all the payments table.

18:01 And then, like, added it in JavaScript.

18:04 And it kept doing that to, like, keep it live or something.

18:07 Yeah, every time somebody goes and looks.

18:09 Ah, yeah.

18:09 Yeah, exactly.

18:10 They made, like, 40 billion requests, billion with a B, to their, like, database.

18:14 And that got them, like, a $30,000 bill.

18:17 Yikes.

18:19 So it's pretty interesting.

18:22 Worth checking out, this article.

18:24 The comments are super interesting.

18:25 Some of them are super supportive.

18:27 And others are kind of mean.

18:28 You probably wouldn't imagine this.

18:30 But there's a theme of testing.

18:32 They should have tested better before they rolled out the site.

18:34 Well, yeah.

18:35 But you can't test everything and foresee.

18:37 Yeah, you can't foresee everything.

18:39 That's true.

18:39 Right.

18:40 And I'm sure it seemed fine when you tested it with, like, the 10 purchases they had in

18:44 their little test project.

18:45 But you put, you know, 15,000.

18:47 All of a sudden, it starts to behave badly.

18:49 Yeah.

18:49 And I heard about somebody doing some things, like, similar, not a success story, really.

18:55 Just somebody saying that they would run kind of some abuse testing against a local database

19:01 or local mock service.

19:02 And then set it all up.

19:04 And they were going to just see how it did for abuse testing over the weekend.

19:09 Got back and realized that they were not testing abuse testing in the lab.

19:14 They were abuse testing the live service.

19:16 And, yeah, similar issue.

19:18 A big, huge AWS bill because of the test running all the time.

19:23 So auto skill is amazing.

19:24 It just takes care of all the traffic you have.

19:26 Yeah.

19:28 Wait.

19:28 What?

19:29 How much does this cost?

19:30 So I was thinking about this article, like, a few weeks ago.

19:34 I'm thinking we might cover it on this episode.

19:35 And I'm thought, ah, good thing this doesn't happen to me.

19:38 Never do this.

19:39 Today.

19:40 Today.

19:41 Today.

19:43 Remember, I don't know if I told the audience this, but I know I told you this when we were

19:47 hanging out at PyCon last year.

19:48 Like, for my courses, I set up a whole bunch of different video servers throughout the world.

19:53 So I've got, like, one in Mumbai, one in Tokyo, one in Sydney, one in Frankfurt, and so on.

19:57 Wow.

19:57 And I got tired of synchronizing the files.

20:00 Yeah.

20:00 So I wrote this system that would automatically sync them across the world to these different

20:04 locations.

20:05 Well, it turned out there's a small find and replace that has to be done to adjust the

20:10 location from the source to the destination servers.

20:13 And I logged into that thing today, and it was still synchronizing just continuously.

20:17 I'm like, oh, no.

20:18 This server has been continuously downloading and uploading to S3 as fast as it can for two

20:25 weeks.

20:25 Oh, no.

20:26 I'm like, what is my AWS bill?

20:29 And I logged in, and it wasn't so bad.

20:31 It was, like, $300 more than normal, which is okay.

20:35 But I'm just like, yeah, that pretty much is exactly just a less bad version of what

20:39 happened to these guys.

20:40 And it was because of bad, it was a bad file replacement.

20:43 Basically, sync, the word sync was being replaced in some circumstances.

20:47 And I have a new course called Async.

20:49 And it was taking out the sync part.

20:51 And so it just, it kept going, oh, the file's not there.

20:53 We've got to upload it.

20:54 File's not there.

20:55 We've got to upload it.

20:55 You know, because they just, they mismatched.

20:57 Yeah, that was bad news.

20:59 Oh, yeah.

21:01 Anyway, so it can happen to anyone.

21:03 It happened to me this morning.

21:05 I fixed it, by the way.

21:07 Well, yeah.

21:08 If you're paying for any of those services, check once in a while to make sure that.

21:12 Yeah.

21:12 And you know what?

21:13 I actually, I have, that's kind of one of the takeaways, both from the article and from

21:17 why I wanted to say that, is I have an alarm set at AWS.

21:20 And it says, if my bill goes over this amount, send me an email.

21:23 If my bill goes over this amount, send me an email.

21:25 And I woke up and I saw that alarm as well.

21:28 I'm like, oh, that's not good.

21:29 Yeah.

21:31 So anyway, it's all fine.

21:32 But check it out.

21:33 It's definitely worth thinking about if you do anything that is in the cloud that is based

21:37 on consumption by users.

21:39 Yeah, definitely.

21:40 All right.

21:41 Well, that's our main items.

21:42 I have a really exciting one.

21:43 I wanted to get in, but actually, I just learned about it 15 minutes before we started recording.

21:49 So I didn't have time to dig into it.

21:51 So news is, Dropbox, Dropbox is one of the biggest users of Python, as we know.

21:56 And they have been stuck on Python 2 for what seems like eternity, which is so ironic because

22:00 Gita Van Rossum works there.

22:02 And some of the other core developers that work there is like, yeah, Python 2 all day.

22:06 You know, got to love it.

22:07 Right.

22:08 So the big news is, as of yesterday, Dropbox is now upgraded to Python 3.

22:12 And they have like a nice article right up on it.

22:15 We'll cover it in more depth next week.

22:16 But I'm going to link to it now since it's timely and important.

22:19 That's so cool, though.

22:20 Yeah.

22:20 Very neat.

22:21 Yeah.

22:21 What about conferences?

22:22 Well, we just got an announcement.

22:24 I think I just saw this today that the call for proposals for the 2019 PyCon is now open.

22:30 Oh, really?

22:31 Yeah.

22:31 That's pretty awesome.

22:32 So you can get started on your proposals for next year.

22:36 Yeah.

22:37 I'm thinking about those for sure.

22:38 I definitely have some stuff I want to propose.

22:40 So thanks.

22:41 Yeah.

22:41 See, I learned about stuff right here on the show.

22:43 All I got to do is just sit here.

22:44 Yeah.

22:44 And the PyCascades is still open, too.

22:46 Yeah.

22:47 Until October.

22:48 Yeah.

22:49 So it's proposal time, I guess.

22:50 It's definitely proposal time.

22:52 Also, PyTennessee.

22:54 I can't go, but I know that they have their call for proposals open as well.

22:57 So there's lots of conferences.

22:58 You know, conferences are a spring-summer type thing a lot of times.

23:01 And so the call for proposals are, you know, sort of now.

23:04 Yeah.

23:04 I mean, you know, why not spend your holiday season coming up with things to...

23:09 Yeah.

23:09 That's what I'm doing on Thanksgiving for sure.

23:12 Maybe Halloween as well.

23:13 My kids will love it.

23:13 You know what's scary?

23:14 This talk's going to be scary.

23:15 No, Dad, I want to get candy.

23:17 This is even better than candy.

23:19 No, if you wait until Halloween, you'll miss the PyCascades.

23:22 You got to do that before.

23:23 That's true.

23:23 Yeah, that's true.

23:24 I can't do that.

23:25 All right.

23:25 Anyway.

23:25 No, I won't wait.

23:26 You got one more?

23:27 Worse?

23:28 I got one more.

23:28 So I just released, like, literally an hour and 15 minutes ago or so, released a new course

23:35 called Async Techniques and Examples in Python.

23:37 And this one is something I'm super excited about.

23:40 I've been wanting this course to exist ever since I started in Python.

23:44 And I've decided that I'm going to put in the time to create it.

23:48 And so I just launched a five-hour course on all the async things in Python.

23:52 Oh, that's very exciting.

23:53 Because I want to learn all the async things in Python.

23:56 So I'll have to check that out.

23:57 Well, I have a resource to recommend.

23:58 Yeah.

23:58 So I put the link in the show notes.

23:59 People can check it out at training.talkpython.fm.

24:02 Should be in the course list.

24:04 Nice.

24:04 Cool.

24:05 Yep, definitely.

24:05 All right, Brian.

24:06 Thanks for being here and sharing this with everyone.

24:09 Yeah, thank you.

24:10 You bet.

24:10 Bye.

24:10 Bye.

24:10 Thank you for listening to Python Bytes.

24:13 Follow the show on Twitter via at Python Bytes.

24:16 That's Python Bytes as in B-Y-T-E-S.

24:19 And get the full show notes at pythonbytes.fm.

24:22 If you have a news item you want featured, just visit pythonbytes.fm and send it our way.

24:26 We're always on the lookout for sharing something cool.

24:29 On behalf of myself and Brian Okken, this is Michael Kennedy.

24:33 Thank you for listening and sharing this podcast with your friends and colleagues.

Back to show page