Python Bytes Developer headlines delivered directly to your earbuds Python Bytes is a weekly podcast hosted by Michael Kennedy and Brian Okken. The show is a short discussion on the headlines and noteworthy news in the Python, developer, and data science space. Python Bytes is a weekly podcast hosted by Michael Kennedy and Brian Okken. The show is a short discussion on the headlines and noteworthy news in the Python, developer, and data science space. https://pythonbytes.fm/ en-us Copyright 2016-2026 Mon, 06 Apr 2026 00:00:00 -0800 Mon, 06 Apr 2026 00:00:00 -0800 https://pythonbytes.fm michael@pythonbytes.fm (Michael Kennedy) 60 Michael Kennedy and Brian Okken Michael Kennedy mikeckennedy@gmail.com false episodic yes c39e616f-74f1-52c5-90fb-ac094bffd068 #476 Common themes https://pythonbytes.fm/episodes/show/476/common-themes d48e0bde-87c5-4c3a-8039-a14027f046a0 Mon, 06 Apr 2026 00:00:00 -0800 Michael Kennedy and Brian Okken #476: Common themes 476 false 00:32:22 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
Watch on YouTube

About the show

Sponsored by us! Support our work through:

Connect with the hosts

Join us on YouTube at pythonbytes.fm/live to be part of the audience. Usually Monday at 11am PT. Older video versions available there too.

Finally, if you want an artisanal, hand-crafted digest of every week of the show notes in email form? Add your name and email to our friends of the show list, we'll never share it.

Brian #1: Migrating from mypy to ty: Lessons from FastAPI

  • Tim Hopper
  • I saw this post by Sebastián Ramírez about all of his projects switching to ty
    • FastAPI, Typer, SQLModel, Asyncer, FastAPI CLI
  • SqlModel is already ty only - mypy removed
  • This signals that ty is ready to use
  • Tim lists some steps to apply ty to your own projects
    • Add ty alongside mypy
    • Set error-on-warning = true
    • Accept the double-ignore comments
    • Pick a smaller project to cut over first
    • Drop mypy when the noise exceeds the signalAdd ty alongside mypy
  • Related anecdote:
    • I had tried out ty with pytest-check in the past with difficulty
    • Tried it again this morning, only a few areas where mypy was happy but ty reported issues
    • At least one ty warning was a potential problem for people running pre-releases of pytest,
    • Not really related: packaging.version.parse is awesome

Michael #2: Oxyde ORM

  • Oxyde ORM is a type-safe, Pydantic-centric asynchronous ORM with a high-performance Rust core.
  • Note: Oxyde is a young project under active development. The API may evolve between minor versions.
  • No sync wrappers or thread pools. Oxyde is async from the ground up
  • Includes oxyde-admin
  • Features
    • Django-style API - Familiar Model.objects.filter() syntax
    • Pydantic v2 models - Full validation, type hints, serialization
    • Async-first - Built for modern async Python with asyncio
    • Rust performance - SQL generation and execution in native Rust
    • Multi-database - PostgreSQL, SQLite, MySQL support
    • Transactions - transaction.atomic() context manager with savepoints
    • Migrations - Django-style makemigrations and migrate CLI

Brian #3: Typeshedded CPython docs

Michael #4: Raw+DC Database Pattern: A Retrospective

  • A new design pattern I’m seeing gain traction in the software space: Raw+DC: The ORM pattern of 2026
  • I’ve had a chance to migrate three of my most important web app.
  • Thrilled to report that yes, the web app is much faster using Raw+DC
  • Plus, this was part of the journey to move from 1.3 GB memory usage to 0.45 GB (more on this next week)

Extras

Brian:

Michael:

Joke:

]]>
#475 Haunted warehouses https://pythonbytes.fm/episodes/show/475/haunted-warehouses 22382cb3-6708-4ac3-90f1-ca0ecb77260a Mon, 30 Mar 2026 00:00:00 -0800 Michael Kennedy and Brian Okken #475: Haunted warehouses 475 false 00:40:54 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
Watch on YouTube

About the show

Sponsored by us! Support our work through:

Join us on YouTube at pythonbytes.fm/live to be part of the audience. Usually Monday at 11am PT. Older video versions available there too.

Finally, if you want an artisanal, hand-crafted digest of every week of the show notes in email form? Add your name and email to our friends of the show list, we'll never share it.

Michael #1: Lock the Ghost

  • The five core takeaways:
    1. PyPI "removal" doesn't delete distribution files. When a package is removed from PyPI, it disappears from the index and project page, but the actual distribution files remain accessible if you have a direct URL to them.
    2. uv.lock uniquely preserves access to ghost packages. Because uv.lock stores direct URLs to distribution files rather than relying on the index API at install time, uv sync can successfully install packages that have already been removed, even with cache disabled. No other Python lock file implementation tested behaved this way.
    3. This creates a supply chain attack vector. An attacker could upload a malicious package, immediately remove it to dodge automated security scanning, and still have it installable via a uv.lock file, or combine this with the xz-style strategy of hiding malicious additions in large, auto-generated lock files that nobody reviews.
    4. Removed package names can be hijacked with version collisions. When an owner removes a package, the name can be reclaimed by someone else who can upload different distribution types under the same version number, as happened with "umap." Lock files help until you regenerate them, then you're exposed.
    5. Your dependency scanning needs to cover lock files, not just manifest files. Scanning only pyproject.toml or requirements.txt misses threats embedded in lock files, which is where the actual resolved URLs and hashes live.

Brian #2: Fence for Sandboxing

  • Suggested by Martin Häcker
  • “Some coding platforms have since integrated built-in sandboxing (e.g., Claude Code) to restrict write access to directories and/or network connectivity. However, these safeguards are typically optional and not enabled by default.”
  • “JY Tan (on cc) has extracted the sandboxing logic from Claude Code and repackaged it into a standalone Go binary.”
  • Source code on GitHub: https://github.com/Use-Tusk/fence
  • Related:

Michael #3: MALUS: Liberate Open Source

  • via Paul Bauer
  • The service will generate the specs of a library with one AI and build the newly licensed library using the specs with another AI circumventing the licensing and copyright rules.
  • AI that has not been trained on open source reads the docs and API signature, creates a spec. Another AI processes that spec into working software.
  • Is it a real site? Are they accepting real money, or are they just trying to cause a stir around copyright?

Brian #4: Harden your GitHub Actions Workflows with zizmor, dependency pinning, and dependency cooldowns

Extras

Brian:

Michael:

Joke: Can you?

]]>
#474 Astral to join OpenAI https://pythonbytes.fm/episodes/show/474/astral-to-join-openai 67a866b3-fdf1-4c1a-9b1c-3d8658788248 Mon, 23 Mar 2026 00:00:00 -0800 Michael Kennedy and Brian Okken #474: Astral to join OpenAI 474 false 00:45:33 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
Watch on YouTube

About the show

Sponsored by us! Support our work through:

Brian #1: Starlette 1.0.0

  • As a reminder, Starlette is the foundation for FastAPI
  • Starlette 1.0 is here! - fun blog post from Marcello Trylesinski
  • “The changes in 1.0 were limited to removing old deprecated code that had been on the way out for years, along with a few bug fixes. From now on we'll follow SemVer strictly.”
  • Fun comment in the “What’s next?” section:
    • “Oh, and Sebastián, Starlette is now out of your way to release FastAPI 1.0. 😉”
  • Related: Experimenting with Starlette 1.0 with Claude skills
    • Simon Willison
    • example of the new lifespan mechanism, very pytest fixture-like
      @contextlib.asynccontextmanager
      async def lifespan(app):
      async with some_async_resource():
          print("Run at startup!")
          yield
          print("Run on shutdown!")
      app = Starlette(
      routes=routes,
      lifespan=lifespan
      )
      

Michael #2: Astral to join OpenAI

  • via John Hagen, thanks
  • Astral has agreed to join OpenAI as part of the Codex team
  • Congrats Charlie and team
  • Seems like **Ruff** and uv play an important roll.
  • Perhaps ty holds the most value to directly boost Codex (understanding codebases for the AI)
  • All that said, these were open source so there is way more to the motivations than just using the tools.
  • After joining the Codex team, we'll continue building our open source tools.
  • Simon Willison has thoughts
  • discuss.python.org also has thoughts
  • The Ars Technica article has interesting comments too
  • It’s probably the death pyx
    • Simon points out “pyx is notably absent from both the Astral and OpenAI announcement posts.”

Brian #3: uv audit

  • Submitted by Owen Lemont
  • Pieces of uv audit have been trickling in. uv 0.10.12 exposes it to the cli help
  • Here’s the roadmap for uv audit
  • I tried it out on a package and found a security issue with a dependency
    • not of the project, but of the testing dependencies
    • but only if using Python < 3.10, even though I’m using 3.14
  • Kinda cool
  • Looks like it generates a uv.lock file, which includes dependencies for all project supported versions of Python and systems, which is a very thorough way to check for vulnerabilities.
  • But also, maybe some pointers on how to fix the problem would be good. No --fix yet.

Michael #4: Fire and forget (or never) with Python’s asyncio

  • Python’s asyncio.create_task() can silently garbage collect your fire-and-forget tasks starting in Python 3.12
  • Formerly fine async code can now stop working, so heads up
  • The fix? Use a set to upgrade to a strong ref and a callback to remove it
  • Is there a chance of task-based memory leaks? Yeah, maybe.

Extras

Brian:

Joke: We now have translation services

]]>
#473 A clean room rewrite? https://pythonbytes.fm/episodes/show/473/a-clean-room-rewrite bccee6be-cb59-47da-9b37-c23b1e225e6e Mon, 16 Mar 2026 00:00:00 -0800 Michael Kennedy and Brian Okken #473: A clean room rewrite? 473 false 00:46:10 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
Watch on YouTube

About the show

Sponsored by us! Support our work through:

Connect with the hosts

Join us on YouTube at pythonbytes.fm/live to be part of the audience. Usually Monday at 10am PT. Older video versions available there too.

Finally, if you want an artisanal, hand-crafted digest of every week of the show notes in email form? Add your name and email to our friends of the show list, we'll never share it.

Michael #1: chardet ,AI, and licensing

  • Thanks Ian Lessing
  • Wow, where to start?
  • A bit of legal precedence research.
  • Chardet dispute shows how AI will kill software licensing, argues Bruce Perens on the Register
  • Also see this GitHub issue.
  • Dan Blanchard, maintainer of a Python character encoding detection library called chardet, released a new version of the library under a new software license. (LGPL → MIT)
  • Dan is allowed to make this change because v7 is a complete “clean room” rewrite using AI
  • BTW, v7 is WAY better:
    • The result is a 48x increase in detection speed for a project that lives in the hot loops of many projects. That will lead to noticeable performance increases for literally millions of users (the package gets ~130M downloads per month).
    • It paves a path towards inclusion in the standard library (assuming they don’t institute policies against using AI tools).
    • Thread-safe detect() and detect_all() with no measurable overhead; scales on free-threaded Python 3.13t+
  • An individual claiming to be Mark Pilgrim, the original creator of the library, opened an issue in the project's GitHub repo arguing that Blanchard had no right to change the software license, citing the LPGL requirement that the license remain unchanged.
  • A 'complete rewrite' is irrelevant, since they had ample exposure to the originally licensed code (i.e. this is not a 'clean room' implementation).
  • Blanchard disagreed, citing how version 7.0.0 and 6.0.0 compare when subjected to JPlag, a library for detecting plagiarism.
  • Blanchard told The Register he had wanted to get chardet added to the Python standard library for more than a decade since it’s a core dependency to most Python projects.

Brian #2: refined-github

  • Suggested by Matthias Schöttle
  • A browser plugin that improves the GitHub experience
  • A sampling
    • Adds a build/CI status icon next to the repo’s name.
    • Adds a link back to the PR that ran the workflow.
    • Enables tab and shift tab for indentation in comment fields.
    • Auto-resizes comment fields to fit their content and no longer show scroll bars.
    • Highlights the most useful comment in issues.
    • Changes the default sort order of issues/PRs to Recently updated.
  • But really, it’s a huge list of improvements

Michael #3: pgdog: PostgreSQL connection pooler, load balancer and database sharder

  • PgDog is a proxy for scaling PostgreSQL.
  • It supports connection pooling, load balancing queries and sharding entire databases.
  • Written in Rust, PgDog is fast, secure and can manage thousands of connections on commodity hardware.
  • Features
    • PgDog is an application layer load balancer for PostgreSQL
    • Health Checks: PgDog maintains a real-time list of healthy hosts. When a database fails a health check, it's removed from the active rotation and queries are re-routed to other replicas
    • Single Endpoint: PgDog can detect writes (e.g. INSERT, UPDATE, CREATE TABLE, etc.) and send them to the primary, leaving the replicas to serve reads
    • Failover: PgDog monitors Postgres replication state and can automatically redirect writes to a different database if a replica is promoted
    • Sharding: PgDog is able to manage databases with multiple shards

Brian #4: Agentic Engineering Patterns

Extras

Brian:

Michael:

Joke: Ergonomic keyboard

Also pretty good and related:

Links

]]>
#472 Monorepos https://pythonbytes.fm/episodes/show/472/monorepos a5787e78-90f4-4773-835e-8ff3318f3022 Mon, 09 Mar 2026 00:00:00 -0800 Michael Kennedy and Brian Okken #472: Monorepos 472 false 00:28:52 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
Watch on YouTube

About the show

Sponsored by us! Support our work through:

Connect with the hosts

Brian #1: Setting up a Python monorepo with uv workspaces

  • Dennis Traub
  • The 3 things
    • Give the Root a Distinct Name
    • Use workspace = true for Inter-Package Deps
    • Use importlib Mode for pytest

Michael #2: cattrs: Flexible Object Serialization and Validation

  • cattrs is a Swiss Army knife for (un)structuring and validating data in Python.
  • A natural alternative/follow on from DataClass Wizard
  • Converts to ←→ from dictionaries
  • cattrs also focuses on functional composition and not coupling your data model to its serialization and validation rules.
  • When you’re handed unstructured data (by your network, file system, database, …), cattrs helps to convert this data into trustworthy structured data.
  • Batteries Included: cattrs comes with pre-configured converters for a number of serialization libraries, including JSON (standard library, orjson, UltraJSON), msgpack, cbor2, bson, PyYAML, tomlkit and msgspec (supports only JSON at this time).

Brian #3: Learning to program in the AI age

  • Jose Blanca
  • “I teach a couple of introductory Python courses and I've been thinking about which advice to give to my students, that are studying how to program for the first time. I have collected my ideas in these blog posts”
    • Why learning to program is as useful as ever, even with powerful AI tools available.
    • How to use AI as a tutor rather than a shortcut, and why practice remains the key to real understanding.
    • What the real learning objectives are: mental models, managing complexity, and thinking like a software developer.

Michael #4: VS Code extension for FastAPI and friends

  • Enhances the FastAPI development experience in Visual Studio Code
  • Path Operation Explorer: Provides a hierarchical tree view of all FastAPI routes in your application.
  • Search for routes: Use the Command Palette and quickly search for routes by path, method, or name.
  • CodeLens links appear above HTTP client calls like client.get('/items'), letting you jump directly to the matching route definition.
  • Deploy your application directly to FastAPI Cloud from the status bar with zero config.
  • View real-time logs from your FastAPI Cloud deployed applications directly within VS Code.
  • Install from Marketplace.

Extras

Brian:

Joke: Saas is dead

]]>
#471 The ORM pattern of 2026? https://pythonbytes.fm/episodes/show/471/the-orm-pattern-of-2026 d4444cd8-0ed5-4c82-8a59-4fa40653074d Mon, 02 Mar 2026 00:00:00 -0800 Michael Kennedy and Brian Okken #471: The ORM pattern of 2026? 471 false 00:39:23 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
Watch on YouTube

About the show

Sponsored by us! Support our work through:

Michael #1: Raw+DC: The ORM pattern of 2026?

  • ORMs/ODMs provide great support and abstractions for developers
  • They are not the native language of agentic AI
  • Raw queries are trained 100x+ more than standard ORMs
  • Using raw queries at the data access optimizes for AI coding
  • Returning some sort of object mapped to the data optimizes for type safety and devs

Brian #2: pytest-check releases

  • 3 merged pull requests
  • 8 closed issues
  • at one point got to 0 PR’s and 1 enhancement request
  • Now back to 2 issues and 1 PR, but activity means it’s still alive and being used. so cool
  • Check out changelog for all mods
  • A lot of changes around supporting mypy
    • I’ve decided to NOT have the examples be fully --strict as I find it reduces readability
      • See tox.ini for explanation
    • But src is --strict clean now, so user tests can be --strict clean.

Michael #3: Dataclass Wizard

  • Simple, elegant wizarding tools for Python’s dataclasses.
  • Features
    • 🚀 Fast — code-generated loaders and dumpers
    • 🪶 Lightweight — pure Python, minimal dependencies
    • 🧠 Typed — powered by Python type hints
    • 🧙 Flexible — JSON, YAML, TOML, and environment variables
    • 🧪 Reliable — battle-tested with extensive test coverage
  • No Inheritance Needed

Brian #4: SQLiteo - “native macOS SQLite browser built for normal people”

  • Adam Hill
  • This is a fun tool, built by someone I trust.
  • That trust part is something I’m thinking about a lot in these days of dev+agent built tools
  • Some notes on my thoughts when evaluating
    • I know mac rules around installing .dmg files not from the apple store are picky.
      • And I like that
    • But I’m ok with the override when something comes from a dev I trust
    • The contributors are all Adam
      • I’m still not sure how I feel about letting agents do commits in repos
    • There’s “AGENTS” folder and markdown files in the project for agents, so Ad

Extras

Michael:

Joke: House is read-only!

]]>
#470 A Jolting Episode https://pythonbytes.fm/episodes/show/470/a-jolting-episode b3101d3a-55a9-4d16-8e1d-93e4df817b22 Mon, 23 Feb 2026 00:00:00 -0800 Michael Kennedy and Brian Okken #470: A Jolting Episode 470 false 00:25:29 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
Watch on YouTube

About the show

Sponsored by us! Support our work through:

Brian #1: Better Python tests with inline-snapshot

  • Alex Hall, on Pydantic blog
  • Great for testing complex data structures
  • Allows you to write a test like this:

    from inline_snapshot import snapshot
    def test_user_creation():
        user = create_user(id=123, name="test_user")
        assert user.dict() == snapshot({})
    
  • Then run pytest --inline-snapshot=fix

  • And the library updates the test source code to look like this:

    def test_user_creation():
        user = create_user(id=123, name="test_user")
        assert user.dict() == snapshot({
            "id": 123,
            "name": "test_user",
            "status": "active"
        })
    
  • Now, when you run the code without “fix” the collected data is used for comparison

  • Awesome to be able to visually inspect the test data right there in the test code.
  • Projects mentioned

Michael #2: jolt Battery intelligence for your laptop

  • Support for both macOS and Linux
  • Battery Status — Charge percentage, time remaining, health, and cycle count
  • Power Monitoring — System power draw with CPU/GPU breakdown
  • Process Tracking — Processes sorted by energy impact with color-coded severity
  • Historical Graphs — Track battery and power trends over time
  • Themes — 10+ built-in themes with dark/light auto-detection
  • Background Daemon — Collect historical data even when the TUI isn't running
  • Process Management — Kill energy-hungry processes directly

Brian #3: Markdown code formatting with ruff

  • Suggested by Matthias Schoettle
  • ruff can now format code within markdown files
  • Will format valid Python code in code blocks marked with python, py, python3 or py3.
  • Also recognizes pyi as Python type stub files.
  • Includes the ability to turn off formatting with comment <!-- fmt:off --> , <!-- fmt:on --> blocks.
  • Requires preview mode
    [tool.ruff.lint]
    preview = true
    

Michael #4: act - run your GitHub actions locally

  • Run your GitHub Actions locally! Why would you want to do this? Two reasons:
    • Fast Feedback - Rather than having to commit/push every time you want to test out the changes you are making to your .github/workflows/ files (or for any changes to embedded GitHub actions), you can use act to run the actions locally. The environment variables and filesystem are all configured to match what GitHub provides.
    • Local Task Runner - I love make. However, I also hate repeating myself. With act, you can use the GitHub Actions defined in your .github/workflows/ to replace your Makefile!
  • When you run act it reads in your GitHub Actions from .github/workflows/ and determines the set of actions that need to be run.
    • Uses the Docker API to either pull or build the necessary images, as defined in your workflow files and finally determines the execution path based on the dependencies that were defined.
    • Once it has the execution path, it then uses the Docker API to run containers for each action based on the images prepared earlier.
    • The environment variables and filesystem are all configured to match what GitHub provides.

Extras

Michael:

Joke: Plug ‘n Paste

]]>
#469 Commands, out of the terminal https://pythonbytes.fm/episodes/show/469/commands-out-of-the-terminal f062499b-6358-48de-86d0-35b724f0930d Mon, 09 Feb 2026 00:00:00 -0800 Michael Kennedy and Brian Okken #469: Commands, out of the terminal 469 false 00:33:56 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
Watch on YouTube

About the show

Sponsored by us! Support our work through:

Michael #1: Command Book App

  • New app from Michael
  • Command Book App is a native macOS app for developers, data scientists, AI enthusiasts and more.
  • This is a tool I've been using lately to help build Talk Python, Python Bytes, Talk Python Training, and many more applications.
  • It's a bit like advanced terminal commands or complex shell aliases, but hosted outside of your terminal. This leaves the terminal there for interactive commands, exploration, short actions.
  • Command Book manages commands like "tail this log while I'm developing the app", "Run the dev web server with true auto-reload", and even "Run MongoDB in Docker with exactly the settings I need"
  • I'd love it if you gave it a look, shared it with your team, and send me feedback.
  • Has a free version and paid version.
  • Build with Swift and Swift UI
  • Check it out at https://commandbookapp.com

Brian #2: uvx.sh: Install Python tools without uv or Python

  • Tim Hopper

