No Image

Learning About Code Metrics in Python with Radon

20 9 月, 2023 Mike 0

There are many different tools that you can install to help you be a better Python programmer. For example, you might install pytest so that you can do unit tests of your code. Or you might install Ruff, a super fast Python linter. The focus of this article is on another tool called Radon that …

Learning About Code Metrics in Python with Radon Read More »

The post Learning About Code Metrics in Python with Radon appeared first on Mouse Vs Python.

No Image

PyDev of the Week: Timothée Mazzucotelli

18 9 月, 2023 Mike 0

This week, we welcome Timothée Mazzucotelli (@pawamoy) as our PyDev of the Week! Timothée is the author of mkdocstrings. You can see what else Timothée has been up to by visiting Timothée’s  showcase. Let’s spend a few moments getting to know Timothée better! Can you tell us a little about yourself (hobbies, education, etc): My …

PyDev of the Week: Timothée Mazzucotelli Read More »

The post PyDev of the Week: Timothée Mazzucotelli appeared first on Mouse Vs Python.

No Image

Textual Apps Coming to a Website Near You

30 8 月, 2023 Mike 0

Textual is an amazing Python package for creating Text-Based User Interfaces (TUIs) in Python. You can learn more in An Intro to Textual – Creating Text User Interfaces with Python. However, Textual isn’t only about creating user interfaces for your terminal. The Textual team is also making Textual for the web! Textual Cloud Service will …

Textual Apps Coming to a Website Near You Read More »

The post Textual Apps Coming to a Website Near You appeared first on Mouse Vs Python.

No Image

An Intro to Protocol Buffers with Python

30 8 月, 2023 Mike 0

Protocol buffers are a data serialization format that is language agnostic. They are analogous to Python’s own pickle format, but one of the advantages of protocol buffers is that they can be used by multiple programming languages. For example, Protocol buffers are supported in C++, C#, Dart, Go, Java, Kotlin, Objective-C, PHP, Ruby, and more …

An Intro to Protocol Buffers with Python Read More »

The post An Intro to Protocol Buffers with Python appeared first on Mouse Vs Python.