Michael #3: Ending 15 years of subprocess polling

  • by Giampaolo Rodola
  • The standard library's subprocess module has relied on a busy-loop polling approach since the timeout parameter was added to Popen.wait() in Python 3.3, around 15 years ago
  • The problem with busy-polling
    • CPU wake-ups: even with exponential backoff (starting at 0.1ms, capping at 40ms), the system constantly wakes up to check process status, wasting CPU cycles and draining batteries.
    • Latency: there's always a gap between when a process actually terminates and when you detect it.
    • Scalability: monitoring many processes simultaneously magnifies all of the above.
    • + L1/L2 CPU cache invalidations
  • It’s interesting to note that waiting via poll() (or kqueue()) puts the process into the exact same sleeping state as a plain time.sleep() call. From the kernel's perspective, both are interruptible sleeps.
  • Here is the merged PR for this change.

Brian #4: monty: A minimal, secure Python interpreter written in Rust for use by AI

  • Samuel Colvin and others at Pydantic
  • Still experimental
  • “Monty avoids the cost, latency, complexity and general faff of using a full container based sandbox for running LLM generated code. “
  • “Instead, it lets you safely run Python code written by an LLM embedded in your agent, with startup times measured in single digit microseconds not hundreds of milliseconds.”

Extras

Brian:

Michael:

Joke: Silence, current side project!

]]>
#468 A bolt of Django https://pythonbytes.fm/episodes/show/468/a-bolt-of-django 0b8a8835-2691-47e5-93c3-eb81a23de5c9 Tue, 03 Feb 2026 00:00:00 -0800 Michael Kennedy and Brian Okken #468: A bolt of Django 468 false 00:31:00 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
Watch on YouTube

About the show

Sponsored by us! Support our work through:

Connect with the hosts

Join us on YouTube at pythonbytes.fm/live to be part of the audience. Usually Monday at 11am PT. Older video versions available there too.

Finally, if you want an artisanal, hand-crafted digest of every week of the show notes in email form? Add your name and email to our friends of the show list, we'll never share it.

Brian #1: django-bolt : Faster than FastAPI, but with Django ORM, Django Admin, and Django packages

Michael #2: pyleak

  • Detect leaked asyncio tasks, threads, and event loop blocking with stack trace in Python. Inspired by goleak.
  • Has patterns for
    • Context managers
    • decorators
  • Checks for
    • Unawaited asyncio tasks
    • Threads
    • Blocking of an asyncio loop
    • Includes a pytest plugin so you can do @pytest.mark.no_leaks

Brian #3: More Django (three articles)

Michael #4: Datastar

Extras

Brian:

Michael:

Joke: Pushed to prod

]]>
#467 Toads in my AI https://pythonbytes.fm/episodes/show/467/toads-in-my-ai 1f52591d-c732-4147-a3b5-ca217223b6fc Mon, 26 Jan 2026 00:00:00 -0800 Michael Kennedy and Brian Okken #467: Toads in my AI 467 false 00:31:52 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
Watch on YouTube

About the show

Sponsored by us! Support our work through:

Connect with the hosts

Join us on YouTube at pythonbytes.fm/live to be part of the audience. Usually Monday at 11am PT. Older video versions available there too.

Finally, if you want an artisanal, hand-crafted digest of every week of the show notes in email form? Add your name and email to our friends of the show list, we'll never share it.

Michael #1: GreyNoise IP Check

  • GreyNoise watches the internet's background radiation—the constant storm of scanners, bots, and probes hitting every IP address on Earth.
  • Is your computer sending out bot or other bad-actor traffic? What about the myriad of devices and IoT things on your local IP?
  • Heads up: If your IP has recently changed, it might not be you (false positive).

Brian #2: tprof: a targeting profiler

Michael #3: TOAD is out

  • Toad is a unified experience for AI in the terminal
  • Front-end for AI tools such as OpenHands, Claude Code, Gemini CLI, and many more.
  • Better TUI experience (e.g. @ for file context uses fuzzy search and dropdowns)
  • Better prompt input (mouse, keyboard, even colored code and markdown blocks)
  • Terminal within terminals (for TUI support)

Brian #4: FastAPI adds Contribution Guidelines around AI usage

Extras

Brian:

Michael:

Joke: A date

  • via From Pat Decker
]]>
#466 PSF Lands $1.5 million https://pythonbytes.fm/episodes/show/466/psf-lands-1.5-million c3778c03-a7ff-4907-8e77-677a5b99514a Mon, 19 Jan 2026 00:00:00 -0800 Michael Kennedy and Brian Okken #466: PSF Lands $1.5 million 466 false 00:41:19 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
Watch on YouTube

About the show

Sponsored by us! Support our work through:

Connect with the hosts

Join us on YouTube at pythonbytes.fm/live to be part of the audience. Usually Monday at 11am PT. Older video versions available there too.

Finally, if you want an artisanal, hand-crafted digest of every week of the show notes in email form? Add your name and email to our friends of the show list, we'll never share it.

Brian #1: Better Django management commands with django-click and django-typer

  • Lacy Henschel
  • Extend Django manage.py commands for your own project, for things like
    • data operations
    • API integrations
    • complex data transformations
    • development and debugging
  • Extending is built into Django, but it looks easier, less code, and more fun with either django-click or django-typer, two projects supported through Django Commons

Michael #2: PSF Lands a $1.5 million sponsorship from Anthropic

  • Anthropic is partnering with the Python Software Foundation in a landmark funding commitment to support both security initiatives and the PSF's core work.
  • The funds will enable new automated tools for proactively reviewing all packages uploaded to PyPI, moving beyond the current reactive-only review process.
  • The PSF plans to build a new dataset of known malware for capability analysis
  • The investment will sustain programs like the Developer in Residence initiative, community grants, and infrastructure like PyPI.

Brian #3: How uv got so fast

  • Andrew Nesbitt
  • It’s not just be cause “it’s written in Rust”.
  • Recent-ish standards, PEPs 518 (2016), 517 (2017), 621 (2020), and 658 (2022) made many uv design decisions possible
  • And uv drops many backwards compatible decisions kept by pip.
  • Dropping functionality speeds things up.
    • “Speed comes from elimination. Every code path you don’t have is a code path you don’t wait for.”
  • Some of what uv does could be implemented in pip. Some cannot.
  • Andrew discusses different speedups, why they could be done in Python also, or why they cannot.
  • I read this article out of interest. But it gives me lots of ideas for tools that could be written faster just with Python by making design and support decisions that eliminate whole workflows.

Michael #4: PyView Web Framework

Extras

Brian:

  • Upgrade Django, has a great discussion of how to upgrade version by version and why you might want to do that instead of just jumping ahead to the latest version. And also who might want to save time by leapfrogging
    • Also has all the versions and dates of release and end of support.
  • The Lean TDD book 1st draft is done.
    • Now available through both pythontest and LeanPub
      • I set it as 80% done because of future drafts planned.
    • I’m working through a few submitted suggestions. Not much feedback, so the 2nd pass might be fast and mostly my own modifications. It’s possible.
    • I’m re-reading it myself and already am disappointed with page 1 of the introduction. I gotta make it pop more. I’ll work on that.
    • Trying to decide how many suggestions around using AI I should include.
      • It’s not mentioned in the book yet, but I think I need to incorporate some discussion around it.

Michael:

Joke: Reverse Superman

]]>
#465 Stack Overflow is Cooked https://pythonbytes.fm/episodes/show/465/stack-overflow-is-cooked 98b70916-830a-4832-94e6-8e6122d2af46 Mon, 12 Jan 2026 00:00:00 -0800 Michael Kennedy and Brian Okken #465: Stack Overflow is Cooked 465 false 00:35:34 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/465]]>
#464 Malicious Package? No Build For You! https://pythonbytes.fm/episodes/show/464/malicious-package-no-build-for-you 0a81cde8-9c15-4111-b916-289018cbbc25 Mon, 05 Jan 2026 00:00:00 -0800 Michael Kennedy and Brian Okken #464: Malicious Package? No Build For You! 464 false 00:30:18 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/464]]>
#463 2025 is @wrapped https://pythonbytes.fm/episodes/show/463/2025-is-wrapped 299b7703-0935-4ced-b3b4-ce24907f14a4 Mon, 22 Dec 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #463: 2025 is @wrapped 463 false 00:43:19 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/463]]>
#462 LinkedIn Cringe https://pythonbytes.fm/episodes/show/462/linkedin-cringe 2d074904-c5c6-4e0a-9e23-479e7a7cb468 Mon, 15 Dec 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #462: LinkedIn Cringe 462 false 00:35:40 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/462]]>
#461 This episdoe has a typo https://pythonbytes.fm/episodes/show/461/this-episdoe-has-a-typo 1d8bce40-0d77-421c-8ab5-6a3022cde172 Tue, 09 Dec 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #461: This episdoe has a typo 461 false 00:28:50 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/461]]>
#460 Overlooked Python Typing https://pythonbytes.fm/episodes/show/460/overlooked-python-typing 8ebc53bf-ad72-45f0-8f91-cfe0b7e0f2fa Mon, 01 Dec 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #460: Overlooked Python Typing 460 false 00:24:28 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/460]]>
#459 Inverted dependency trees https://pythonbytes.fm/episodes/show/459/inverted-dependency-trees 33a45dea-09cb-472f-9dbc-296397ea6def Mon, 24 Nov 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #459: Inverted dependency trees 459 false 00:32:54 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/459]]>
#458 I will install Linux on your computer https://pythonbytes.fm/episodes/show/458/i-will-install-linux-on-your-computer 29127f00-6a3f-4010-bdc6-e1db5c42db3c Mon, 17 Nov 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #458: I will install Linux on your computer 458 false 00:22:47 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/458]]>
#457 Tapping into HTTP https://pythonbytes.fm/episodes/show/457/tapping-into-http 08d8d335-625a-478a-9c8f-4114da1f6e47 Tue, 11 Nov 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #457: Tapping into HTTP 457 false 00:28:01 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/457]]>
#456 You're so wrong https://pythonbytes.fm/episodes/show/456/youre-so-wrong d11eae4d-632e-43f8-b7b3-0337d04ac43c Mon, 03 Nov 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #456: You're so wrong 456 false 00:25:46 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/456]]>
#455 Gilded Python and Beyond https://pythonbytes.fm/episodes/show/455/gilded-python-and-beyond e120853f-3b63-4d48-be69-99f6975a8ba9 Mon, 27 Oct 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #455: Gilded Python and Beyond 455 false 00:38:53 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/455]]>
#454 It's some form of Elvish https://pythonbytes.fm/episodes/show/454/its-some-form-of-elvish 5fa11eb6-67fc-4279-9657-358bc6a1e28a Mon, 20 Oct 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #454: It's some form of Elvish 454 false 00:29:07 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/454]]>
#453 Python++ https://pythonbytes.fm/episodes/show/453/python c1899096-d2d7-4e48-be84-5d6df976132b Thu, 16 Oct 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #453: Python++ 453 false 00:36:17 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/453]]>
#452 pi py-day (or is it py pi-day?) https://pythonbytes.fm/episodes/show/452/pi-py-day-or-is-it-py-pi-day 455792d8-5935-4617-b64a-86aa43bc3ad7 Thu, 09 Oct 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #452: pi py-day (or is it py pi-day?) 452 false 00:40:36 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/452]]>
#451 Databases are a Fad https://pythonbytes.fm/episodes/show/451/databases-are-a-fad 8fcf7062-dbac-49a4-ac58-471f657de1cb Mon, 29 Sep 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #451: Databases are a Fad 451 false 00:23:54 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/451]]>
#450 At-Cost Agentic IDE Tooling https://pythonbytes.fm/episodes/show/450/at-cost-agentic-ide-tooling ef5e6232-e423-4408-81be-760e0071baf7 Mon, 22 Sep 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #450: At-Cost Agentic IDE Tooling 450 false 00:32:55 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/450]]>
#449 Suggestive Trove Classifiers https://pythonbytes.fm/episodes/show/449/suggestive-trove-classifiers c915fb4a-054f-4704-8463-efa28f4f8960 Mon, 15 Sep 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #449: Suggestive Trove Classifiers 449 false 00:31:29 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/449]]>
#448 I'm Getting the BIOS Flavor https://pythonbytes.fm/episodes/show/448/im-getting-the-bios-flavor a072a0ac-adb6-424a-b99d-94bd6110c6c4 Mon, 08 Sep 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #448: I'm Getting the BIOS Flavor 448 false 00:39:14 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/448]]>
#447 Going down a rat hole https://pythonbytes.fm/episodes/show/447/going-down-a-rat-hole a43bd6d5-115c-47c5-942f-7ffaa45bade2 Tue, 02 Sep 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #447: Going down a rat hole 447 false 00:35:46 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/447]]>
#446 State of Python 2025 https://pythonbytes.fm/episodes/show/446/state-of-python-2025 1cda5dff-5cfe-4b8a-a8ec-cca623dd66fb Mon, 25 Aug 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #446: State of Python 2025 446 false 00:31:24 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/446]]>
#445 Auto-activate Python virtual environments for any project https://pythonbytes.fm/episodes/show/445/auto-activate-python-virtual-environments-for-any-project da939ccb-de01-4b6e-a2dc-9da1da90b4b2 Mon, 18 Aug 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #445: Auto-activate Python virtual environments for any project 445 false 00:29:46 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/445]]>
#444 Begone Python of Yore! https://pythonbytes.fm/episodes/show/444/begone-python-of-yore 45413961-9324-48e7-8dfd-5c54b3b7b60f Mon, 11 Aug 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #444: Begone Python of Yore! 444 false 00:25:44 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/444]]>
#443 Patching Multiprocessing https://pythonbytes.fm/episodes/show/443/patching-multiprocessing b4c8c5b1-0e17-4903-b6d2-de74d71c3c9c Mon, 04 Aug 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #443: Patching Multiprocessing 443 false 00:26:13 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/443]]>
#442 Cloud bills in scientific notation https://pythonbytes.fm/episodes/show/442/cloud-bills-in-scientific-notation c116cd8c-10e3-4382-b7cd-716a3f186ac9 Mon, 28 Jul 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #442: Cloud bills in scientific notation 442 false 00:22:34 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/442]]>
#441 It's Michaels All the Way Down https://pythonbytes.fm/episodes/show/441/its-michaels-all-the-way-down d0d17172-3808-4dcc-9806-f7089acdcd02 Mon, 21 Jul 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #441: It's Michaels All the Way Down 441 false 00:27:48 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/441]]>
#440 Can't Register for VibeCon https://pythonbytes.fm/episodes/show/440/cant-register-for-vibecon 200fd6c8-d827-4d45-afc1-314e4c1ba2f4 Tue, 15 Jul 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #440: Can't Register for VibeCon 440 false 00:25:20 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/440]]>
#439 That Astral Episode https://pythonbytes.fm/episodes/show/439/that-astral-episode 022f517e-2e3f-4395-8dc3-d3a3cca98835 Mon, 07 Jul 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #439: That Astral Episode 439 false 00:26:36 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/439]]>
#438 Motivation time https://pythonbytes.fm/episodes/show/438/motivation-time e939c589-a484-460c-8601-73b90260974c Mon, 30 Jun 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #438: Motivation time 438 false 00:33:28 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/438]]>
#437 Python Language Summit 2025 Highlights https://pythonbytes.fm/episodes/show/437/python-language-summit-2025-highlights a1b2cb9d-eb7a-4c7e-9e3e-1151403286b1 Mon, 23 Jun 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #437: Python Language Summit 2025 Highlights 437 false 00:34:28 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/437]]>
#436 Slow tests go last https://pythonbytes.fm/episodes/show/436/slow-tests-go-last 4627868e-2518-470a-b6af-3c0639b75fed Mon, 16 Jun 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #436: Slow tests go last 436 false 00:36:43 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/436]]>
#435 Stop with .folders in my ~/ https://pythonbytes.fm/episodes/show/435/stop-with-.folders-in-my 8496cc05-7d90-4627-8ad6-711c706a72b5 Mon, 09 Jun 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #435: Stop with .folders in my ~/ 435 false 00:25:34 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/435]]>
#434 Most of OpenAI’s tech stack runs on Python https://pythonbytes.fm/episodes/show/434/most-of-openai-s-tech-stack-runs-on-python bb51b99e-a758-4fdd-9a7f-79dfcfb2d307 Mon, 02 Jun 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #434: Most of OpenAI’s tech stack runs on Python 434 false 00:29:01 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/434]]>
#433 Dev in the Arena https://pythonbytes.fm/episodes/show/433/dev-in-the-arena f01afd2f-efc9-4969-b39a-d7b0aa45c4af Mon, 26 May 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #433: Dev in the Arena 433 false 00:28:40 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/433]]>
#432 How To Fix Your Computer https://pythonbytes.fm/episodes/show/432/how-to-fix-your-computer acf1af7c-1233-4330-aef7-ea2237c3f96d Mon, 19 May 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #432: How To Fix Your Computer 432 false 00:25:48 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/432]]>
#431 Nerd Gas https://pythonbytes.fm/episodes/show/431/nerd-gas b0c477e7-7d85-40d8-a874-2b7aa94711c1 Mon, 05 May 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #431: Nerd Gas 431 false 00:29:27 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/431]]>
#430 Or you go to jail https://pythonbytes.fm/episodes/show/430/or-you-go-to-jail 9b65bbb7-cfe7-4f1a-801a-ea9da4856d0b Mon, 28 Apr 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #430: Or you go to jail 430 false 00:29:11 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/430]]>
#429 Nitpicking Python https://pythonbytes.fm/episodes/show/429/nitpicking-python 362b1715-3a50-4525-baa2-66e36baf0ece Mon, 21 Apr 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #429: Nitpicking Python 429 false 00:27:24 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/429]]>
#428 How old is your Python? https://pythonbytes.fm/episodes/show/428/how-old-is-your-python f8a0eeee-3e15-4d5a-be29-9c732eee91e6 Mon, 14 Apr 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #428: How old is your Python? 428 false 00:31:00 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/428]]>
#427 Rise of the Python Lord https://pythonbytes.fm/episodes/show/427/rise-of-the-python-lord 02d7f1fb-5889-4572-b737-0c8ee46087e3 Mon, 07 Apr 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #427: Rise of the Python Lord 427 false 00:36:31 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/427]]>
#426 Committing to Formatted Markdown https://pythonbytes.fm/episodes/show/426/committing-to-formatted-markdown 9e1b34e3-7c21-4d9f-9ddf-b7bab2a44419 Mon, 31 Mar 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #426: Committing to Formatted Markdown 426 false 00:29:18 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/426]]>
#425 If You Were a Klingon Programmer https://pythonbytes.fm/episodes/show/425/if-you-were-a-klingon-programmer 0b870fd8-1001-411a-a699-1d2ec3004adf Mon, 24 Mar 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #425: If You Were a Klingon Programmer 425 false 00:37:55 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/425]]>
#424 We Will Test in Production https://pythonbytes.fm/episodes/show/424/we-will-test-in-production 77d69a3c-20d0-4656-b14e-03f1fe6235ce Mon, 17 Mar 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #424: We Will Test in Production 424 false 00:27:23 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/424]]>
#423 Traveling the Python Universe https://pythonbytes.fm/episodes/show/423/traveling-the-python-universe 0bb7967e-52da-4f7b-baac-391185a3e9be Mon, 10 Mar 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #423: Traveling the Python Universe 423 false 00:26:49 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/423]]>
#422 You need 4 spaces https://pythonbytes.fm/episodes/show/422/you-need-4-spaces b5c7a57a-8784-4a0d-b317-a5a45041ad05 Mon, 03 Mar 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #422: You need 4 spaces 422 false 00:32:52 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/422]]>
#421 22 years old https://pythonbytes.fm/episodes/show/421/22-years-old 1089b8b2-fdc8-44c8-801b-bf0cfc682035 Mon, 24 Feb 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #421: 22 years old 421 false 00:22:49 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/421]]>
#420 90% Done in 50% of the Available Time https://pythonbytes.fm/episodes/show/420/90-done-in-50-of-the-available-time fa09304e-a313-4b4d-afee-9cb4e080faf5 Mon, 17 Feb 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #420: 90% Done in 50% of the Available Time 420 false 00:27:47 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/420]]>
#419 Is your back end popular? https://pythonbytes.fm/episodes/show/419/is-your-back-end-popular 5c3cacf9-0972-4db5-aaf4-51da6a70fcb9 Tue, 04 Feb 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #419: Is your back end popular? 419 false 00:30:06 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/419]]>
#418 I'm a tea pot https://pythonbytes.fm/episodes/show/418/im-a-tea-pot 6f49d51e-0b88-4285-a795-864dd989952f Mon, 27 Jan 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #418: I'm a tea pot 418 false 00:20:22 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/418]]>
#417 Bugs hide from the light https://pythonbytes.fm/episodes/show/417/bugs-hide-from-the-light 87677871-2814-4728-ae31-41e73c537ced Tue, 21 Jan 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #417: Bugs hide from the light 417 false 00:23:35 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/417]]>
#416 A Ghostly Episode https://pythonbytes.fm/episodes/show/416/a-ghostly-episode 9c831209-e49c-49bd-8f4c-4a6b32f72fd3 Mon, 13 Jan 2025 00:00:00 -0800 Michael Kennedy and Brian Okken #416: A Ghostly Episode 416 false 00:43:41 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
  • Terminals & Shells
  • Winloop: An Alternative library for uvloop compatibility with windows
  • Ruff & uv
  • uv-secure
  • Extras
  • Joke
See the full show notes for this episode on the website at pythonbytes.fm/416]]>
#415 Just put the fries in the bag bro https://pythonbytes.fm/episodes/show/415/just-put-the-fries-in-the-bag-bro 66b04dde-6fa5-4558-bd81-d3c7ac12dac7 Mon, 23 Dec 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #415: Just put the fries in the bag bro 415 false 00:32:59 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/415]]>
#414 Because we are not monsters https://pythonbytes.fm/episodes/show/414/because-we-are-not-monsters 52205707-29b6-4ea4-80a9-4639904f2ae2 Mon, 16 Dec 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #414: Because we are not monsters 414 false 00:29:45 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/414]]>
#413 python-build-standalone finds a home https://pythonbytes.fm/episodes/show/413/python-build-standalone-finds-a-home 6a1c8c1c-a0f9-4921-b4dd-4f44873db89d Mon, 09 Dec 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #413: python-build-standalone finds a home 413 false 00:30:39 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/413]]>
#412 Closing the loop https://pythonbytes.fm/episodes/show/412/closing-the-loop 399f58be-5279-43ff-81f8-d8d99f715e56 Mon, 02 Dec 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #412: Closing the loop 412 false 00:26:00 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/412]]>
#411 TLS Client: Hello <<guitar solo>> https://pythonbytes.fm/episodes/show/411/tls-client-hello-guitar-solo 0430b90b-9d9f-4d38-bbfe-f6d36988b93b Mon, 25 Nov 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #411: TLS Client: Hello <<guitar solo>> 411 false 00:40:03 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/411]]>
#410 Entering the Django core https://pythonbytes.fm/episodes/show/410/entering-the-django-core 5ef2829f-b233-4237-8604-47995e360117 Mon, 18 Nov 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #410: Entering the Django core 410 false 00:30:42 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/410]]>
#409 We've moved to Hetzner write-up https://pythonbytes.fm/episodes/show/409/weve-moved-to-hetzner-write-up bf38fbfa-6a05-41a2-bee1-d51fc05e9eab Thu, 14 Nov 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #409: We've moved to Hetzner write-up 409 false 00:35:07 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/409]]>
#408 python-preference only-managed 3.13t https://pythonbytes.fm/episodes/show/408/python-preference-only-managed-3.13t 7857c2cb-dac3-45c6-bf24-5341009d747e Mon, 04 Nov 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #408: python-preference only-managed 3.13t 408 false 00:31:16 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/408]]>
#407 Back to the future, destination 3.14 https://pythonbytes.fm/episodes/show/407/back-to-the-future-destination-3.14 dcca2f17-ed7e-47c4-b60d-c4421d397cc7 Mon, 28 Oct 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #407: Back to the future, destination 3.14 407 false 00:28:26 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/407]]>
#406 What's on Django TV tonight? https://pythonbytes.fm/episodes/show/406/whats-on-django-tv-tonight 2fe110cf-4fff-4cca-9387-1e879b756f4e Mon, 21 Oct 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #406: What's on Django TV tonight? 406 false 00:24:53 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/406]]>
#405 Oh Really? https://pythonbytes.fm/episodes/show/405/oh-really 9b63cf0a-6857-494b-9d90-a3ea2970398c Mon, 14 Oct 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #405: Oh Really? 405 false 00:22:43 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/405]]>
#404 The Lost Episode https://pythonbytes.fm/episodes/show/404/the-lost-episode a79450ff-5201-4a49-897c-37e3411d9a29 Mon, 07 Oct 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #404: The Lost Episode 404 false 00:31:15 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/404]]>
#403 A machine learning algorithm walks into a bar… https://pythonbytes.fm/episodes/show/403/a-machine-learning-algorithm-walks-into-a-bar 3d20af42-3b2b-4ed1-91df-a9edeabe4695 Mon, 30 Sep 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #403: A machine learning algorithm walks into a bar… 403 false 00:25:26 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/403]]>
#402 How to monetize your blog https://pythonbytes.fm/episodes/show/402/how-to-monetize-your-blog d5fdb3c9-fc88-4e28-98ad-64cdb7918033 Mon, 23 Sep 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #402: How to monetize your blog 402 false 00:33:21 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/402]]>
#401 We must replace uWSGI with something else https://pythonbytes.fm/episodes/show/401/we-must-replace-uwsgi-with-something-else 85613b5f-d1dc-4909-8064-38eb125268b7 Tue, 17 Sep 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #401: We must replace uWSGI with something else 401 false 00:31:05 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/401]]>
#400 Celebrating episode 400 https://pythonbytes.fm/episodes/show/400/celebrating-episode-400 1b6ba83a-4c0d-4438-9900-67f80181ae51 Mon, 09 Sep 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #400: Celebrating episode 400 400 false 00:28:46 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/400]]>
#399 C will watch you in silence https://pythonbytes.fm/episodes/show/399/c-will-watch-you-in-silence 5a718696-3e0a-4e3e-933a-bb9bc2c68a1b Tue, 03 Sep 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #399: C will watch you in silence 399 false 00:42:37 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/399]]>
#398 Open source makes you rich? (and other myths) https://pythonbytes.fm/episodes/show/398/open-source-makes-you-rich-and-other-myths 00314360-70f0-49b2-b1a5-9431335c119c Mon, 26 Aug 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #398: Open source makes you rich? (and other myths) 398 false 00:42:04 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/398]]>
#397 So many PyCon videos https://pythonbytes.fm/episodes/show/397/so-many-pycon-videos 0a761e5f-2930-494f-9c42-dd429f49cc76 Tue, 20 Aug 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #397: So many PyCon videos 397 false 00:22:21 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/397]]>
#396 uv-ing your way to Python https://pythonbytes.fm/episodes/show/396/uv-ing-your-way-to-python 58e9214f-9c90-4477-acd9-6257493408f1 Tue, 13 Aug 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #396: uv-ing your way to Python 396 false 00:32:19 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/396]]>
#395 pythont compatible packages https://pythonbytes.fm/episodes/show/395/pythont-compatible-packages 976bf6ce-2825-4665-89c3-e197726165bf Tue, 06 Aug 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #395: pythont compatible packages 395 false 00:29:24 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/395]]>
#394 Python is easy now? https://pythonbytes.fm/episodes/show/394/python-is-easy-now 7e1a438d-3c80-4822-93f8-d8df3b3080dd Tue, 30 Jul 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #394: Python is easy now? 394 false 00:28:37 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/394]]>
#393 Dare enter the Bash dungeon? https://pythonbytes.fm/episodes/show/393/dare-enter-the-bash-dungeon c3e27bc3-fc50-4f74-9a75-98143ff47985 Tue, 23 Jul 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #393: Dare enter the Bash dungeon? 393 false 00:31:55 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/393]]>
#392 The votes have been counted https://pythonbytes.fm/episodes/show/392/the-votes-have-been-counted ffa89d4e-82e3-4ee5-bda4-ff61e0f18bc6 Wed, 17 Jul 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #392: The votes have been counted 392 false 00:25:44 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/392]]>
#391 A weak episode https://pythonbytes.fm/episodes/show/391/a-weak-episode 17d0ec04-fe88-4d02-beaa-755163946d2a Tue, 09 Jul 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #391: A weak episode 391 false 00:26:16 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/391]]>
#390 Coding in a Castle https://pythonbytes.fm/episodes/show/390/coding-in-a-castle 83368e5a-dd71-41e1-a04d-51aa06ef3701 Tue, 02 Jul 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #390: Coding in a Castle 390 false 00:36:39 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/390]]>
#389 More OOP for Python? https://pythonbytes.fm/episodes/show/389/more-oop-for-python e1ad4f50-6612-473e-8ff8-46bd37fd9b5f Mon, 24 Jun 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #389: More OOP for Python? 389 false 00:31:12 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/389]]>
#388 Don't delete all the repos https://pythonbytes.fm/episodes/show/388/dont-delete-all-the-repos 5ca313c2-e7b4-4cf5-b055-ca22a33ec026 Tue, 18 Jun 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #388: Don't delete all the repos 388 false 00:21:59 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/388]]>
#387 Heralding in a new era of database queries https://pythonbytes.fm/episodes/show/387/heralding-in-a-new-era-of-database-queries 25ad33cb-2ab8-4a74-a112-3c69b4b34aee Tue, 11 Jun 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #387: Heralding in a new era of database queries 387 false 00:27:52 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/387]]>
#386 Major releases abound https://pythonbytes.fm/episodes/show/386/major-releases-abound b4b361f7-5679-4977-b97b-95c88951b586 Tue, 04 Jun 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #386: Major releases abound 386 false 00:21:00 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/386]]>
#385 RESTing on Postgres https://pythonbytes.fm/episodes/show/385/resting-on-postgres 7d313b13-d6e9-43cc-b85d-9f557903ce03 Mon, 27 May 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #385: RESTing on Postgres 385 false 00:24:04 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/385]]>
#384 Force push lightly https://pythonbytes.fm/episodes/show/384/force-push-lightly 0fc17dee-55c7-4ecd-8cd9-b4dea26efc4a Tue, 21 May 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #384: Force push lightly 384 false 00:25:50 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/384]]>
#383 Why aren’t devs shipping faster? https://pythonbytes.fm/episodes/show/383/why-aren-t-devs-shipping-faster 630db5a3-1648-4582-a58e-6fb311526c2d Tue, 14 May 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #383: Why aren’t devs shipping faster? 383 false 00:31:00 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/383]]>
#382 A Simple Game https://pythonbytes.fm/episodes/show/382/a-simple-game f6c64d9a-5dbe-40ec-a3db-3a9ef4724d51 Tue, 07 May 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #382: A Simple Game 382 false 00:28:10 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/382]]>
#381 Python Packages in the Oven https://pythonbytes.fm/episodes/show/381/python-packages-in-the-oven cd932f94-1bd9-4b19-a6e8-f98fe63e898b Tue, 30 Apr 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #381: Python Packages in the Oven 381 false 00:28:55 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/381]]>
#380 Debugging with your eyes https://pythonbytes.fm/episodes/show/380/debugging-with-your-eyes f6fc08de-8b96-447e-b023-8c448b95e59c Tue, 23 Apr 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #380: Debugging with your eyes 380 false 00:24:07 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/380]]>
#379 Constable on the debugging case https://pythonbytes.fm/episodes/show/379/constable-on-the-debugging-case 953ce86b-21cb-4b80-b188-020f7d4f7682 Tue, 16 Apr 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #379: Constable on the debugging case 379 false 00:20:13 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/379]]>
#378 Python is on the edge https://pythonbytes.fm/episodes/show/378/python-is-on-the-edge c85e80a5-cdd3-453b-9524-d1f4aa3e3998 Tue, 09 Apr 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #378: Python is on the edge 378 false 00:31:24 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/378]]>
#377 A Dramatic Episode https://pythonbytes.fm/episodes/show/377/a-dramatic-episode eaad5e65-ad51-4c25-b7c1-0df0640ba326 Tue, 02 Apr 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #377: A Dramatic Episode 377 false 00:32:55 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/377]]>
#376 Every dunder method in a Python Lockbox https://pythonbytes.fm/episodes/show/376/every-dunder-method-in-a-python-lockbox f8131f42-10d9-41b8-8b69-546c0f10482d Tue, 26 Mar 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #376: Every dunder method in a Python Lockbox 376 false 00:32:04 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/376]]>
#375 Pointing at Countries https://pythonbytes.fm/episodes/show/375/pointing-at-countries be3df6dd-9411-4678-a180-b060c16ffff6 Tue, 19 Mar 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #375: Pointing at Countries 375 false 00:24:56 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/375]]>
#374 Climbing the Python Web Mountain https://pythonbytes.fm/episodes/show/374/climbing-the-python-web-mountain 09ddf12b-3d41-465b-806a-29733bfff5f5 Mon, 11 Mar 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #374: Climbing the Python Web Mountain 374 false 00:32:50 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/374]]>
#373 Changing Directories https://pythonbytes.fm/episodes/show/373/changing-directories 4f299dc1-7497-4135-891b-b6bb650f16ce Tue, 05 Mar 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #373: Changing Directories 373 false 00:26:33 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/373]]>
#372 uv - an impressive pip alternative https://pythonbytes.fm/episodes/show/372/uv-an-impressive-pip-alternative 9576122c-e3bd-4259-adce-51b92389d017 Tue, 20 Feb 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #372: uv - an impressive pip alternative 372 false 00:34:23 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/372]]>
#371 Python in a Crate https://pythonbytes.fm/episodes/show/371/python-in-a-crate ac0d94ca-9ac2-420b-9ca5-d6171b9d3c1f Tue, 13 Feb 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #371: Python in a Crate 371 false 00:36:04 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/371]]>
#370 Your Very Own Heroku https://pythonbytes.fm/episodes/show/370/your-very-own-heroku 0882cb76-d9a3-4322-b3eb-f4484c127ee4 Tue, 06 Feb 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #370: Your Very Own Heroku 370 false 00:36:35 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/370]]>
#369 The Readability Episode https://pythonbytes.fm/episodes/show/369/the-readability-episode c8a628cb-2651-471e-b383-766a238ad460 Tue, 30 Jan 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #369: The Readability Episode 369 false 00:34:44 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/369]]>
#368 That episode where we just ship open source https://pythonbytes.fm/episodes/show/368/that-episode-where-we-just-ship-open-source 07feeeb8-1708-4c3f-b0c5-d6aeb3ac3521 Tue, 23 Jan 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #368: That episode where we just ship open source 368 false 00:32:18 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/368]]>
#367 A New Cloud Computing Paradigm at Python Bytes https://pythonbytes.fm/episodes/show/367/a-new-cloud-computing-paradigm-at-python-bytes ec0c7dc0-076e-40ac-987f-15a296870e12 Tue, 16 Jan 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #367: A New Cloud Computing Paradigm at Python Bytes 367 false 00:36:21 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/367]]>
#366 Put It In The Backlog https://pythonbytes.fm/episodes/show/366/put-it-in-the-backlog 773bdaf8-4ce1-4cfd-bd28-d4dec51d9808 Tue, 09 Jan 2024 00:00:00 -0800 Michael Kennedy and Brian Okken #366: Put It In The Backlog 366 false 00:32:01 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/366]]>
#365 Inheritance, but not Inheritance! https://pythonbytes.fm/episodes/show/365/inheritance-but-not-inheritance 5beb2e43-735d-4c55-92b8-2fd7426b168d Wed, 20 Dec 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #365: Inheritance, but not Inheritance! 365 false 00:34:29 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/365]]>
#364 Holy Match-Cases Batman! https://pythonbytes.fm/episodes/show/364/holy-match-cases-batman cd7d17d6-596e-4bff-96ee-ead10025d7b5 Tue, 12 Dec 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #364: Holy Match-Cases Batman! 364 false 00:27:09 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/364]]>
#363 DNS Again? It's Always DNS. https://pythonbytes.fm/episodes/show/363/dns-again-its-always-dns d56a8455-a0ae-4166-87cc-f38c24ccacf9 Tue, 05 Dec 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #363: DNS Again? It's Always DNS. 363 false 00:39:01 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/363]]>
#362 You can deprecate a global variable? https://pythonbytes.fm/episodes/show/362/you-can-deprecate-a-global-variable 290684ea-5eb4-4e84-8fea-9d61d9a4aa0f Tue, 28 Nov 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #362: You can deprecate a global variable? 362 false 00:28:10 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/362]]>
#361 Proper way to comment your code! https://pythonbytes.fm/episodes/show/361/proper-way-to-comment-your-code 98d30c7a-b7cd-43f0-b865-b219c6259042 Tue, 21 Nov 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #361: Proper way to comment your code! 361 false 00:29:39 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/361]]>
#360 Happy Birthday! https://pythonbytes.fm/episodes/show/360/happy-birthday 205f2a3e-c36e-42c0-b53c-9a4bb7c6c829 Tue, 07 Nov 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #360: Happy Birthday! 360 false 00:35:44 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/360]]>
#359 gil--; https://pythonbytes.fm/episodes/show/359/gil 88aaaafc-1292-4ba0-a102-b0114cdac8bf Thu, 02 Nov 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #359: gil--; 359 false 00:43:04 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/359]]>
#358 Collecting Shells https://pythonbytes.fm/episodes/show/358/collecting-shells 54d8d489-78d9-45fd-bd94-0ecc0e74e1c3 Tue, 24 Oct 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #358: Collecting Shells 358 false 00:35:28 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/358]]>
#357 Python 3.7 EOLed, We Hadn't Noticed https://pythonbytes.fm/episodes/show/357/python-3.7-eoled-we-hadnt-noticed 9f958d32-e02f-4dff-8fe6-2db98e12860c Tue, 17 Oct 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #357: Python 3.7 EOLed, We Hadn't Noticed 357 false 00:29:06 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/357]]>
#356 Ripping from PyPI https://pythonbytes.fm/episodes/show/356/ripping-from-pypi 5c9de0b8-0502-4814-8517-7d9ebb2d754b Tue, 10 Oct 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #356: Ripping from PyPI 356 false 00:24:13 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/356]]>
#355 Python 3.12 is Out! https://pythonbytes.fm/episodes/show/355/python-3.12-is-out b57ef8bd-27af-49c7-ab50-4cefc6fb8b35 Tue, 03 Oct 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #355: Python 3.12 is Out! 355 false 00:35:15 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/355]]>
#354 Python 3.12 is Coming! https://pythonbytes.fm/episodes/show/354/python-3.12-is-coming 7a160190-5788-4495-b192-e216adfbe80e Tue, 26 Sep 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #354: Python 3.12 is Coming! 354 false 00:21:26 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/354]]>
#353 Hatching Another Episode https://pythonbytes.fm/episodes/show/353/hatching-another-episode fca820c3-9fe5-40a3-bce9-ad86d4fdce9d Tue, 19 Sep 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #353: Hatching Another Episode 353 false 00:29:27 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/353]]>
#352 Helicopter Time Comes to Python https://pythonbytes.fm/episodes/show/352/helicopter-time-comes-to-python d07e13a4-06ca-4134-82e9-4aeab5b27e48 Tue, 12 Sep 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #352: Helicopter Time Comes to Python 352 false 00:22:20 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/352]]>
#351 A Python Empire (or MPIRE?) https://pythonbytes.fm/episodes/show/351/a-python-empire-or-mpire c7bfffcf-889c-4508-9ed8-efd145a2d59f Wed, 06 Sep 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #351: A Python Empire (or MPIRE?) 351 false 00:35:23 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/351]]>
#350 You've Got The Stamina For This Episode https://pythonbytes.fm/episodes/show/350/youve-got-the-stamina-for-this-episode 3dd6c422-5317-4e88-a3e3-dfdb2bcbe361 Tue, 29 Aug 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #350: You've Got The Stamina For This Episode 350 false 00:30:55 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/350]]>
#349 Djangonauts: Ready for Takeoff! https://pythonbytes.fm/episodes/show/349/djangonauts-ready-for-takeoff 69fe69bd-cd29-4b89-8a52-896130be8735 Tue, 22 Aug 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #349: Djangonauts: Ready for Takeoff! 349 false 00:31:06 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/349]]>
#348 JavaScript in Your Python https://pythonbytes.fm/episodes/show/348/javascript-in-your-python 462837bd-f3d0-484e-8be7-33b64932c9ab Tue, 15 Aug 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #348: JavaScript in Your Python 348 false 00:33:14 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/348]]>
#347 The One About Context Mangers https://pythonbytes.fm/episodes/show/347/the-one-about-context-mangers a10a1e38-cd0d-434d-95d4-bbcd13547746 Tue, 08 Aug 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #347: The One About Context Mangers 347 false 00:36:01 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/347]]>
#346 Have you lost your GIL? https://pythonbytes.fm/episodes/show/346/have-you-lost-your-gil dce4f069-cbbe-458c-bb4a-e8c7c635c593 Wed, 02 Aug 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #346: Have you lost your GIL? 346 false 00:28:09 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/346]]>
#345 Some Big Time Releases https://pythonbytes.fm/episodes/show/345/some-big-time-releases dc75f88a-870b-4d31-b54b-912630dde99b Wed, 26 Jul 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #345: Some Big Time Releases 345 false 00:35:52 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/345]]>
#344 AMA: Ask Us Anything https://pythonbytes.fm/episodes/show/344/ama-ask-us-anything bc2aa93f-cfb1-4d28-903a-e9fe137a5a44 Tue, 18 Jul 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #344: AMA: Ask Us Anything 344 false 00:48:02 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing pythonbytes.fm/344]]> #343 So Much Pydantic! https://pythonbytes.fm/episodes/show/343/so-much-pydantic a06fb656-f33a-46b0-b094-4f9cb2dc308a Tue, 11 Jul 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #343: So Much Pydantic! 343 false 00:35:51 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/343]]>
#342 Don't Believe Those Old Blogging Myths https://pythonbytes.fm/episodes/show/342/dont-believe-those-old-blogging-myths d08befe5-b332-4d01-ba24-71117e3f8b5c Mon, 26 Jun 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #342: Don't Believe Those Old Blogging Myths 342 false 00:41:47 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/342]]>
#341 Shhh - For Secrets and Shells https://pythonbytes.fm/episodes/show/341/shhh-for-secrets-and-shells abe1d5e1-90a0-485e-b310-1357d6e0f787 Tue, 20 Jun 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #341: Shhh - For Secrets and Shells 341 false 00:35:08 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/341]]>
#340 Snorkel not included https://pythonbytes.fm/episodes/show/340/snorkel-not-included 8a8d1818-31a3-4f9b-95b5-8758694d80b8 Tue, 13 Jun 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #340: Snorkel not included 340 false 00:31:09 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/340]]>
#339 Actual Technical People https://pythonbytes.fm/episodes/show/339/actual-technical-people ab0e0d35-9545-4fb2-ab4f-ab58612104d7 Wed, 07 Jun 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #339: Actual Technical People 339 false 00:30:43 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/339]]>
#338 Scripting iOS with Python https://pythonbytes.fm/episodes/show/338/scripting-ios-with-python b47da4b2-186e-42a5-a508-11f4b905e732 Tue, 30 May 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #338: Scripting iOS with Python 338 false 00:30:20 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/338]]>
#337 Backtracking For a Package https://pythonbytes.fm/episodes/show/337/backtracking-for-a-package c4f9ec10-3275-4597-a7ec-2586306ae31e Tue, 23 May 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #337: Backtracking For a Package 337 false 00:32:18 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/337]]>
#336 We found one of your batteries https://pythonbytes.fm/episodes/show/336/we-found-one-of-your-batteries 11194880-89cb-42a5-bc93-beb9c00f148e Tue, 16 May 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #336: We found one of your batteries 336 false 00:28:28 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/336]]>
#335 Should you get your mojo on? https://pythonbytes.fm/episodes/show/335/should-you-get-your-mojo-on eb5e4077-01f5-4a17-b1f5-13cb812e60a0 Thu, 11 May 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #335: Should you get your mojo on? 335 false 00:25:37 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/335]]>
#334 Packaging Organizations https://pythonbytes.fm/episodes/show/334/packaging-organizations 36416bef-3098-435b-b263-10083e2ff81d Fri, 05 May 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #334: Packaging Organizations 334 false 00:32:22 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/334]]>
#333 Live From PyCon https://pythonbytes.fm/episodes/show/333/live-from-pycon e398bb32-33ef-4c3f-a7ac-f1ab0049d3ed Sat, 22 Apr 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #333: Live From PyCon 333 false 00:22:38 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/333]]>
#332 A Python, a Slurpee, and Some Chaos https://pythonbytes.fm/episodes/show/332/a-python-a-slurpee-and-some-chaos a80eb220-2c20-4a23-b015-bf88ca74f7f8 Tue, 18 Apr 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #332: A Python, a Slurpee, and Some Chaos 332 false 00:36:56 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/332]]>
#331 Python From the Future https://pythonbytes.fm/episodes/show/331/python-from-the-future c9662f0d-f12c-4454-90f4-9f86e8088ae3 Wed, 12 Apr 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #331: Python From the Future 331 false 00:35:57 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/331]]>
#330 Your data, validated 5x-50x faster, coming soon https://pythonbytes.fm/episodes/show/330/your-data-validated-5x-50x-faster-coming-soon 816b1a90-f28d-44fa-b02f-86f350cdaf64 Thu, 06 Apr 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #330: Your data, validated 5x-50x faster, coming soon 330 false 00:34:25 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/330]]>
#329 Creating very old Python code https://pythonbytes.fm/episodes/show/329/creating-very-old-python-code 526944b1-48ce-499e-a7a0-e8bee637e132 Thu, 30 Mar 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #329: Creating very old Python code 329 false 00:28:52 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/329]]>
#328 We are going to need some context here https://pythonbytes.fm/episodes/show/328/we-are-going-to-need-some-context-here 350ceb9e-6412-4e0b-b1da-ebec063ae35f Tue, 21 Mar 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #328: We are going to need some context here 328 false 00:24:48 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/328]]>
#327 Untangling XML with Pydantic https://pythonbytes.fm/episodes/show/327/untangling-xml-with-pydantic d571b5ea-77b7-4d6c-b7fd-8e9989962d03 Mon, 13 Mar 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #327: Untangling XML with Pydantic 327 false 00:31:37 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/327]]>
#326 Let's Go for a PyGWalk https://pythonbytes.fm/episodes/show/326/lets-go-for-a-pygwalk f15acaa2-7dfc-4a6d-a144-61a0f288ae32 Wed, 08 Mar 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #326: Let's Go for a PyGWalk 326 false 00:33:26 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/326]]>
#325 It's called a merge conflict https://pythonbytes.fm/episodes/show/325/its-called-a-merge-conflict 5d1ea509-481f-4616-887f-66075b4910c3 Tue, 28 Feb 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #325: It's called a merge conflict 325 false 00:39:32 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/325]]>
#324 JSON in My DB? https://pythonbytes.fm/episodes/show/324/json-in-my-db 17723c12-7e1d-4f45-9511-59f0807b06fa Tue, 21 Feb 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #324: JSON in My DB? 324 false 00:44:53 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/324]]>
#323 AI search wars have begun https://pythonbytes.fm/episodes/show/323/ai-search-wars-have-begun 416044a8-85e5-4153-8fb0-2cab02f9ef25 Tue, 14 Feb 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #323: AI search wars have begun 323 false 00:50:05 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/323]]>
#322 Python Packages, Let Me Count The Ways https://pythonbytes.fm/episodes/show/322/python-packages-let-me-count-the-ways 575d81a0-702d-497f-8927-9a329e23188c Tue, 07 Feb 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #322: Python Packages, Let Me Count The Ways 322 false 00:46:40 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/322]]>
#321 A Memorial To Apps Past https://pythonbytes.fm/episodes/show/321/a-memorial-to-apps-past 7d182d98-4205-42b8-aad9-e256ad449395 Mon, 30 Jan 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #321: A Memorial To Apps Past 321 false 00:36:30 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/321]]>
#320 The Bug Is In The JavaScript https://pythonbytes.fm/episodes/show/320/the-bug-is-in-the-javascript b5ef8001-8921-4b96-91cf-b244fcca96c9 Tue, 24 Jan 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #320: The Bug Is In The JavaScript 320 false 00:28:26 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/320]]>
#319 CSS-Style Queries for... JSON? https://pythonbytes.fm/episodes/show/319/css-style-queries-for...-json 4c9327e0-5a7b-4ee0-9877-219ec1508ebf Wed, 18 Jan 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #319: CSS-Style Queries for... JSON? 319 false 00:32:44 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/319]]>
#318 GIL, How We Will Miss You https://pythonbytes.fm/episodes/show/318/gil-how-we-will-miss-you 9d997b3d-957d-4f3b-8bbf-d0efcd39700f Tue, 10 Jan 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #318: GIL, How We Will Miss You 318 false 00:39:38 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/318]]>
#317 Most loved and most dreaded dev tools of 2022 https://pythonbytes.fm/episodes/show/317/most-loved-and-most-dreaded-dev-tools-of-2022 2f642b75-73f7-4e58-a5be-9339ae5969bd Tue, 03 Jan 2023 00:00:00 -0800 Michael Kennedy and Brian Okken #317: Most loved and most dreaded dev tools of 2022 317 false 00:48:31 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/317]]>
#316 Python 3.11 is here and it's fast (crossover) https://pythonbytes.fm/episodes/show/316/python-3.11-is-here-and-its-fast-crossover eb9dc92c-e884-4ebd-99ab-b84adaed0664 Fri, 30 Dec 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #316: Python 3.11 is here and it's fast (crossover) 316 false 01:04:12 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing pythonbytes.fm/316]]> #315 Some Stickers! https://pythonbytes.fm/episodes/show/315/some-stickers 35f8c790-3005-49db-af5e-590b522d1e51 Tue, 20 Dec 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #315: Some Stickers! 315 false 00:29:56 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/315]]>
#314 What are you, a wise guy? Sort it out! https://pythonbytes.fm/episodes/show/314/what-are-you-a-wise-guy-sort-it-out 319b7aae-0d9e-4df0-83a7-511ed241968a Tue, 13 Dec 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #314: What are you, a wise guy? Sort it out! 314 false 00:37:24 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/314]]>
#313 Programming Robots With a Marker https://pythonbytes.fm/episodes/show/313/programming-robots-with-a-marker d64c079b-e4ef-4137-b872-1c2d5be41165 Tue, 06 Dec 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #313: Programming Robots With a Marker 313 false 00:46:00 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/313]]>
#312 AI Goes on Trial For Writing Code https://pythonbytes.fm/episodes/show/312/ai-goes-on-trial-for-writing-code a6ce01ee-aca9-4d21-ad27-c56cb5ce2b76 Tue, 29 Nov 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #312: AI Goes on Trial For Writing Code 312 false 00:35:26 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/312]]>
#311 Catching Memory Leaks with ... pytest? https://pythonbytes.fm/episodes/show/311/catching-memory-leaks-with-...-pytest 9544ea4b-d05e-4fb6-8999-037209119d0c Thu, 24 Nov 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #311: Catching Memory Leaks with ... pytest? 311 false 00:49:50 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/311]]>
#310 Calling All Tools for Readmes https://pythonbytes.fm/episodes/show/310/calling-all-tools-for-readmes f6c0048d-5ba1-4d08-ac50-8778ba9aeb3d Tue, 15 Nov 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #310: Calling All Tools for Readmes 310 false 00:53:44 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/310]]>
#309 When Malware PoC's are Themselves Malware https://pythonbytes.fm/episodes/show/309/when-malware-pocs-are-themselves-malware 3fc797e2-aa7e-4111-babe-a3848963b3d7 Wed, 09 Nov 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #309: When Malware PoC's are Themselves Malware 309 false 00:35:01 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/309]]>
#308 Conference season is heating up https://pythonbytes.fm/episodes/show/308/conference-season-is-heating-up 4ebb141b-fd6f-46f0-93e1-9313a13b40f2 Tue, 01 Nov 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #308: Conference season is heating up 308 false 00:34:37 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/308]]>
#307 Your Python just got faster (3.11 is out!) https://pythonbytes.fm/episodes/show/307/your-python-just-got-faster-3.11-is-out d83a4a30-4cb8-41a3-8ac3-35ebab26d7c7 Wed, 26 Oct 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #307: Your Python just got faster (3.11 is out!) 307 false 00:44:54 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/307]]>
#306 Some Fun pytesting Tools https://pythonbytes.fm/episodes/show/306/some-fun-pytesting-tools a9145b11-74f9-419e-bd89-f073f93359a9 Wed, 19 Oct 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #306: Some Fun pytesting Tools 306 false 00:46:22 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/306]]>
#305 Decorators need love too https://pythonbytes.fm/episodes/show/305/decorators-need-love-too e6372e56-07c1-4869-bde1-f19a207b7b8a Thu, 13 Oct 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #305: Decorators need love too 305 false 00:32:58 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/305]]>
#304 Build your own text adventure language in Python https://pythonbytes.fm/episodes/show/304/build-your-own-text-adventure-language-in-python 00b858a7-41a1-40a9-a2ba-93315e7b11c4 Wed, 05 Oct 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #304: Build your own text adventure language in Python 304 false 00:38:24 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/304]]>
#303 This title is required or is it optional? https://pythonbytes.fm/episodes/show/303/this-title-is-required-or-is-it-optional 3363a1bb-f261-494b-afd1-9bfcc9994fd5 Thu, 29 Sep 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #303: This title is required or is it optional? 303 false 00:37:56 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/303]]>
#302 The Blue Shirt Episode https://pythonbytes.fm/episodes/show/302/the-blue-shirt-episode 233f34d6-65dc-46c8-96ac-80bf2078d2f9 Tue, 20 Sep 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #302: The Blue Shirt Episode 302 false 00:33:02 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/302]]>
#301 PyTorch Grows Up and Moves Out https://pythonbytes.fm/episodes/show/301/pytorch-grows-up-and-moves-out 92af514a-c6ae-40a5-913e-20467c30e3e0 Thu, 15 Sep 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #301: PyTorch Grows Up and Moves Out 301 false 00:31:10 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/301]]>
#300 A Jupyter merge driver for git https://pythonbytes.fm/episodes/show/300/a-jupyter-merge-driver-for-git 4f4420b1-50b0-45b7-8fa4-49869ff3caac Tue, 06 Sep 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #300: A Jupyter merge driver for git 300 false 00:55:21 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/300]]>
#299 Will McGugan drops by https://pythonbytes.fm/episodes/show/299/will-mcgugan-drops-by 98f94a1a-30a0-4af9-9fb1-1a8fe68098b4 Sat, 03 Sep 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #299: Will McGugan drops by 299 false 00:46:07 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/299]]>
#298 "Unstoppable" Python https://pythonbytes.fm/episodes/show/298/unstoppable-python 68d920b8-fdb7-43ff-95a3-411aa12ae6ed Wed, 24 Aug 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #298: "Unstoppable" Python 298 false 00:32:22 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/298]]>
#297 I AM the documentation https://pythonbytes.fm/episodes/show/297/i-am-the-documentation adc428be-3710-4dcb-a469-a0ceb1a4d9f3 Tue, 16 Aug 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #297: I AM the documentation 297 false 00:22:36 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/297]]>
#296 pip: Constrain your excitement https://pythonbytes.fm/episodes/show/296/pip-constrain-your-excitement c3ed1a9a-6f86-4c64-ad00-5bbe9e59b00c Tue, 09 Aug 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #296: pip: Constrain your excitement 296 false 00:32:31 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/296]]>
#295 Flutter + Python GUI Apps? https://pythonbytes.fm/episodes/show/295/flutter-python-gui-apps 0573e072-2d82-4819-bcff-d0b609e5d583 Thu, 04 Aug 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #295: Flutter + Python GUI Apps? 295 false 00:36:16 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/295]]>
#294 Specializing Adaptive Interpreters in Full Color https://pythonbytes.fm/episodes/show/294/specializing-adaptive-interpreters-in-full-color a42f794b-9e8a-436b-9f56-1a935e513827 Tue, 26 Jul 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #294: Specializing Adaptive Interpreters in Full Color 294 false 00:35:26 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/294]]>
#293 And if I pull this open source Jenga block... https://pythonbytes.fm/episodes/show/293/and-if-i-pull-this-open-source-jenga-block e312f046-a6b9-4f88-87d6-542c01c9812f Wed, 20 Jul 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #293: And if I pull this open source Jenga block... 293 false 00:47:34 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/293]]>
#292 Thursday, it's always a Thursday https://pythonbytes.fm/episodes/show/292/thursday-its-always-a-thursday 34aff095-f90b-4935-9c99-015103090d3d Mon, 11 Jul 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #292: Thursday, it's always a Thursday 292 false 00:28:36 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/292]]>
#291 Wait, you have how many licenses?!? https://pythonbytes.fm/episodes/show/291/wait-you-have-how-many-licenses ee353de0-45a2-4669-a0b3-69567b8f4256 Wed, 06 Jul 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #291: Wait, you have how many licenses?!? 291 false 00:32:27 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/291]]>
#290 Sentient AI? If so, then what? https://pythonbytes.fm/episodes/show/290/sentient-ai-if-so-then-what f123fb86-8c2a-4e86-9b4b-81600cd7aeac Tue, 28 Jun 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #290: Sentient AI? If so, then what? 290 false 00:49:34 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/290]]>
#289 Textinator is coming for your text, wherever it is https://pythonbytes.fm/episodes/show/289/textinator-is-coming-for-your-text-wherever-it-is 6777450b-fcac-4ef8-8f63-dbfbc0611f93 Tue, 21 Jun 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #289: Textinator is coming for your text, wherever it is 289 false 00:46:14 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/289]]>
#288 Performance benchmarks for Python 3.11 are amazing https://pythonbytes.fm/episodes/show/288/performance-benchmarks-for-python-3.11-are-amazing afd77ca5-7fe9-40b6-bfa5-e14bc596ca84 Tue, 14 Jun 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #288: Performance benchmarks for Python 3.11 are amazing 288 false 00:33:05 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/288]]>
#287 Surprising ways to use Jupyter Notebooks https://pythonbytes.fm/episodes/show/287/surprising-ways-to-use-jupyter-notebooks 871273ad-7743-4799-aadb-642cf675380d Tue, 07 Jun 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #287: Surprising ways to use Jupyter Notebooks 287 false 00:27:22 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/287]]>
#286 Unreasonable f-strings https://pythonbytes.fm/episodes/show/286/unreasonable-f-strings 8bbb54a0-c973-42b0-bbf4-3a96f238fe72 Fri, 03 Jun 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #286: Unreasonable f-strings 286 false 00:26:22 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/286]]>
#285 Where we talk about UIs and Python https://pythonbytes.fm/episodes/show/285/where-we-talk-about-uis-and-python bca41a2d-a63d-4a12-805a-ebe4f4847242 Wed, 25 May 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #285: Where we talk about UIs and Python 285 false 00:50:54 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/285]]>
#284 Spicy git for Engineers https://pythonbytes.fm/episodes/show/284/spicy-git-for-engineers 15c8a052-a8de-41d1-9084-376436123b7d Wed, 18 May 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #284: Spicy git for Engineers 284 false 00:41:12 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/284]]>
#283 The sports episode https://pythonbytes.fm/episodes/show/283/the-sports-episode 9d529c93-ada4-4df3-b815-b2ba6aa40fa5 Thu, 12 May 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #283: The sports episode 283 false 00:32:58 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/283]]>
#282 Don't Embarrass Me in Front of The Wizards https://pythonbytes.fm/episodes/show/282/dont-embarrass-me-in-front-of-the-wizards 34cab6e1-2fc6-4003-8a93-95dea4113873 Tue, 03 May 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #282: Don't Embarrass Me in Front of The Wizards 282 false 00:28:32 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/282]]>
#281 ohmyzsh + ohmyposh + mcfly + pls + nerdfonts = wow https://pythonbytes.fm/episodes/show/281/ohmyzsh-ohmyposh-mcfly-pls-nerdfonts-wow 32c98db6-df1f-4e37-a551-bc76cb293da6 Thu, 28 Apr 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #281: ohmyzsh + ohmyposh + mcfly + pls + nerdfonts = wow 281 false 00:46:34 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/281]]>
#280 Easy terminal scripts by sourcing your Py https://pythonbytes.fm/episodes/show/280/easy-terminal-scripts-by-sourcing-your-py 5cf88180-2304-45cb-ae99-566eea7e60e8 Thu, 21 Apr 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #280: Easy terminal scripts by sourcing your Py 280 false 00:37:36 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/280]]>
#279 Autocorrect and other Git Tricks https://pythonbytes.fm/episodes/show/279/autocorrect-and-other-git-tricks 4bf5f54f-702f-4175-9e54-87482651a8a4 Fri, 15 Apr 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #279: Autocorrect and other Git Tricks 279 false 00:41:52 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/279]]>
#278 Multi-tenant Python applications https://pythonbytes.fm/episodes/show/278/multi-tenant-python-applications 0fd7762e-2c9b-426b-a4a1-a569c7d8ce0e Fri, 08 Apr 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #278: Multi-tenant Python applications 278 false 00:33:34 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/278]]>
#277 It's a Python package showdown! https://pythonbytes.fm/episodes/show/277/its-a-python-package-showdown 06a3434e-f875-41ec-9abe-34cc6c7e647d Sat, 02 Apr 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #277: It's a Python package showdown! 277 false 00:45:01 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/277]]>
#276 Tracking cyber intruders with Jupyter and Python https://pythonbytes.fm/episodes/show/276/tracking-cyber-intruders-with-jupyter-and-python f63c9ada-476c-41b3-9b45-c52500921158 Wed, 23 Mar 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #276: Tracking cyber intruders with Jupyter and Python 276 false 00:45:04 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/276]]>
#275 Airspeed velocity of an unladen astropy https://pythonbytes.fm/episodes/show/275/airspeed-velocity-of-an-unladen-astropy 5ec844b6-6854-431f-8149-570580ba8df5 Wed, 16 Mar 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #275: Airspeed velocity of an unladen astropy 275 false 00:42:43 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/275]]>
#274 12 Questions You Should Be Asking of Your Dependencies https://pythonbytes.fm/episodes/show/274/12-questions-you-should-be-asking-of-your-dependencies 8183d4d2-2472-4795-95fe-3464234b1f5a Wed, 09 Mar 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #274: 12 Questions You Should Be Asking of Your Dependencies 274 false 00:39:54 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/274]]>
#273 Getting dirty with __eq__(self, other) https://pythonbytes.fm/episodes/show/273/getting-dirty-with-eq-self-other f702d8c8-1a4b-4304-865d-4b39d91652c8 Fri, 04 Mar 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #273: Getting dirty with __eq__(self, other) 273 false 00:37:05 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/273]]>
#272 The tools episode https://pythonbytes.fm/episodes/show/272/the-tools-episode e5cbae4c-846b-4b14-8d0b-260db2280e1d Thu, 24 Feb 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #272: The tools episode 272 false 00:48:09 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/272]]>
#271 CPython: Async Task Groups in Python 3.11 https://pythonbytes.fm/episodes/show/271/cpython-async-task-groups-in-python-3.11 4bb74eb1-94d8-43a6-8549-762f12422de4 Wed, 16 Feb 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #271: CPython: Async Task Groups in Python 3.11 271 false 00:57:21 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/271]]>
#270 Can errors really be beautiful? https://pythonbytes.fm/episodes/show/270/can-errors-really-be-beautiful 31e77a80-fdc6-42da-9aa3-8448dce9ce30 Thu, 10 Feb 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #270: Can errors really be beautiful? 270 false 00:47:25 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/270]]>
#269 Get Rich and replace your cat https://pythonbytes.fm/episodes/show/269/get-rich-and-replace-your-cat 7c83b532-875e-4197-b989-ceabf09d6edc Thu, 03 Feb 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #269: Get Rich and replace your cat 269 false 00:40:35 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/269]]>
#268 Wait, you can Google that? https://pythonbytes.fm/episodes/show/268/wait-you-can-google-that 56f73aa7-6c81-4c9d-a6e6-89c19585e4b2 Thu, 27 Jan 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #268: Wait, you can Google that? 268 false 00:45:09 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/268]]>
#267 Python on the beach https://pythonbytes.fm/episodes/show/267/python-on-the-beach 4daa4e65-0507-43be-8733-58ef13d67829 Fri, 21 Jan 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #267: Python on the beach 267 false 00:32:50 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/267]]>
#266 Python has a glossary? https://pythonbytes.fm/episodes/show/266/python-has-a-glossary e45d919f-2dfe-484c-89ac-79bbc2917445 Thu, 13 Jan 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #266: Python has a glossary? 266 false 26:46 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/266]]>
#265 Get asizeof pympler and muppy https://pythonbytes.fm/episodes/show/265/get-asizeof-pympler-and-muppy 271e9f88-1ea7-4ec7-9add-597af8a2736e Wed, 05 Jan 2022 00:00:00 -0800 Michael Kennedy and Brian Okken #265: Get asizeof pympler and muppy 265 false 00:47:46 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/265]]>
#264 We're just playing games with Jupyter at this point https://pythonbytes.fm/episodes/show/264/were-just-playing-games-with-jupyter-at-this-point a87f90ac-5cf4-49ad-982c-25b5be7f5489 Wed, 22 Dec 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #264: We're just playing games with Jupyter at this point 264 false 00:53:02 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/264]]>
#263 It’s time to stop using Python 3.6 https://pythonbytes.fm/episodes/show/263/it-s-time-to-stop-using-python-3.6 5337d8ae-984f-44ad-8c95-82664494b4c4 Wed, 15 Dec 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #263: It’s time to stop using Python 3.6 263 false 00:50:07 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/263]]>
#262 So many bots up in your documentation https://pythonbytes.fm/episodes/show/262/so-many-bots-up-in-your-documentation 08c89ea1-beb5-46fb-855a-f13f20aea4e6 Thu, 09 Dec 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #262: So many bots up in your documentation 262 false 00:43:06 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/262]]>
#261 Please re-enable spacebar heating https://pythonbytes.fm/episodes/show/261/please-re-enable-spacebar-heating 42dd5b3f-2762-4918-b89b-412d05037e55 Fri, 03 Dec 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #261: Please re-enable spacebar heating 261 false 00:42:21 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/261]]>
#260 It's brutally simple: made just from pickle and zip https://pythonbytes.fm/episodes/show/260/its-brutally-simple-made-just-from-pickle-and-zip 8fc5b9bf-3a2f-41e0-81c4-c45a6ad00c1a Tue, 23 Nov 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #260: It's brutally simple: made just from pickle and zip 260 false 00:48:49 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/260]]>
#259 That argument is a little late-bound https://pythonbytes.fm/episodes/show/259/that-argument-is-a-little-late-bound e092e835-6b55-4272-add4-7e308f5672af Wed, 17 Nov 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #259: That argument is a little late-bound 259 false 00:47:24 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/259]]>
#258 Python built us an anime dog! https://pythonbytes.fm/episodes/show/258/python-built-us-an-anime-dog df056ead-4284-46a3-9207-948a94f2335a Thu, 11 Nov 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #258: Python built us an anime dog! 258 false 00:43:09 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/258]]>
#257 Python Launcher - Launching Python Everywhere https://pythonbytes.fm/episodes/show/257/python-launcher-launching-python-everywhere c1736336-bb1a-4978-880b-e317a07c7fa7 Thu, 04 Nov 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #257: Python Launcher - Launching Python Everywhere 257 false 00:40:25 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/257]]>
#256 And the best open source project prize goes to ... https://pythonbytes.fm/episodes/show/256/and-the-best-open-source-project-prize-goes-to- 7dba5264-7f9d-4211-af67-d22b84f2d55b Fri, 29 Oct 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #256: And the best open source project prize goes to ... 256 false 00:59:36 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/256]]>
#255 Closember eve, the cure for Hacktoberfest? https://pythonbytes.fm/episodes/show/255/closember-eve-the-cure-for-hacktoberfest 799c5406-c444-490d-ad71-8bed44fb2bff Wed, 20 Oct 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #255: Closember eve, the cure for Hacktoberfest? 255 false 00:46:49 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/255]]>
#254 Do Excel things, get notebook Python code with Mito https://pythonbytes.fm/episodes/show/254/do-excel-things-get-notebook-python-code-with-mito c7705770-50d6-4c69-b40d-9c45361907fa Wed, 13 Oct 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #254: Do Excel things, get notebook Python code with Mito 254 false 00:31:02 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/254]]>
#253 A new Python for you, and for everyone! https://pythonbytes.fm/episodes/show/253/a-new-python-for-you-and-for-everyone 3ee5151f-af02-4f38-b3c5-e43e216f3e52 Thu, 07 Oct 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #253: A new Python for you, and for everyone! 253 false 00:44:57 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/253]]>
#252 Jupyter is now a desktop app! https://pythonbytes.fm/episodes/show/252/jupyter-is-now-a-desktop-app 3610d539-cc7e-46a2-ae0c-a615fb402afb Wed, 29 Sep 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #252: Jupyter is now a desktop app! 252 false 00:44:25 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/252]]>
#251 A 95% complete episode (wait for it) https://pythonbytes.fm/episodes/show/251/a-95-complete-episode-wait-for-it 63c5c692-ed33-4217-8acc-bc03d4965985 Wed, 22 Sep 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #251: A 95% complete episode (wait for it) 251 false 00:55:33 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/251]]>
#250 skorch your scikit-learn together with PyTorch https://pythonbytes.fm/episodes/show/250/skorch-your-scikit-learn-together-with-pytorch 6658e719-457b-4458-a221-87091b47ea59 Wed, 15 Sep 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #250: skorch your scikit-learn together with PyTorch 250 false 00:41:52 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/250]]>
#249 All of Linux as a Python API https://pythonbytes.fm/episodes/show/249/all-of-linux-as-a-python-api 5f482550-aa4a-4d84-ac5c-74422d51ee94 Thu, 09 Sep 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #249: All of Linux as a Python API 249 false 00:37:12 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/249]]>
#248 while True: stand up, sit down https://pythonbytes.fm/episodes/show/248/while-true-stand-up-sit-down 9829cf29-2d85-4c26-aa42-d25144b1aa17 Thu, 02 Sep 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #248: while True: stand up, sit down 248 false 00:52:09 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/248]]>
#247 Do you dare to press "."? https://pythonbytes.fm/episodes/show/247/do-you-dare-to-press- c7c1ac54-ffba-4566-8cda-d333fb0ff309 Thu, 26 Aug 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #247: Do you dare to press "."? 247 false 00:46:12 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/247]]>
#246 Love your crashes, use Rich to beautify tracebacks https://pythonbytes.fm/episodes/show/246/love-your-crashes-use-rich-to-beautify-tracebacks f2bf4bf3-3841-4b9b-ab5d-c2f272ec9f8c Wed, 11 Aug 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #246: Love your crashes, use Rich to beautify tracebacks 246 false 00:46:19 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/246]]>
#245 Fire up your Python time machine (and test some code) https://pythonbytes.fm/episodes/show/245/fire-up-your-python-time-machine-and-test-some-code 233b9472-736c-4b75-a3c0-f6e83bc91b39 Wed, 04 Aug 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #245: Fire up your Python time machine (and test some code) 245 false 00:41:56 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/245]]>
#244 vendorizing your Python podcast https://pythonbytes.fm/episodes/show/244/vendorizing-your-python-podcast 9a820825-7a92-4e99-866a-917ef739521a Fri, 30 Jul 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #244: vendorizing your Python podcast 244 false 00:34:43 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/244]]>
#243 Django unicorns and multi-region PostgreSQL https://pythonbytes.fm/episodes/show/243/django-unicorns-and-multi-region-postgresql d59e0850-5260-469f-b887-0ff2f8c2806e Wed, 21 Jul 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #243: Django unicorns and multi-region PostgreSQL 243 false 00:42:19 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/243]]>
#242 from lib import * but less https://pythonbytes.fm/episodes/show/242/from-lib-import-but-less fccdacba-2ab7-4322-9b38-a8dd5b7588e1 Thu, 15 Jul 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #242: from lib import * but less 242 false 00:39:18 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/242]]>
#241 f-yes we want some f-string tricks! https://pythonbytes.fm/episodes/show/241/f-yes-we-want-some-f-string-tricks a1d962bf-b754-45ee-935d-a0b89b0d0ce9 Wed, 07 Jul 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #241: f-yes we want some f-string tricks! 241 false 00:39:53 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/241]]>
#240 This is GitHub, your pilot speaking... https://pythonbytes.fm/episodes/show/240/this-is-github-your-pilot-speaking 109dbd91-e6b3-4462-a22e-e43f0cc81086 Fri, 02 Jul 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #240: This is GitHub, your pilot speaking... 240 false 00:51:58 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/240]]>
#239 No module named pythonbytes https://pythonbytes.fm/episodes/show/239/no-module-named-pythonbytes ce94c495-8dfd-4e37-9206-6ca9cf659b64 Wed, 23 Jun 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #239: No module named pythonbytes 239 false 00:43:09 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/239]]>
#238 A cloud-based file system for Python and a new GUI! https://pythonbytes.fm/episodes/show/238/a-cloud-based-file-system-for-python-and-a-new-gui ae67fc8e-0c83-4e3e-a9d8-cc1449bb1b00 Tue, 15 Jun 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #238: A cloud-based file system for Python and a new GUI! 238 false 00:47:07 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/238]]>
#237 Separate your SQL and Python, asynchronously with aiosql https://pythonbytes.fm/episodes/show/237/separate-your-sql-and-python-asynchronously-with-aiosql 2cc11c8b-a124-4841-8329-705e6d72cf4d Wed, 09 Jun 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #237: Separate your SQL and Python, asynchronously with aiosql 237 false 00:39:41 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/237]]>
#236 Fuzzy wuzzy wazzy fuzzy was faster https://pythonbytes.fm/episodes/show/236/fuzzy-wuzzy-wazzy-fuzzy-was-faster 04b87594-cd1c-4765-8168-a80e4a07acbf Wed, 02 Jun 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #236: Fuzzy wuzzy wazzy fuzzy was faster 236 false 37:24 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/236]]>
#235 Flask 2.0 Articles and Reactions https://pythonbytes.fm/episodes/show/235/flask-2.0-articles-and-reactions 02c96898-ceb8-4f8a-885d-362d4d57c0e1 Wed, 26 May 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #235: Flask 2.0 Articles and Reactions 235 false 46:05 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/235]]>
#234 The Astronomy-filled edition with Dr. Becky https://pythonbytes.fm/episodes/show/234/the-astronomy-filled-edition-with-dr.-becky 2dfd145b-e28f-410d-8d54-89b83f863999 Wed, 19 May 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #234: The Astronomy-filled edition with Dr. Becky 234 false 49:36 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/234]]>
#233 RaaS: Readme as a Service https://pythonbytes.fm/episodes/show/233/raas-readme-as-a-service 5c2d2682-45f6-4adc-be2d-afe3ba5d48d5 Wed, 12 May 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #233: RaaS: Readme as a Service 233 false 50:58 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/233]]>
#232 PyPI in a box and a revolutionary keyboard https://pythonbytes.fm/episodes/show/232/pypi-in-a-box-and-a-revolutionary-keyboard 24fde3a2-6ace-4ffb-a93b-c774d6e1a6e8 Wed, 05 May 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #232: PyPI in a box and a revolutionary keyboard 232 false 38:16 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/232]]>
#231 Go Python, Go! https://pythonbytes.fm/episodes/show/231/go-python-go 78903a53-c4bf-4db6-8845-6ae80bbf81d2 Wed, 28 Apr 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #231: Go Python, Go! 231 false 44:13 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/231]]>
#230 PyMars? Yes! FLoC? No! https://pythonbytes.fm/episodes/show/230/pymars-yes-floc-no b60ed375-e9d8-4aaa-ba71-963a30c15a8c Wed, 21 Apr 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #230: PyMars? Yes! FLoC? No! 230 false 45:30 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
  • calmcode.io
  • Natural sort (aka natsort)
  • Python controlling a helicopter on Mars.
  • Pydantic, FastAPI, Typer will all run on 3.10, 3.11, and into the future
  • Extra, Extra, Extra, Extra hear all about it
  • Build Python books with Jupyter-Book
  • Extras
  • Joke
See the full show notes for this episode on the website at pythonbytes.fm/230]]>
#229 Has one of your dependencies died? https://pythonbytes.fm/episodes/show/229/has-one-of-your-dependencies-died 710a43cd-6bc1-43d6-adb1-e4346f8d1640 Thu, 15 Apr 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #229: Has one of your dependencies died? 229 false 42:55 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/229]]>
#228 Supreme Court decides API copyright battle https://pythonbytes.fm/episodes/show/228/supreme-court-decides-api-copyright-battle 98d336c2-bf70-48aa-91ad-7859e4b54b70 Wed, 07 Apr 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #228: Supreme Court decides API copyright battle 228 false 43:34 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/228]]>
#227 No more awaiting, async comes to SQLAlchemy https://pythonbytes.fm/episodes/show/227/no-more-awaiting-async-comes-to-sqlalchemy ddba3493-3f6b-41ff-b8c6-5eab283aacf3 Wed, 31 Mar 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #227: No more awaiting, async comes to SQLAlchemy 227 false 33:08 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/227]]>
#226 Teaching Python podcast on the podcast! https://pythonbytes.fm/episodes/show/226/teaching-python-podcast-on-the-podcast 3293a08c-3d07-4505-ac62-66eb9924ee71 Thu, 25 Mar 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #226: Teaching Python podcast on the podcast! 226 false 46:03 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/226]]>
#225 SELECT Pydantic FROM MongoDB https://pythonbytes.fm/episodes/show/225/select-pydantic-from-mongodb c468075a-6a84-47af-84c0-087a1aa25654 Wed, 17 Mar 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #225: SELECT Pydantic FROM MongoDB 225 false 39:18 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/225]]>
#224 Join us on a Python adventure back to 1977 https://pythonbytes.fm/episodes/show/224/join-us-on-a-python-adventure-back-to-1977 b641b4ac-860a-4f49-8316-94d8277f8fec Wed, 10 Mar 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #224: Join us on a Python adventure back to 1977 224 false 37:58 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/224]]>
#223 Beware: A ninja is shadowing Sebastian from FastAPI https://pythonbytes.fm/episodes/show/223/beware-a-ninja-is-shadowing-sebastian-from-fastapi bd38a769-9d36-4ac5-9a46-55f40fd15bb0 Wed, 03 Mar 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #223: Beware: A ninja is shadowing Sebastian from FastAPI 223 false 50:48 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/223]]>
#222 Autocomplete with type annotations for AWS and boto3 https://pythonbytes.fm/episodes/show/222/autocomplete-with-type-annotations-for-aws-and-boto3 1cd2c793-9a20-4871-ad2f-bc1eff7dac17 Wed, 24 Feb 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #222: Autocomplete with type annotations for AWS and boto3 222 false 38:21 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/222]]>
#221 Pattern matching and accepting change in Python with Brett Cannon https://pythonbytes.fm/episodes/show/221/pattern-matching-and-accepting-change-in-python-with-brett-cannon f215c48f-b638-40d0-8e98-0adf1d4a38a0 Fri, 19 Feb 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #221: Pattern matching and accepting change in Python with Brett Cannon 221 false 59:05 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/221]]>
#220 What, why, and where of friendly errors in Python https://pythonbytes.fm/episodes/show/220/what-why-and-where-of-friendly-errors-in-python 964143f0-5175-4eea-9ea9-a3867d06b834 Thu, 11 Feb 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #220: What, why, and where of friendly errors in Python 220 false 47:27 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/220]]>
#219 HTMX: Dynamic and live HTML without JavaScript https://pythonbytes.fm/episodes/show/219/htmx-dynamic-and-live-html-without-javascript fbc4e5b1-a5e2-453c-84eb-06946536d6d9 Wed, 03 Feb 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #219: HTMX: Dynamic and live HTML without JavaScript 219 false 39:12 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/219]]>
#218 Keyboards for developers, Python, and some history https://pythonbytes.fm/episodes/show/218/keyboards-for-developers-python-and-some-history 023e6b10-b6b2-4e09-acfe-5e6f99306932 Wed, 27 Jan 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #218: Keyboards for developers, Python, and some history 218 false 43:34 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/218]]>
#217 Use your cloud SSD for fast, cross-process caching https://pythonbytes.fm/episodes/show/217/use-your-cloud-ssd-for-fast-cross-process-caching 8d5e698b-02ca-4dd4-9cfe-426339de13c8 Tue, 19 Jan 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #217: Use your cloud SSD for fast, cross-process caching 217 false 38:38 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/217]]>
#216 Container: Sort thyself! https://pythonbytes.fm/episodes/show/216/container-sort-thyself 1cb46f0e-bb26-43ee-bbce-da730c4cd436 Wed, 13 Jan 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #216: Container: Sort thyself! 216 false 35:33 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/216]]>
#215 A Visual Introduction to NumPy https://pythonbytes.fm/episodes/show/215/a-visual-introduction-to-numpy 57202c70-b5e3-4a64-a8d9-0f128941bbe6 Wed, 06 Jan 2021 00:00:00 -0800 Michael Kennedy and Brian Okken #215: A Visual Introduction to NumPy 215 false 43:25 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/215]]>
#214 Python year in review (2020 edition) https://pythonbytes.fm/episodes/show/214/python-year-in-review-2020-edition 77b55609-80f9-46f6-a470-67ed04a5487a Mon, 28 Dec 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #214: Python year in review (2020 edition) 214 false 01:10:28 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing pythonbytes.fm/214]]> #213 Uh oh, Vulcans have infiltrated Flask https://pythonbytes.fm/episodes/show/213/uh-oh-vulcans-have-infiltrated-flask a590c6f9-e12a-49dd-b294-fde2d3dc9bdd Wed, 23 Dec 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #213: Uh oh, Vulcans have infiltrated Flask 213 false 45:00 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/213]]>
#212 SQLite as a file format (like docx) https://pythonbytes.fm/episodes/show/212/sqlite-as-a-file-format-like-docx 91dd556c-aebe-4f77-a893-6a31ce75202f Wed, 16 Dec 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #212: SQLite as a file format (like docx) 212 false 36:16 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/212]]>
#211 Will a black hole devour this episode? https://pythonbytes.fm/episodes/show/211/will-a-black-hole-devour-this-episode a9455cf0-ff76-4b17-ab7a-6b87ce104349 Mon, 07 Dec 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #211: Will a black hole devour this episode? 211 false 44:32 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/211]]>
#210 Analyzing Kickstarter Campaigns with Python https://pythonbytes.fm/episodes/show/210/analyzing-kickstarter-campaigns-with-python a3664e59-2be0-4737-a217-f8827c234ca6 Thu, 03 Dec 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #210: Analyzing Kickstarter Campaigns with Python 210 false 31:08 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/210]]>
#209 JITing Python with .NET, no irons in sight https://pythonbytes.fm/episodes/show/209/jiting-python-with-.net-no-irons-in-sight 8dcc0a57-cf1c-4fc0-8cfb-7fc9620c9339 Fri, 27 Nov 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #209: JITing Python with .NET, no irons in sight 209 false 33:13 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/209]]>
#208 Dependencies out of control? Just pip chill. https://pythonbytes.fm/episodes/show/208/dependencies-out-of-control-just-pip-chill 2c8a4ef1-a209-4425-bc97-b701d577ba88 Thu, 19 Nov 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #208: Dependencies out of control? Just pip chill. 208 false 30:06 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/208]]>
#207 FastAPI as a web platform (not just APIs) https://pythonbytes.fm/episodes/show/207/fastapi-as-a-web-platform-not-just-apis 3e4b6d90-09ff-4146-a30e-9cfab3ff3b4e Fri, 13 Nov 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #207: FastAPI as a web platform (not just APIs) 207 false 33:27 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/207]]>
#206 Python dropping old operating systems is normal! https://pythonbytes.fm/episodes/show/206/python-dropping-old-operating-systems-is-normal 25100b63-22af-47be-8d03-2ae6dd96354d Sun, 08 Nov 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #206: Python dropping old operating systems is normal! 206 false 42:56 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/206]]>
#205 This is going to be a little bit awkward https://pythonbytes.fm/episodes/show/205/this-is-going-to-be-a-little-bit-awkward 6f97d2ec-e0dd-4aca-aeff-66e37df7ce1d Sat, 31 Oct 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #205: This is going to be a little bit awkward 205 false 34:18 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/205]]>
#204 Take the PSF survey and Will & Carlton drop by https://pythonbytes.fm/episodes/show/204/take-the-psf-survey-and-will-carlton-drop-by 0a574473-06fc-43b2-8a01-265d377c1c47 Fri, 23 Oct 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #204: Take the PSF survey and Will & Carlton drop by 204 false 40:02 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/204]]>
#203 Scripting a masterpiece for Python web automation https://pythonbytes.fm/episodes/show/203/scripting-a-masterpiece-for-python-web-automation e50e96a3-b47f-410c-9299-ecd369726677 Fri, 16 Oct 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #203: Scripting a masterpiece for Python web automation 203 false 40:45 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/203]]>
#202 Jupyter is back in black! https://pythonbytes.fm/episodes/show/202/jupyter-is-back-in-black 5d2f5be7-44c7-4aa2-b1c9-b833eceb832c Fri, 09 Oct 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #202: Jupyter is back in black! 202 false 33:24 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/202]]>
#201 Understand git by rebuilding it in Python https://pythonbytes.fm/episodes/show/201/understand-git-by-rebuilding-it-in-python 10faad6c-ed86-4296-81a5-5cc9b682d363 Fri, 02 Oct 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #201: Understand git by rebuilding it in Python 201 false 40:26 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/201]]>
#200 No dog-piling please (it's episode 200!) https://pythonbytes.fm/episodes/show/200/no-dog-piling-please-its-episode-200 2a65a452-2339-400c-863d-33b9fcf7dccc Fri, 25 Sep 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #200: No dog-piling please (it's episode 200!) 200 false 32:19 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/200]]>
#199 Big news for a very small Python runtime https://pythonbytes.fm/episodes/show/199/big-news-for-a-very-small-python-runtime 859368ae-a9e0-4751-adb1-77cf528e908c Thu, 17 Sep 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #199: Big news for a very small Python runtime 199 false 29:28 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/199]]>
#198 There's a beaver in your database and Anna-Lena drops by https://pythonbytes.fm/episodes/show/198/theres-a-beaver-in-your-database-and-anna-lena-drops-by a0f747de-9da1-427b-a44e-595d0d88693f Fri, 11 Sep 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #198: There's a beaver in your database and Anna-Lena drops by 198 false 34:42 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/198]]>
#197 Structured concurrency in Python https://pythonbytes.fm/episodes/show/197/structured-concurrency-in-python b4b33c2a-2069-4ed9-bf72-002e936eae18 Sat, 05 Sep 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #197: Structured concurrency in Python 197 false 36:08 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/197]]>
#196 Version your SQL schemas with git + automatically migrate them https://pythonbytes.fm/episodes/show/196/version-your-sql-schemas-with-git-automatically-migrate-them 53b6cbaf-f8fb-47f0-b53d-88080579b254 Thu, 27 Aug 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #196: Version your SQL schemas with git + automatically migrate them 196 false 31:05 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/196]]>
#195 Runtime type checking for Python type hints https://pythonbytes.fm/episodes/show/195/runtime-type-checking-for-python-type-hints 1b403062-a579-43b0-8f89-6f845fb74a2b Tue, 18 Aug 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #195: Runtime type checking for Python type hints 195 false 33:07 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/195]]>
#194 Events and callbacks in the Python language! https://pythonbytes.fm/episodes/show/194/events-and-callbacks-in-the-python-language 92a80e9d-ba65-4f82-8ac8-c5c97351fdbc Mon, 10 Aug 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #194: Events and callbacks in the Python language! 194 false 28:30 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/194]]>
#193 Break out the Django testing toolbox https://pythonbytes.fm/episodes/show/193/break-out-the-django-testing-toolbox c6d26d84-72a0-44cb-a813-ffe5acb13216 Thu, 06 Aug 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #193: Break out the Django testing toolbox 193 false 34:10 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/193]]>
#192 Calculations by hand, but in the compter, with Handcalcs https://pythonbytes.fm/episodes/show/192/calculations-by-hand-but-in-the-compter-with-handcalcs 5d63ab7c-8d8c-4e08-b979-3c8212e38ebd Sun, 02 Aug 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #192: Calculations by hand, but in the compter, with Handcalcs 192 false 30:29 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/192]]>
#191 Live from the Manning Python Conference https://pythonbytes.fm/episodes/show/191/live-from-the-manning-python-conference 5a8bb82d-d96f-443b-bf15-5f42888ef104 Wed, 22 Jul 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #191: Live from the Manning Python Conference 191 false 52:33 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/191]]>
#190 You will now be notified if the Python zipper is broken https://pythonbytes.fm/episodes/show/190/you-will-now-be-notified-if-the-python-zipper-is-broken 55e2a276-14e5-4e9a-b48e-27e22057b72a Thu, 16 Jul 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #190: You will now be notified if the Python zipper is broken 190 false 43:34 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/190]]>
#189 What does str.strip() do? Are you sure? https://pythonbytes.fm/episodes/show/189/what-does-str.strip-do-are-you-sure 31f6bdff-8e06-4849-ad69-5b98f18beacb Thu, 09 Jul 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #189: What does str.strip() do? Are you sure? 189 false 00:31:57 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/189]]>
#188 Will there be a "switch" in Python the language? https://pythonbytes.fm/episodes/show/188/will-there-be-a-switch-in-python-the-language 4ef93dc2-b7b7-4e23-a008-2bcc47d0c1de Fri, 03 Jul 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #188: Will there be a "switch" in Python the language? 188 false 31:30 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/188]]>
#187 Ready to find out if you're git famous? https://pythonbytes.fm/episodes/show/187/ready-to-find-out-if-youre-git-famous aca7f9c7-be53-41d4-974e-885696351f90 Fri, 26 Jun 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #187: Ready to find out if you're git famous? 187 false 29:25 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/187]]>
#186 The treebeard will guard your notebook https://pythonbytes.fm/episodes/show/186/the-treebeard-will-guard-your-notebook 1d40a7ef-ea5e-40d6-85bc-27d9cf6c1c58 Thu, 18 Jun 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #186: The treebeard will guard your notebook 186 false 24:51 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/186]]>
#185 This code is snooping on you (a good thing!) https://pythonbytes.fm/episodes/show/185/this-code-is-snooping-on-you-a-good-thing 214ee5ec-aa76-4846-9998-adbd75ac3bb6 Fri, 12 Jun 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #185: This code is snooping on you (a good thing!) 185 false 24:39 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/185]]>
#184 Too many ways to wait with await? https://pythonbytes.fm/episodes/show/184/too-many-ways-to-wait-with-await 14c035f3-8eb4-404d-b83e-6ccc9e2a13ed Fri, 05 Jun 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #184: Too many ways to wait with await? 184 false 36:02 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/184]]>
#183 Need a beautiful database editor? Look to the Bees! https://pythonbytes.fm/episodes/show/183/need-a-beautiful-database-editor-look-to-the-bees b2d45cd5-1454-4dcf-8de6-9cb73e8a5dad Fri, 29 May 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #183: Need a beautiful database editor? Look to the Bees! 183 false 31:51 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/183]]>
#182 PSF Survey is out! https://pythonbytes.fm/episodes/show/182/psf-survey-is-out 497eb1d7-2eaa-49e6-bd9c-fd3707c0a94d Tue, 19 May 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #182: PSF Survey is out! 182 false 00:25:52 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/182]]>
#181 It's time to interrogate your Python code https://pythonbytes.fm/episodes/show/181/its-time-to-interrogate-your-python-code 542b928e-ebaa-4a0f-b12a-b9c2757918cd Thu, 14 May 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #181: It's time to interrogate your Python code 181 false 00:31:02 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/181]]>
#180 Transactional file IO with Python and safer https://pythonbytes.fm/episodes/show/180/transactional-file-io-with-python-and-safer 7a68fd60-71ad-4c9d-8a52-1458ec2294c5 Fri, 08 May 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #180: Transactional file IO with Python and safer 180 false 00:32:58 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/180]]>
#179 Guido van Rossum drops in on Python Bytes https://pythonbytes.fm/episodes/show/179/guido-van-rossum-drops-in-on-python-bytes 10469007-94f7-4788-b5b4-c1ec9bd155d6 Thu, 30 Apr 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #179: Guido van Rossum drops in on Python Bytes 179 false 00:44:54 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/179]]>
#178 Build a PyPI package from a Jupyter notebook https://pythonbytes.fm/episodes/show/178/build-a-pypi-package-from-a-jupyter-notebook b6f40251-e07d-47bc-8b07-db2f7fbda4ab Wed, 22 Apr 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #178: Build a PyPI package from a Jupyter notebook 178 false 00:38:18 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/178]]>
#177 Coding is 90% Google searching or is it? https://pythonbytes.fm/episodes/show/177/coding-is-90-google-searching-or-is-it cd270105-9143-4efd-b24b-eb74cbc87148 Thu, 16 Apr 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #177: Coding is 90% Google searching or is it? 177 false 00:41:43 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/177]]>
#176 How python implements super long integers https://pythonbytes.fm/episodes/show/176/how-python-implements-super-long-integers f7942197-bc0f-4436-b026-538eb1b36632 Tue, 07 Apr 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #176: How python implements super long integers 176 false 00:29:32 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/176]]>
#175 Python string theory with superstring.py https://pythonbytes.fm/episodes/show/175/python-string-theory-with-superstring.py 7e5491ff-c854-4aef-b1d6-443657201565 Wed, 01 Apr 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #175: Python string theory with superstring.py 175 false 00:32:43 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/175]]>
#174 Happy developers use Python 3 https://pythonbytes.fm/episodes/show/174/happy-developers-use-python-3 770e74d3-953b-4239-8e25-08cf3426aa42 Thu, 26 Mar 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #174: Happy developers use Python 3 174 false 00:47:44 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/174]]>
#173 Your test deserves a fluent flavor https://pythonbytes.fm/episodes/show/173/your-test-deserves-a-fluent-flavor 94b2dbed-41a1-4469-9d86-35e2a27b3cd5 Thu, 19 Mar 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #173: Your test deserves a fluent flavor 173 false 00:28:38 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/173]]>
#172 Floating high above the web with Helium https://pythonbytes.fm/episodes/show/172/floating-high-above-the-web-with-helium c0fbb20f-167b-4898-b014-57681e526087 Fri, 13 Mar 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #172: Floating high above the web with Helium 172 false 00:32:54 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/172]]>
#171 Chilled out Python decorators with PEP 614 https://pythonbytes.fm/episodes/show/171/chilled-out-python-decorators-with-pep-614 7b765dd1-d02f-4d5f-94aa-4a2be5eacb6c Thu, 05 Mar 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #171: Chilled out Python decorators with PEP 614 171 false 00:34:34 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/171]]>
#170 Visualize this: Visualizing Python's visualization ecosystem https://pythonbytes.fm/episodes/show/170/visualize-this-visualizing-pythons-visualization-ecosystem 023a1887-e606-4013-bf97-5963e1fb02ea Tue, 25 Feb 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #170: Visualize this: Visualizing Python's visualization ecosystem 170 false 00:29:05 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/170]]>
#169 Jupyter Notebooks natively on your iPad https://pythonbytes.fm/episodes/show/169/jupyter-notebooks-natively-on-your-ipad db017fdc-51d9-4941-b9db-c65b1f148695 Wed, 19 Feb 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #169: Jupyter Notebooks natively on your iPad 169 false 00:25:44 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/169]]>
#168 Race your donkey car with Python https://pythonbytes.fm/episodes/show/168/race-your-donkey-car-with-python 82641b82-e7be-47f9-8fed-6d2989bb31ce Tue, 11 Feb 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #168: Race your donkey car with Python 168 false 33:34 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/168]]>
#167 Cheating at Kaggle and uWSGI in prod https://pythonbytes.fm/episodes/show/167/cheating-at-kaggle-and-uwsgi-in-prod b89d2dd2-fd76-416f-9278-3eb2764daaca Mon, 03 Feb 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #167: Cheating at Kaggle and uWSGI in prod 167 false 00:28:30 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/167]]>
#166 Misunderstanding software clocks and time https://pythonbytes.fm/episodes/show/166/misunderstanding-software-clocks-and-time 7f44a0cb-fa06-4a4b-a193-231a54c330d6 Mon, 27 Jan 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #166: Misunderstanding software clocks and time 166 false 00:28:21 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/166]]>
#165 Ranges as dictionary keys - oh my! https://pythonbytes.fm/episodes/show/165/ranges-as-dictionary-keys-oh-my e7ff478d-0a5b-445b-bd47-af43b0fac6c4 Tue, 21 Jan 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #165: Ranges as dictionary keys - oh my! 165 false 00:28:45 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/165]]>
#164 Use type hints to build your next CLI app https://pythonbytes.fm/episodes/show/164/use-type-hints-to-build-your-next-cli-app dc90da50-fbae-4691-aa9e-3f190eb84e5a Thu, 16 Jan 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #164: Use type hints to build your next CLI app 164 false 00:29:02 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/164]]>
#163 Meditations on the Zen of Python https://pythonbytes.fm/episodes/show/163/meditations-on-the-zen-of-python 76adc9e0-72cd-443a-9312-6c86a4a6da31 Thu, 09 Jan 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #163: Meditations on the Zen of Python 163 false 00:23:49 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/163]]>
#162 Retrofitting async and await into Django https://pythonbytes.fm/episodes/show/162/retrofitting-async-and-await-into-django 57b6468b-6ab7-4c96-a8d0-34f9cec481d6 Fri, 03 Jan 2020 00:00:00 -0800 Michael Kennedy and Brian Okken #162: Retrofitting async and await into Django 162 false 00:23:09 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing pythonbytes.fm/162]]> #161 Sloppy Python can mean fast answers! https://pythonbytes.fm/episodes/show/161/sloppy-python-can-mean-fast-answers 9574d4a0-388c-4b69-b3f4-351b267d6303 Wed, 18 Dec 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #161: Sloppy Python can mean fast answers! 161 false 00:30:15 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/161]]>
#160 Your JSON shall be streamed https://pythonbytes.fm/episodes/show/160/your-json-shall-be-streamed bf538f8d-b833-4e29-b3a2-a659a3280a13 Thu, 12 Dec 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #160: Your JSON shall be streamed 160 false 00:28:43 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/160]]>
#159 Brian's PR is merged, the src will flow https://pythonbytes.fm/episodes/show/159/brians-pr-is-merged-the-src-will-flow 09af7198-aa55-4d7e-bc81-1f91bd94dda1 Tue, 03 Dec 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #159: Brian's PR is merged, the src will flow 159 false 00:33:18 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/159]]>
#158 There's a bounty on your open-source bugs! https://pythonbytes.fm/episodes/show/158/theres-a-bounty-on-your-open-source-bugs 30961056-a8e8-4900-b0fb-dd33eba86c0e Wed, 27 Nov 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #158: There's a bounty on your open-source bugs! 158 false 00:26:05 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/158]]>
#157 Oh hai Pandas, hold my hand? https://pythonbytes.fm/episodes/show/157/oh-hai-pandas-hold-my-hand a9071a90-3947-4c0b-98b1-d3dad1887e40 Wed, 20 Nov 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #157: Oh hai Pandas, hold my hand? 157 false 00:23:32 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/157]]>
#156 All the programming LOLs https://pythonbytes.fm/episodes/show/156/all-the-programming-lols 729c775e-2fbe-4172-8b3c-9fc45cc1f95a Fri, 15 Nov 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #156: All the programming LOLs 156 false 00:28:27 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/156]]>
#155 Guido van Rossum retires https://pythonbytes.fm/episodes/show/155/guido-van-rossum-retires 2b4febfe-467e-4def-af08-c5354f2e425e Wed, 06 Nov 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #155: Guido van Rossum retires 155 false 00:32:06 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/155]]>
#154 Code, frozen in carbon, on display for all https://pythonbytes.fm/episodes/show/154/code-frozen-in-carbon-on-display-for-all 4129a5b4-52c2-47c2-8d35-68725415f55c Tue, 29 Oct 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #154: Code, frozen in carbon, on display for all 154 false 0:32:19 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/154]]>
#153 Auto format my Python please! https://pythonbytes.fm/episodes/show/153/auto-format-my-python-please 1fc2ec82-79d5-48e3-9caf-f3694b172183 Wed, 23 Oct 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #153: Auto format my Python please! 153 false 0:26:57 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/153]]>
#152 You have 35 million lines of Python 2, now what? https://pythonbytes.fm/episodes/show/152/you-have-35-million-lines-of-python-2-now-what 882412a8-3ca9-4d08-9ac0-5d89e8f5c541 Tue, 15 Oct 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #152: You have 35 million lines of Python 2, now what? 152 false 0:26:01 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/152]]>
#151 Certified! It works on my machine https://pythonbytes.fm/episodes/show/151/certified-it-works-on-my-machine 5775f3bb-acde-4189-81a4-57c8b2336744 Thu, 10 Oct 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #151: Certified! It works on my machine 151 false 0:25:47 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/151]]>
#150 Winning the Python software interview https://pythonbytes.fm/episodes/show/150/winning-the-python-software-interview 793f35a0-74ea-4a44-a4b6-249ed0e52c01 Sat, 05 Oct 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #150: Winning the Python software interview 150 false 0:23:57 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/150]]>
#149 Python's small object allocator and other memory features https://pythonbytes.fm/episodes/show/149/pythons-small-object-allocator-and-other-memory-features a1004cd1-c935-4ef3-9b5f-b5fd4214078f Wed, 25 Sep 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #149: Python's small object allocator and other memory features 149 false 0:37:18 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/149]]>
#148 The ASGI revolution is upon us! https://pythonbytes.fm/episodes/show/148/the-asgi-revolution-is-upon-us 188696ef-836d-42c5-b370-a162471e8bc0 Wed, 18 Sep 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #148: The ASGI revolution is upon us! 148 false 0:24:03 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/148]]>
#147 Mocking out AWS APIs https://pythonbytes.fm/episodes/show/147/mocking-out-aws-apis f01044d7-f364-4ef5-9a07-be628fecacea Wed, 11 Sep 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #147: Mocking out AWS APIs 147 false 0:25:19 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/147]]>
#146 Slay the dragon, learn the Python https://pythonbytes.fm/episodes/show/146/slay-the-dragon-learn-the-python 3aa6db93-7d51-4f55-a2a0-1165850404ad Sun, 08 Sep 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #146: Slay the dragon, learn the Python 146 false 0:23:35 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/146]]>
#145 The Python 3 “Y2K” problem https://pythonbytes.fm/episodes/show/145/the-python-3-y2k-problem efac0f85-a5ed-4ae8-ac92-ee50a741741c Sat, 31 Aug 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #145: The Python 3 “Y2K” problem 145 false 0:34:24 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/145]]>
#144 Are you mocking me? It won't work! https://pythonbytes.fm/episodes/show/144/are-you-mocking-me-it-wont-work be237db8-4b87-455f-9562-390f83605c53 Fri, 23 Aug 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #144: Are you mocking me? It won't work! 144 false 00:25:46 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/144]]>
#143 Spike the robot, powered by Python! https://pythonbytes.fm/episodes/show/143/spike-the-robot-powered-by-python f7dae8a5-898a-477d-ad94-8c3194ddb3e6 Wed, 14 Aug 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #143: Spike the robot, powered by Python! 143 false 00:33:19 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/143]]>
#142 There's a bandit in the Python space https://pythonbytes.fm/episodes/show/142/theres-a-bandit-in-the-python-space 884ae81e-40aa-4efe-9e2d-f6eded91e82c Tue, 06 Aug 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #142: There's a bandit in the Python space 142 false 00:30:31 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/142]]>
#141 Debugging with f-strings coming in Python 3.8 https://pythonbytes.fm/episodes/show/141/debugging-with-f-strings-coming-in-python-3.8 ba8ee1e1-3eaf-4e8d-8ace-be8925085347 Mon, 29 Jul 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #141: Debugging with f-strings coming in Python 3.8 141 false 00:30:45 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/141]]>
#140 Becoming a 10x Developer (sorta) https://pythonbytes.fm/episodes/show/140/becoming-a-10x-developer-sorta bb6be4d3-83a8-4cb6-a12c-e9103644d294 Tue, 23 Jul 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #140: Becoming a 10x Developer (sorta) 140 false 00:24:39 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/140]]>
#139 f"Yes!" for the f-strings https://pythonbytes.fm/episodes/show/139/f-yes-for-the-f-strings c288b97f-5a8e-4315-8526-65fb96551c88 Thu, 18 Jul 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #139: f"Yes!" for the f-strings 139 false 00:38:42 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/139]]>
#138 Will PyOxidizer weld shut one of Python's major gaps? https://pythonbytes.fm/episodes/show/138/will-pyoxidizer-weld-shut-one-of-pythons-major-gaps 9ecacbe0-7034-42e0-a108-be201a079292 Mon, 08 Jul 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #138: Will PyOxidizer weld shut one of Python's major gaps? 138 false 00:29:39 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/138]]>
#137 Advanced Python testing and big-time diffs https://pythonbytes.fm/episodes/show/137/advanced-python-testing-and-big-time-diffs 4717e1ac-2be1-4eec-8961-49918ef2a1f1 Tue, 02 Jul 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #137: Advanced Python testing and big-time diffs 137 false 00:28:05 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/137]]>
#136 A Python kernel rather than cleaning the batteries? https://pythonbytes.fm/episodes/show/136/a-python-kernel-rather-than-cleaning-the-batteries 43155872-6216-443a-bff0-37e1c588938d Tue, 25 Jun 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #136: A Python kernel rather than cleaning the batteries? 136 false 00:30:27 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/136]]>
#135 macOS deprecates Python 2, will stop shipping it (eventually) https://pythonbytes.fm/episodes/show/135/macos-deprecates-python-2-will-stop-shipping-it-eventually 4a5fc112-8b32-4e67-8906-f621e20acef8 Thu, 20 Jun 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #135: macOS deprecates Python 2, will stop shipping it (eventually) 135 false 00:32:24 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/135]]>
#134 Python proves Mercury is the closest planet to Earth https://pythonbytes.fm/episodes/show/134/python-proves-mercury-is-the-closest-planet-to-earth 9898436e-52c6-4bc5-8295-4a279b479158 Wed, 12 Jun 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #134: Python proves Mercury is the closest planet to Earth 134 false 00:21:10 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/134]]>
#133 Github sponsors - The model open source has been waiting for? https://pythonbytes.fm/episodes/show/133/github-sponsors-the-model-open-source-has-been-waiting-for f373deb7-23c4-4384-b3b5-fc2ec77765dc Wed, 05 Jun 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #133: Github sponsors - The model open source has been waiting for? 133 false 00:27:29 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/133]]>
#132 Algorithms as objects https://pythonbytes.fm/episodes/show/132/algorithms-as-objects b6d107bf-1813-4996-8517-7b3a35534db0 Thu, 30 May 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #132: Algorithms as objects 132 false 0:30:19 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/132]]>
#131 Python 3 has issues (over on GitHub) https://pythonbytes.fm/episodes/show/131/python-3-has-issues-over-on-github ed4e8c83-0416-495b-8f11-b78eaa17c2fe Tue, 21 May 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #131: Python 3 has issues (over on GitHub) 131 false 00:27:15 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/131]]>
#130 Python.exe now shipping with Windows 10 https://pythonbytes.fm/episodes/show/130/python.exe-now-shipping-with-windows-10 97b0db69-56ec-460a-b266-61e82f55796c Tue, 14 May 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #130: Python.exe now shipping with Windows 10 130 false 00:24:07 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/130]]>
#129 Maintaining a Python Project when it’s not your job https://pythonbytes.fm/episodes/show/129/maintaining-a-python-project-when-it-s-not-your-job 14bd7270-398b-43cf-ba8c-43f0198bff35 Mon, 06 May 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #129: Maintaining a Python Project when it’s not your job 129 false 00:16:40 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
  • Maintaining a Python Project when it’s not your job
  • Python in 1994
  • Textblob
  • Extras
  • Joke
See the full show notes for this episode on the website at pythonbytes.fm/129]]>
#128 Will the GIL be obsolete with PEP 554? https://pythonbytes.fm/episodes/show/128/will-the-gil-be-obsolete-with-pep-554 a5882d16-b582-47cb-bff9-e8af365d6bca Thu, 02 May 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #128: Will the GIL be obsolete with PEP 554? 128 false 00:23:01 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/128]]>
#127 That Python code is on fire! https://pythonbytes.fm/episodes/show/127/that-python-code-is-on-fire 28e96e5e-9a08-4e23-88ac-364a0bcff8ca Thu, 25 Apr 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #127: That Python code is on fire! 127 false 00:24:55 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/127]]>
#126 WebAssembly comes to Python https://pythonbytes.fm/episodes/show/126/webassembly-comes-to-python 46ca55b8-7c49-4027-aa1b-af534084566b Fri, 19 Apr 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #126: WebAssembly comes to Python 126 false 00:30:10 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/126]]>
#125 Will you conquer the deadlock empire? https://pythonbytes.fm/episodes/show/125/will-you-conquer-the-deadlock-empire 64b58fb0-3e3e-4b0e-aacd-5fe06370f3aa Sat, 13 Apr 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #125: Will you conquer the deadlock empire? 125 false 00:31:46 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/125]]>
#124 This is not the None you're looking for https://pythonbytes.fm/episodes/show/124/this-is-not-the-none-youre-looking-for 60acd212-cb8c-46fc-9ac5-e839e495d60a Fri, 05 Apr 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #124: This is not the None you're looking for 124 false 00:27:41 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/124]]>
#123 Time to right the py-wrongs https://pythonbytes.fm/episodes/show/123/time-to-right-the-py-wrongs 96f9ceb6-0fe8-4c37-b02a-860950ca7ba1 Fri, 29 Mar 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #123: Time to right the py-wrongs 123 false 00:25:31 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/123]]>
#122 Give Me Back My Monolith https://pythonbytes.fm/episodes/show/122/give-me-back-my-monolith 04474e73-2eea-4c7f-903a-399eee6a37ad Fri, 22 Mar 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #122: Give Me Back My Monolith 122 false 00:29:06 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/122]]>
#121 python2 becomes self-aware, enters fifth stage of grief https://pythonbytes.fm/episodes/show/121/python2-becomes-self-aware-enters-fifth-stage-of-grief f4f44c11-a087-48c7-9777-55f900b7954f Sat, 16 Mar 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #121: python2 becomes self-aware, enters fifth stage of grief 121 false 00:23:34 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/121]]>
#120 AWS, MongoDB, and the Economic Realities of Open Source and more https://pythonbytes.fm/episodes/show/120/aws-mongodb-and-the-economic-realities-of-open-source-and-more 7e11bb7a-ea01-4cd1-b265-5bdae04af2c6 Tue, 05 Mar 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #120: AWS, MongoDB, and the Economic Realities of Open Source and more 120 false 00:25:25 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/120]]>
#119 Assorted files as Django ORM backends with Alkali https://pythonbytes.fm/episodes/show/119/assorted-files-as-django-orm-backends-with-alkali 96021ebe-2259-4f04-aea6-7ae5125ea15f Tue, 26 Feb 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #119: Assorted files as Django ORM backends with Alkali 119 false 00:22:13 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/119]]>
#118 Better Python executable management with pipx https://pythonbytes.fm/episodes/show/118/better-python-executable-management-with-pipx 18bc2103-2687-4abb-aaf6-512d43196d4b Fri, 22 Feb 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #118: Better Python executable management with pipx 118 false 00:25:54 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/118]]>
#117 Is this the end of Python virtual environments? https://pythonbytes.fm/episodes/show/117/is-this-the-end-of-python-virtual-environments 75a6fd95-fa51-4b3e-9c59-9821a6605936 Thu, 14 Feb 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #117: Is this the end of Python virtual environments? 117 false 00:28:20 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing pythonbytes.fm/117]]> #116 So you want Python in a 3D graphics engine? https://pythonbytes.fm/episodes/show/116/so-you-want-python-in-a-3d-graphics-engine 2e5884a2-1ca6-4d18-a058-35ddc136c8c6 Wed, 06 Feb 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #116: So you want Python in a 3D graphics engine? 116 false 00:17:56 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/116]]>
#115 Dataclass CSV reader and Nina drops by https://pythonbytes.fm/episodes/show/115/dataclass-csv-reader-and-nina-drops-by 3899809d-49f6-47db-b2b3-05def30a6882 Sat, 02 Feb 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #115: Dataclass CSV reader and Nina drops by 115 false 00:28:58 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/115]]>
#114 What should be in the Python standard library? https://pythonbytes.fm/episodes/show/114/what-should-be-in-the-python-standard-library 8247bcbe-730a-4698-903e-7d94faca683b Sat, 26 Jan 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #114: What should be in the Python standard library? 114 false 00:28:33 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/114]]>
#113 Python Lands on the Windows 10 App Store https://pythonbytes.fm/episodes/show/113/python-lands-on-the-windows-10-app-store 0b65b5d9-f520-4328-bab4-f90cfaf64bba Fri, 18 Jan 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #113: Python Lands on the Windows 10 App Store 113 false 00:23:22 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/113]]>
#112 Don't use the greater than sign in programming https://pythonbytes.fm/episodes/show/112/dont-use-the-greater-than-sign-in-programming 0152d296-6715-4ddb-888e-4b01bf557950 Fri, 11 Jan 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #112: Don't use the greater than sign in programming 112 false 00:28:47 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/112]]>
#111 loguru: Python logging made simple https://pythonbytes.fm/episodes/show/111/loguru-python-logging-made-simple cd106ff0-7833-4cd4-bd4e-450af7cf7796 Sat, 05 Jan 2019 00:00:00 -0800 Michael Kennedy and Brian Okken #111: loguru: Python logging made simple 111 false 00:34:16 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/111]]>
#110 Python Year in Review 2018 Edition https://pythonbytes.fm/episodes/show/110/python-year-in-review-2018-edition 68271af3-38f5-41fe-8140-feac6dea2417 Wed, 26 Dec 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #110: Python Year in Review 2018 Edition 110 false 00:56:54 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing pythonbytes.fm/110]]> #109 CPython byte code explorer https://pythonbytes.fm/episodes/show/109/cpython-byte-code-explorer 5014f9fe-9545-4bd9-925f-ecb4a4a559c6 Tue, 18 Dec 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #109: CPython byte code explorer 109 false 00:20:45 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/109]]>
#108 Spilled data? Call the PyJanitor https://pythonbytes.fm/episodes/show/108/spilled-data-call-the-pyjanitor 5f10761e-4ed1-4ba8-a473-83fc1a2e8803 Tue, 11 Dec 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #108: Spilled data? Call the PyJanitor 108 false 00:21:51 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/108]]>
#107 Restructuring and searching data, the Python way https://pythonbytes.fm/episodes/show/107/restructuring-and-searching-data-the-python-way 526aeec7-9950-43b6-8247-3bdcc99b4cef Fri, 07 Dec 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #107: Restructuring and searching data, the Python way 107 false 00:22:50 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/107]]>
#106 Fluent query APIs on Python collections https://pythonbytes.fm/episodes/show/106/fluent-query-apis-on-python-collections b80882fe-ceda-484d-a0fe-fbd8e8cbe73f Sat, 01 Dec 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #106: Fluent query APIs on Python collections 106 false 00:26:21 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/106]]>
#105 Colorizing and Restoring Old Images with Deep Learning https://pythonbytes.fm/episodes/show/105/colorizing-and-restoring-old-images-with-deep-learning 1f6f43fc-fcf4-4c37-9b3c-ab3269fcc45e Fri, 23 Nov 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #105: Colorizing and Restoring Old Images with Deep Learning 105 false 00:24:15 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/105]]>
#104 API Evolution the Right Way https://pythonbytes.fm/episodes/show/104/api-evolution-the-right-way 0c52fa82-b95e-4696-85b4-04e594957997 Sat, 17 Nov 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #104: API Evolution the Right Way 104 false 00:30:07 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/104]]>
#103 Getting to 10x (results for developers) https://pythonbytes.fm/episodes/show/103/getting-to-10x-results-for-developers 963916fb-1e28-4246-8b18-74dcd5a2b535 Thu, 08 Nov 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #103: Getting to 10x (results for developers) 103 false 00:27:06 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/103]]>
#102 Structure of a Flask Project https://pythonbytes.fm/episodes/show/102/structure-of-a-flask-project 458c9c86-eca9-4116-b984-b90985ae1f44 Wed, 31 Oct 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #102: Structure of a Flask Project 102 false 00:26:52 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/102]]>
#101 Nobel Prize awarded to a Python convert https://pythonbytes.fm/episodes/show/101/nobel-prize-awarded-to-a-python-convert 5d6bb89f-8c82-4c6d-9ca5-d59765498cda Wed, 24 Oct 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #101: Nobel Prize awarded to a Python convert 101 false 00:21:34 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/101]]>
#100 The big 100 with special guests https://pythonbytes.fm/episodes/show/100/the-big-100-with-special-guests 7f76b397-ba60-4cc7-a7c2-3f54b31108fd Fri, 19 Oct 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #100: The big 100 with special guests 100 false 00:42:00 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/100]]>
#99 parse - the regex antidote in Python https://pythonbytes.fm/episodes/show/99/parse-the-regex-antidote-in-python 8f59166c-abdb-4330-94fc-6c5ff62f0c7c Tue, 16 Oct 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #99: parse - the regex antidote in Python 99 false 00:21:18 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/99]]>
#98 Python-Electron as a Python GUI https://pythonbytes.fm/episodes/show/98/python-electron-as-a-python-gui a57b7cf1-dd0f-41fe-98e6-edf334a043c0 Mon, 08 Oct 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #98: Python-Electron as a Python GUI 98 false 00:26:58 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/98]]>
#97 Java goes paid https://pythonbytes.fm/episodes/show/97/java-goes-paid 80af76fe-f45f-4f63-a514-a9c844dee929 Fri, 28 Sep 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #97: Java goes paid 97 false 00:24:36 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/97]]>
#96 Python Language Summit 2018 https://pythonbytes.fm/episodes/show/96/python-language-summit-2018 0c2a4c66-dd04-4338-bac0-6b1556d5235a Sat, 22 Sep 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #96: Python Language Summit 2018 96 false 00:26:33 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/96]]>
#95 Unleash the py-spy! https://pythonbytes.fm/episodes/show/95/unleash-the-py-spy 1d16e8ea-e337-40f1-959e-002a38956145 Sat, 15 Sep 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #95: Unleash the py-spy! 95 false 00:23:33 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/95]]>
#94 Why don't you like notebooks? https://pythonbytes.fm/episodes/show/94/why-dont-you-like-notebooks a2e97a62-0681-44a0-868c-016042a84e22 Thu, 06 Sep 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #94: Why don't you like notebooks? 94 false 00:23:49 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/94]]>
#93 Looking like there will be a PyBlazor! https://pythonbytes.fm/episodes/show/93/looking-like-there-will-be-a-pyblazor f32e00ff-aadd-4b26-8abc-1393feab1df6 Fri, 31 Aug 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #93: Looking like there will be a PyBlazor! 93 false 00:24:15 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/93]]>
#92 Will your Python be compiled? https://pythonbytes.fm/episodes/show/92/will-your-python-be-compiled 07fe170a-2b4d-4c98-a2d2-950ca3d87eab Sat, 25 Aug 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #92: Will your Python be compiled? 92 false 00:26:57 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/92]]>
#91 Will there be a PyBlazor? https://pythonbytes.fm/episodes/show/91/will-there-be-a-pyblazor 424963a7-3b25-4d4f-80d1-f5e30ac06a59 Wed, 15 Aug 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #91: Will there be a PyBlazor? 91 false 00:20:28 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/91]]>
#90 A Django Async Roadmap https://pythonbytes.fm/episodes/show/90/a-django-async-roadmap 9274a3a7-320f-4e9a-a863-ce43b0b42def Tue, 07 Aug 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #90: A Django Async Roadmap 90 false 00:25:18 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/90]]>
#89 A tenacious episode that won't give up https://pythonbytes.fm/episodes/show/89/a-tenacious-episode-that-wont-give-up aff47349-3cf5-4cff-a425-3b8f8c78304e Sat, 04 Aug 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #89: A tenacious episode that won't give up 89 false 00:28:50 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/89]]>
#88 Python has brought computer programming to a vast new audience https://pythonbytes.fm/episodes/show/88/python-has-brought-computer-programming-to-a-vast-new-audience 0db0a0c7-d778-4f97-93e4-2ea756d0c9d8 Fri, 27 Jul 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #88: Python has brought computer programming to a vast new audience 88 false 00:23:08 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/88]]>
#87 Guido van Rossum steps down https://pythonbytes.fm/episodes/show/87/guido-van-rossum-steps-down 685e17ed-4066-406f-a4df-8216006a24b0 Tue, 17 Jul 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #87: Guido van Rossum steps down 87 false 00:33:20 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing pythonbytes.fm/87]]> #86 Make your NoSQL async and await-able with uMongo https://pythonbytes.fm/episodes/show/86/make-your-nosql-async-and-await-able-with-umongo 0eb9833b-982f-4081-9c55-e91e9855722b Fri, 13 Jul 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #86: Make your NoSQL async and await-able with uMongo 86 false 00:26:04 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/86]]>
#85 Visually debugging your Jupyter notebook https://pythonbytes.fm/episodes/show/85/visually-debugging-your-jupyter-notebook 09d41fba-613d-48c3-b21c-db16282441be Tue, 03 Jul 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #85: Visually debugging your Jupyter notebook 85 false 00:24:40 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/85]]>
#84 Vibora web framework: It's fast, async, and means viper https://pythonbytes.fm/episodes/show/84/vibora-web-framework-its-fast-async-and-means-viper ed71bacc-974c-4611-af2d-e2a2b2ad2dac Thu, 28 Jun 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #84: Vibora web framework: It's fast, async, and means viper 84 false 00:26:29 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/84]]>
#83 from __future__ import braces https://pythonbytes.fm/episodes/show/83/from-future-import-braces 62194ad3-7132-44e6-8152-f2be6b605466 Fri, 22 Jun 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #83: from __future__ import braces 83 false 00:29:22 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/83]]>
#82 Let's make a clear Python 3 statement https://pythonbytes.fm/episodes/show/82/lets-make-a-clear-python-3-statement 30712fb9-7a6d-4eaf-bdc1-b5339ec2eda6 Fri, 15 Jun 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #82: Let's make a clear Python 3 statement 82 false 00:25:55 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/82]]>
#81 Making your C library callable from Python by wrapping it with Cython https://pythonbytes.fm/episodes/show/81/making-your-c-library-callable-from-python-by-wrapping-it-with-cython dc0775d8-1146-44eb-827c-44d8ae3f6df1 Tue, 05 Jun 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #81: Making your C library callable from Python by wrapping it with Cython 81 false 00:17:00 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/81]]>
#80 Dan Bader drops by and we found 30 new Python projects https://pythonbytes.fm/episodes/show/80/dan-bader-drops-by-and-we-found-30-new-python-projects 8b593809-b716-48c1-bcc3-afe7f9895991 Tue, 29 May 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #80: Dan Bader drops by and we found 30 new Python projects 80 false 00:30:45 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/80]]>
#79 15 Tips to Enhance your Github Flow https://pythonbytes.fm/episodes/show/79/15-tips-to-enhance-your-github-flow 405419b6-7f31-4aa4-aa23-b79a8e7a74bf Fri, 25 May 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #79: 15 Tips to Enhance your Github Flow 79 false 00:27:31 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/79]]>
#78 Setting Expectations for Open Source Participation https://pythonbytes.fm/episodes/show/78/setting-expectations-for-open-source-participation 81bee509-0f75-4224-a039-4daf5f083992 Fri, 18 May 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #78: Setting Expectations for Open Source Participation 78 false 00:26:07 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/78]]>
#77 You Don't Have To Be a Workaholic To Win https://pythonbytes.fm/episodes/show/77/you-dont-have-to-be-a-workaholic-to-win b7aad6ad-0b74-4467-a627-d6bba7964585 Sat, 12 May 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #77: You Don't Have To Be a Workaholic To Win 77 false 00:21:04 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/77]]>
#76 Goodbye zero-versioning https://pythonbytes.fm/episodes/show/76/goodbye-zero-versioning 04878768-7e7c-41b3-b087-d132798a6934 Fri, 04 May 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #76: Goodbye zero-versioning 76 false 00:30:40 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/76]]>
#75 pypi.org officially launches https://pythonbytes.fm/episodes/show/75/pypi.org-officially-launches 6f5581c9-5ef6-4b25-be58-f3ebdedcbabc Sat, 28 Apr 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #75: pypi.org officially launches 75 false 00:19:51 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/75]]>
#74 Contributing to Open Source effectively https://pythonbytes.fm/episodes/show/74/contributing-to-open-source-effectively 20d66724-2553-4748-9967-b6b470afc53b Thu, 19 Apr 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #74: Contributing to Open Source effectively 74 false 00:24:51 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
  • Contributing to Open Source effectively
  • Jupyter, Mathematica, and the Future of the Research Paper
  • Depression AI
  • Extras
  • Joke
See the full show notes for this episode on the website at pythonbytes.fm/74]]>
#73 This podcast comes in any color you want, as long as it's black https://pythonbytes.fm/episodes/show/73/this-podcast-comes-in-any-color-you-want-as-long-as-its-black e14d3f94-a4b1-4a78-bdd5-7dc13e4d07fc Thu, 12 Apr 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #73: This podcast comes in any color you want, as long as it's black 73 false 00:18:35 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/73]]>
#72 New versioning: Episode 0.0.7.2 (with 72 releases) https://pythonbytes.fm/episodes/show/72/new-versioning-episode-0.0.7.2-with-72-releases 08463d77-0b65-49e3-91d5-b7a4a410449c Thu, 05 Apr 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #72: New versioning: Episode 0.0.7.2 (with 72 releases) 72 false 00:22:54 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/72]]>
#71 We can migrate to Python 3, careful please https://pythonbytes.fm/episodes/show/71/we-can-migrate-to-python-3-careful-please db8d3bab-9430-4f10-9366-e68f49cb2a96 Wed, 28 Mar 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #71: We can migrate to Python 3, careful please 71 false 00:24:01 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/71]]>
#70 Have you seen my log? It's cute! https://pythonbytes.fm/episodes/show/70/have-you-seen-my-log-its-cute 4dbe914e-aa3d-4f0f-b2a2-97395704b323 Fri, 23 Mar 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #70: Have you seen my log? It's cute! 70 false 00:15:51 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/70]]>
#69 Digging into StackOverflow's 2018 survey results https://pythonbytes.fm/episodes/show/69/digging-into-stackoverflows-2018-survey-results 52020cca-f332-42ef-b430-71fedc9c20b4 Sun, 18 Mar 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #69: Digging into StackOverflow's 2018 survey results 69 false 00:24:00 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/69]]>
#68 Python notebooks galore! https://pythonbytes.fm/episodes/show/68/python-notebooks-galore d8fea18a-f9ed-4fdf-a577-e97dce2fc9d5 Tue, 06 Mar 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #68: Python notebooks galore! 68 false 00:19:09 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/68]]>
#67 Result of moving Python to Github https://pythonbytes.fm/episodes/show/67/result-of-moving-python-to-github 7b7011ab-f9cb-4e2d-abd8-f55a76d66437 Thu, 01 Mar 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #67: Result of moving Python to Github 67 false 00:21:56 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/67]]>
#66 Wait, NoSQL with ACID and transactions? https://pythonbytes.fm/episodes/show/66/wait-nosql-with-acid-and-transactions 3c1da96e-464d-45d1-8d6f-a8f7eef4727b Fri, 23 Feb 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #66: Wait, NoSQL with ACID and transactions? 66 false 00:21:43 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/66]]>
#65 Speed of your import statements affecting performance? https://pythonbytes.fm/episodes/show/65/speed-of-your-import-statements-affecting-performance 6a23938e-d730-4555-a5b0-49524bef694e Wed, 14 Feb 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #65: Speed of your import statements affecting performance? 65 false 00:27:07 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/65]]>
#64 The GUI phoenix rises with wxPython https://pythonbytes.fm/episodes/show/64/the-gui-phoenix-rises-with-wxpython ff79359f-2982-47b1-8952-baa405d8a51b Fri, 09 Feb 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #64: The GUI phoenix rises with wxPython 64 false 00:21:01 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/64]]>
#63 We're still on a desktop GUI kick https://pythonbytes.fm/episodes/show/63/were-still-on-a-desktop-gui-kick 0aca9086-f40a-49fe-9a24-c89614ee68d0 Thu, 01 Feb 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #63: We're still on a desktop GUI kick 63 false 00:21:12 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/63]]>
#62 Wooey and Gooey are simple Python GUIs https://pythonbytes.fm/episodes/show/62/wooey-and-gooey-are-simple-python-guis 5c4ddb28-d2e1-4d1b-a2c1-dab45e311c77 Fri, 26 Jan 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #62: Wooey and Gooey are simple Python GUIs 62 false 00:28:41 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/62]]>
#61 On Being a Senior Engineer https://pythonbytes.fm/episodes/show/61/on-being-a-senior-engineer 6d0623de-2a5d-4687-b397-a9f267703fdb Tue, 16 Jan 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #61: On Being a Senior Engineer 61 false 00:22:22 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/61]]>
#60 Don't dismiss SQLite as just a starter DB https://pythonbytes.fm/episodes/show/60/dont-dismiss-sqlite-as-just-a-starter-db 2f925aff-d72f-4591-9bb6-a7465bc3f7dd Thu, 11 Jan 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #60: Don't dismiss SQLite as just a starter DB 60 false =3.6, and.]]> 00:26:29 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/60]]>
#59 Instagram disregards Python's GC (again) https://pythonbytes.fm/episodes/show/59/instagram-disregards-pythons-gc-again a8ec4b54-f53c-44c2-b883-a4070444e184 Fri, 05 Jan 2018 00:00:00 -0800 Michael Kennedy and Brian Okken #59: Instagram disregards Python's GC (again) 59 false 00:25:39 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/59]]>
#58 Better cache decorators and another take on type hints https://pythonbytes.fm/episodes/show/58/better-cache-decorators-and-another-take-on-type-hints 696028af-a02d-480f-a756-fd4fb20456d3 Tue, 26 Dec 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #58: Better cache decorators and another take on type hints 58 false 00:15:27 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/58]]>
#57 Our take on Excel and Python https://pythonbytes.fm/episodes/show/57/our-take-on-excel-and-python 07740c0a-f77e-4693-9435-50a3e22ea8c0 Thu, 21 Dec 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #57: Our take on Excel and Python 57 false 00:15:48 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/57]]>
#56 The pendulum of time swings beautifully in PyPI https://pythonbytes.fm/episodes/show/56/the-pendulum-of-time-swings-beautifully-in-pypi 4df0584b-a673-4e94-a9aa-f024a035e6b0 Thu, 14 Dec 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #56: The pendulum of time swings beautifully in PyPI 56 false 00:16:29 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/56]]>
#55 Flask, Flask, Flask, 3x Flask https://pythonbytes.fm/episodes/show/55/flask-flask-flask-3x-flask bf0049c2-10fa-4cc2-856a-734d5ae7935e Thu, 07 Dec 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #55: Flask, Flask, Flask, 3x Flask 55 false 00:20:18 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/55]]>
#54 PyAnnotate your way to the future https://pythonbytes.fm/episodes/show/54/pyannotate-your-way-to-the-future 590d718c-7af8-4759-8973-cb5a1e3ad58b Wed, 29 Nov 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #54: PyAnnotate your way to the future 54 false 00:18:51 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/54]]>
#53 Getting started with devpi and Git Virtual FS https://pythonbytes.fm/episodes/show/53/getting-started-with-devpi-and-git-virtual-fs 7aac6745-10d0-4fc1-8ae0-d7768c556dda Wed, 22 Nov 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #53: Getting started with devpi and Git Virtual FS 53 false 00:22:10 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/53]]>
#52 Call your APIs with uplink and test them in the tavern https://pythonbytes.fm/episodes/show/52/call-your-apis-with-uplink-and-test-them-in-the-tavern 71e6029d-feb3-4f3f-bda2-e34dff6cc482 Thu, 16 Nov 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #52: Call your APIs with uplink and test them in the tavern 52 false 00:21:40 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/52]]>
#51 How to make your code 80 times faster https://pythonbytes.fm/episodes/show/51/how-to-make-your-code-80-times-faster 12d927f4-8d7f-40b3-b108-d1b6cbea2cf4 Thu, 09 Nov 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #51: How to make your code 80 times faster 51 false 00:21:33 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/51]]>
#50 Bundling , shipping, and protecting Python applications https://pythonbytes.fm/episodes/show/50/bundling-shipping-and-protecting-python-applications 35705492-4df6-44e6-b4b4-cf2ac929b752 Thu, 02 Nov 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #50: Bundling , shipping, and protecting Python applications 50 false 00:19:17 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/50]]>
#49 Your technical skills are obsolete: now what? https://pythonbytes.fm/episodes/show/49/your-technical-skills-are-obsolete-now-what 49933aa7-f8a2-4bec-a453-8b5a3eaf3dbb Wed, 25 Oct 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #49: Your technical skills are obsolete: now what? 49 false 00:25:57 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/49]]>
#48 Garbage collection and memory management in Python https://pythonbytes.fm/episodes/show/48/garbage-collection-and-memory-management-in-python d24c4837-23bf-4927-af3a-6abd0632108a Thu, 19 Oct 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #48: Garbage collection and memory management in Python 48 false 00:17:50 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/48]]>
#47 PyPy now works with way more C-extensions and parking your package safely https://pythonbytes.fm/episodes/show/47/pypy-now-works-with-way-more-c-extensions-and-parking-your-package-safely 1f5d6bdd-658f-480b-8b3d-6977e8935063 Thu, 12 Oct 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #47: PyPy now works with way more C-extensions and parking your package safely 47 false 00:16:44 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/47]]>
#46 Spicy lecture notes and unicorn console spinners https://pythonbytes.fm/episodes/show/46/spicy-lecture-notes-and-unicorn-console-spinners f792f14f-7fda-4957-adcd-40e6d9578202 Thu, 05 Oct 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #46: Spicy lecture notes and unicorn console spinners 46 false 00:16:51 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/46]]>
#45 A really small web API and OS-level machine learning https://pythonbytes.fm/episodes/show/45/a-really-small-web-api-and-os-level-machine-learning 9a901b6c-5407-4fdd-953b-aca32d9b5c67 Fri, 29 Sep 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #45: A really small web API and OS-level machine learning 45 false 00:19:33 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/45]]>
#44 pip install malicious-code https://pythonbytes.fm/episodes/show/44/pip-install-malicious-code 138c2e08-9b3c-44e5-bf75-e36313adb957 Wed, 20 Sep 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #44: pip install malicious-code 44 false 00:26:35 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/44]]>
#43 Python string theory, v2 https://pythonbytes.fm/episodes/show/43/python-string-theory-v2 8ec9baee-6915-4274-b172-85530719f468 Thu, 14 Sep 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #43: Python string theory, v2 43 false 00:18:48 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/43]]>
#42 Behold: The Python 2 death clock https://pythonbytes.fm/episodes/show/42/behold-the-python-2-death-clock b68dd158-b08b-42be-83eb-58145ad2da12 Fri, 08 Sep 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #42: Behold: The Python 2 death clock 42 false 00:23:52 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/42]]>
#41 Python Concurrency From the Ground Up and Caring for our Community https://pythonbytes.fm/episodes/show/41/python-concurrency-from-the-ground-up-and-caring-for-our-community e508cc53-3383-41e5-8a93-ea907e03dfc8 Thu, 31 Aug 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #41: Python Concurrency From the Ground Up and Caring for our Community 41 false 00:23:21 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/41]]>
#40 Packet Manipulation with Scapy https://pythonbytes.fm/episodes/show/40/packet-manipulation-with-scapy 230368b0-c438-466a-a10f-7a5813dc17a7 Thu, 24 Aug 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #40: Packet Manipulation with Scapy 40 false 00:22:59 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/40]]>
#39 The new PyPI https://pythonbytes.fm/episodes/show/39/the-new-pypi b7f00e66-cdd9-41e2-87ae-8b95dc0b6a56 Thu, 17 Aug 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #39: The new PyPI 39 false 00:43:06 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/39]]>
#38 Hacking Classic Nintendo Games with Python https://pythonbytes.fm/episodes/show/38/hacking-classic-nintendo-games-with-python 5acbb635-31a6-480b-bd02-5d8dfa2bcdb1 Wed, 09 Aug 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #38: Hacking Classic Nintendo Games with Python 38 false 00:24:57 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/38]]>
#37 Rule over the shells with Sultan https://pythonbytes.fm/episodes/show/37/rule-over-the-shells-with-sultan 7c42c762-c79f-4c9b-9bb7-8d2e42dcda76 Wed, 02 Aug 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #37: Rule over the shells with Sultan 37 false 00:18:15 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/37]]>
#36 Craft Your Python Like Poetry and Other Musings https://pythonbytes.fm/episodes/show/36/craft-your-python-like-poetry-and-other-musings bbfccbbe-58bf-4337-abc1-895f62a0e349 Fri, 28 Jul 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #36: Craft Your Python Like Poetry and Other Musings 36 false 00:22:34 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/36]]>
#35 How developers change programming languages over time https://pythonbytes.fm/episodes/show/35/how-developers-change-programming-languages-over-time 123a1d7f-4d62-4465-874c-5274e42d346b Wed, 19 Jul 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #35: How developers change programming languages over time 35 false 00:24:44 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/35]]>
#34 The Real Threat of Artificial Intelligence https://pythonbytes.fm/episodes/show/34/the-real-threat-of-artificial-intelligence 3fc90e8b-65ab-4bf7-9700-aba187b96713 Thu, 13 Jul 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #34: The Real Threat of Artificial Intelligence 34 false 00:22:57 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/34]]>
#33 You should build an Alexa skill https://pythonbytes.fm/episodes/show/33/you-should-build-an-alexa-skill 5a83c8d5-8259-448e-88eb-82a76601e82d Thu, 06 Jul 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #33: You should build an Alexa skill 33 false 00:17:49 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/33]]>
#32 8 ways to contribute to open source when you have no time https://pythonbytes.fm/episodes/show/32/8-ways-to-contribute-to-open-source-when-you-have-no-time f3f51bb4-3e11-4fa5-9b6d-4096e381c08f Sat, 01 Jul 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #32: 8 ways to contribute to open source when you have no time 32 false 00:23:10 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/32]]>
#31 You should have a change log https://pythonbytes.fm/episodes/show/31/you-should-have-a-change-log eaf666af-5bfa-4777-b61a-8e4e4b254161 Wed, 21 Jun 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #31: You should have a change log 31 false 00:21:50 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/31]]>
#30 You are not Google and other ruminations https://pythonbytes.fm/episodes/show/30/you-are-not-google-and-other-ruminations eefd6b4e-213e-4208-b912-13aad5d4e341 Thu, 15 Jun 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #30: You are not Google and other ruminations 30 false 00:24:37 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/30]]>
#29 Responsive Bar Charts with Bokeh, Flask, and Python 3 https://pythonbytes.fm/episodes/show/29/responsive-bar-charts-with-bokeh-flask-and-python-3 aac4a98b-94c2-4d6d-9442-c0b6253e5a71 Thu, 08 Jun 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #29: Responsive Bar Charts with Bokeh, Flask, and Python 3 29 false 00:23:04 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/29]]>
#28 The meaning of _ in Python https://pythonbytes.fm/episodes/show/28/the-meaning-of-in-python bc6d5aca-5cc1-425b-a53a-0aa62de42079 Fri, 02 Jun 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #28: The meaning of _ in Python 28 false 00:20:59 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/28]]>
#27 The PyCon 2017 recap and functional Python https://pythonbytes.fm/episodes/show/27/the-pycon-2017-recap-and-functional-python 16384063-bb11-4c05-9998-9aebd69aaadc Thu, 25 May 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #27: The PyCon 2017 recap and functional Python 27 false 00:19:08 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/27]]>
#26 How have you automated your life, or CLI, with Python? https://pythonbytes.fm/episodes/show/26/how-have-you-automated-your-life-or-cli-with-python 600cabd7-e211-49d2-bf4c-b2dd8f7dc73b Fri, 19 May 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #26: How have you automated your life, or CLI, with Python? 26 false 00:19:44 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/26]]>
#25 Could we have more in-database machine learning please? https://pythonbytes.fm/episodes/show/25/could-we-have-more-in-database-machine-learning-please c29faaa9-abd3-443d-beec-67b77af55895 Fri, 12 May 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #25: Could we have more in-database machine learning please? 25 false 00:17:53 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/25]]>
#24 I have a local PyPI server and so do you! https://pythonbytes.fm/episodes/show/24/i-have-a-local-pypi-server-and-so-do-you 2f4fd17a-4705-4ce8-b07d-3cb941912021 Wed, 03 May 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #24: I have a local PyPI server and so do you! 24 false 00:19:29 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/24]]>
#23 Can you grok the GIL? https://pythonbytes.fm/episodes/show/23/can-you-grok-the-gil https://pythonbytes.fm/episodes/download/23/can-you-grok-the-gil.mp3 Wed, 26 Apr 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #23: Can you grok the GIL? 23 false 00:19:34 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/23]]>
#22 PYTHONPATH considered harmful https://pythonbytes.fm/episodes/show/22/pythonpath-considered-harmful https://pythonbytes.fm/episodes/download/22/pythonpath-considered-harmful.mp3 Tue, 18 Apr 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #22: PYTHONPATH considered harmful 22 false 00:15:50 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing pythonbytes.fm/22]]> #21 Python has a new star framework for RESTful APIs https://pythonbytes.fm/episodes/show/21/python-has-a-new-star-framework-for-restful-apis https://pythonbytes.fm/episodes/download/21/python-has-a-new-star-framework-for-restful-apis.mp3 Thu, 13 Apr 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #21: Python has a new star framework for RESTful APIs 21 false 00:20:57 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing pythonbytes.fm/21]]> #20 Finding similar but not identical images in 128 bits via Python https://pythonbytes.fm/episodes/show/20/finding-similar-but-not-identical-images-in-128-bits-via-python https://pythonbytes.fm/episodes/download/20/finding-similar-but-not-identical-images-in-128-bits-via-python.mp3 Wed, 05 Apr 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #20: Finding similar but not identical images in 128 bits via Python 20 false 00:23:48 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing pythonbytes.fm/20]]> #19 Put your Python dictionaries in a box and apparently Python is really wanted https://pythonbytes.fm/episodes/show/19/put-your-python-dictionaries-in-a-box-and-apparently-python-is-really-wanted https://pythonbytes.fm/episodes/download/19/put-your-python-dictionaries-in-a-box-and-apparently-python-is-really-wanted.mp3 Mon, 27 Mar 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #19: Put your Python dictionaries in a box and apparently Python is really wanted 19 false 00:19:37 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing pythonbytes.fm/19]]> #18 Python 3 has some amazing types and you can now constructively insult your shell! https://pythonbytes.fm/episodes/show/18/python-3-has-some-amazing-types-and-you-can-now-constructively-insult-your-shell https://pythonbytes.fm/episodes/download/18/python-3-has-some-amazing-types-and-you-can-now-constructively-insult-your-shell.mp3 Tue, 21 Mar 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #18: Python 3 has some amazing types and you can now constructively insult your shell! 18 false 00:18:27 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing pythonbytes.fm/18]]> #17 Google's Python is on fire and Simon says you have CPU load Pythonically https://pythonbytes.fm/episodes/show/17/googles-python-is-on-fire-and-simon-says-you-have-cpu-load-pythonically https://pythonbytes.fm/episodes/download/17/googles-python-is-on-fire-and-simon-says-you-have-cpu-load-pythonically.mp3 Sat, 18 Mar 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #17: Google's Python is on fire and Simon says you have CPU load Pythonically 17 false 00:19:31 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing pythonbytes.fm/17]]> #16 Postmodern Python and Open-source Financial Awards https://pythonbytes.fm/episodes/show/16/postmodern-python-and-open-source-financial-awards https://pythonbytes.fm/episodes/download/16/postmodern-python-and-open-source-financial-awards.mp3 Tue, 07 Mar 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #16: Postmodern Python and Open-source Financial Awards 16 false 00:19:15 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing pythonbytes.fm/16]]> #15 Digging into Python packaging https://pythonbytes.fm/episodes/show/15/digging-into-python-packaging https://pythonbytes.fm/episodes/download/15/digging-into-python-packaging.mp3 Tue, 28 Feb 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #15: Digging into Python packaging 15 false 00:16:04 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/15]]>
#14 Lots of Python style and Python 3000 is 3000 days old https://pythonbytes.fm/episodes/show/14/lots-of-python-style-and-python-3000-is-3000-days-old https://pythonbytes.fm/episodes/download/14/lots-of-python-style-and-python-3000-is-3000-days-old.mp3 Wed, 22 Feb 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #14: Lots of Python style and Python 3000 is 3000 days old 14 false 00:15:39 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/14]]>
#13 Python making the move to GitHub and Dropbox is stepping back from Pyston https://pythonbytes.fm/episodes/show/13/python-making-the-move-to-github-and-dropbox-is-stepping-back-from-pyston https://pythonbytes.fm/episodes/download/13/python-making-the-move-to-github-and-dropbox-is-stepping-back-from-pyston.mp3 Tue, 14 Feb 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #13: Python making the move to GitHub and Dropbox is stepping back from Pyston 13 false 00:18:06 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing pythonbytes.fm/13]]> #12 Expanding your Python mental model and serving millions of requests per second with Python https://pythonbytes.fm/episodes/show/12/expanding-your-python-mental-model-and-serving-millions-of-requests-per-second-with-python https://pythonbytes.fm/episodes/download/12/expanding-your-python-mental-model-and-serving-millions-of-requests-per-second-with-python.mp3 Tue, 07 Feb 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #12: Expanding your Python mental model and serving millions of requests per second with Python 12 false 00:19:04 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/12]]>
#11 Django 2.0 is dropping Python 2 entirely, pipenv for profile functionality, and Pythonic home automation https://pythonbytes.fm/episodes/show/11/django-2.0-is-dropping-python-2-entirely-pipenv-for-profile-functionality-and-pythonic-home-automation https://pythonbytes.fm/episodes/download/11/django-2.0-is-dropping-python-2-entirely-pipenv-for-profile-functionality-and-pythonic-home-automation.mp3 Tue, 31 Jan 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #11: Django 2.0 is dropping Python 2 entirely, pipenv for profile functionality, and Pythonic home automation 11 false 00:20:55 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing pythonbytes.fm/11]]> #10 Dismissing Python's Garbage Collection, PyPI Name Reservations, and Hackers Exfiltrate US Government Data to Save Itself https://pythonbytes.fm/episodes/show/10/dismissing-pythons-garbage-collection-pypi-name-reservations-and-hackers-exfiltrate-us-government-data-to-save-itself https://pythonbytes.fm/episodes/download/10/dismissing-pythons-garbage-collection-pypi-name-reservations-and-hackers-exfiltrate-us-government-data-to-save-itself.mp3 Mon, 23 Jan 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #10: Dismissing Python's Garbage Collection, PyPI Name Reservations, and Hackers Exfiltrate US Government Data to Save Itself 10 false 00:25:45 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing pythonbytes.fm/10]]> #9 Walking with async coroutines, diving deep into requests, and a universe of options (for AIs) https://pythonbytes.fm/episodes/show/9/walking-with-async-coroutines-diving-deep-into-requests-and-a-universe-of-options-for-ais https://pythonbytes.fm/episodes/download/9/walking-with-async-coroutines-diving-deep-into-requests-and-a-universe-of-options-for-ais.mp3 Tue, 17 Jan 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #9: Walking with async coroutines, diving deep into requests, and a universe of options (for AIs) 9 false 00:23:39 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/9]]>
#8 Python gets Grumpy, avoiding burnout, Postman for API testing and more https://pythonbytes.fm/episodes/show/8/python-gets-grumpy-avoiding-burnout-postman-for-api-testing-and-more https://pythonbytes.fm/episodes/download/8/python-gets-grumpy-avoiding-burnout-postman-for-api-testing-and-more.mp3 Tue, 10 Jan 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #8: Python gets Grumpy, avoiding burnout, Postman for API testing and more 8 false 00:20:48 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing pythonbytes.fm/8]]> #7 Python 3.6 is out, Sanic is a blazing web framework, and are failing our open source infrastructure? https://pythonbytes.fm/episodes/show/7/python-3.6-is-out-sanic-is-a-blazing-web-framework-and-are-failing-our-open-source-infrastructure https://pythonbytes.fm/episodes/download/7/python-3.6-is-out-sanic-is-a-blazing-web-framework-and-are-failing-our-open-source-infrastructure.mp3 Wed, 04 Jan 2017 00:00:00 -0800 Michael Kennedy and Brian Okken #7: Python 3.6 is out, Sanic is a blazing web framework, and are failing our open source infrastructure? 7 false 00:21:13 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing pythonbytes.fm/7]]> #6 Python 3.6 is going to be awesome, Kite: your friendly co-developing AI https://pythonbytes.fm/episodes/show/6/python-3.6-is-going-to-be-awesome-kite-your-friendly-co-developing-ai https://pythonbytes.fm/episodes/download/6/python-3.6-is-going-to-be-awesome-kite-your-friendly-co-developing-ai.mp3 Mon, 12 Dec 2016 00:00:00 -0800 Michael Kennedy and Brian Okken #6: Python 3.6 is going to be awesome, Kite: your friendly co-developing AI 6 false 00:19:33 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing pythonbytes.fm/6]]> #5 Legacy Python vs Python and why words matter and Request's 5 Whys retrospective https://pythonbytes.fm/episodes/show/5/legacy-python-vs-python-and-why-words-matter-and-requests-5-whys-retrospective https://pythonbytes.fm/episodes/download/5/legacy-python-vs-python-and-why-words-matter-and-requests-5-whys-retrospective.mp3 Mon, 05 Dec 2016 00:00:00 -0800 Michael Kennedy and Brian Okken #5: Legacy Python vs Python and why words matter and Request's 5 Whys retrospective 5 false 00:18:30 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing pythonbytes.fm/5]]> #4 Python 3 is just fine for beginners thank you, q is awesome for debugging, and more https://pythonbytes.fm/episodes/show/4/python-3-is-just-fine-for-beginners-thank-you-q-is-awesome-for-debugging-and-more https://pythonbytes.fm/episodes/download/4/python-3-is-just-fine-for-beginners-thank-you-q-is-awesome-for-debugging-and-more.mp3 Tue, 29 Nov 2016 00:00:00 -0800 Michael Kennedy and Brian Okken #4: Python 3 is just fine for beginners thank you, q is awesome for debugging, and more 4 false 00:21:08 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing pythonbytes.fm/4]]> #3 Python 3.6 is coming, and it's awesome plus superior text processing with Pynini https://pythonbytes.fm/episodes/show/3/python-3.6-is-coming-and-its-awesome-plus-superior-text-processing-with-pynini https://pythonbytes.fm/episodes/download/3/python-3.6-is-coming-and-its-awesome-plus-superior-text-processing-with-pynini.mp3 Wed, 23 Nov 2016 00:00:00 -0800 Michael Kennedy and Brian Okken #3: Python 3.6 is coming, and it's awesome plus superior text processing with Pynini 3 false 00:29:41 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
See the full show notes for this episode on the website at pythonbytes.fm/3]]>
#2 PyCon, awesome python, python developer job prospects, and more https://pythonbytes.fm/episodes/show/2/pycon-awesome-python-python-developer-job-prospects-and-more https://pythonbytes.fm/episodes/download/2/pycon-awesome-python-python-developer-job-prospects-and-more.mp3 Mon, 14 Nov 2016 00:00:00 -0800 Michael Kennedy and Brian Okken #2: PyCon, awesome python, python developer job prospects, and more 2 false 00:17:38 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing Topics covered in this episode:
    • T& Dave Hunt, recorded. Hope to get that out this week. We talk about his work on Selenium, pytest-selenium, pytest-html, tox, and how Mozilla does some of it's testing with these tools.
  • Extras
  • Joke
See the full show notes for this episode on the website at pythonbytes.fm/2]]>
#1 Intro to the show and pip 9 is out! https://pythonbytes.fm/episodes/show/1/intro-to-the-show-and-pip-9-is-out https://pythonbytes.fm/episodes/download/1/intro-to-the-show-and-pip-9-is-out.mp3 Mon, 07 Nov 2016 00:00:00 -0800 Michael Kennedy and Brian Okken #1: Intro to the show and pip 9 is out! 1 false 00:16:38 python, pycharm, python3,software, programming, web, web development, developer, ide, podcast, open source, news, headlines, education, software developer, data science, science, cloud computing pythonbytes.fm/1]]>