RSS Amplifier

Blog

Mouse Vs Python

Where You Can Learn All About Python Programming

blog.pythonlibrary.orgRSS feed ↗10 posts

Written by

Latest posts

Python 101 3rd Edition Kickstarter Launch

Learn Python with a Book Designed for Beginners Hello! I m Michael Driscoll, and I m excited to announce the third edition of Python 101. For years, Python 101 has helped readers take their first steps into programming. Whether you re a complete beginner, a student, or someone looking to learn Python for work or personal projects, the [ ] The post Python 101 3rd Edition Kickstarter Launch appeared…

An Intro to Spiel – Creating Presentations in Your Terminal with Python

Have you ever wanted to create a presentation in your computer s terminal? While this is an uncommon need, a clever open source developer has provided a solution to this problem! The project is called Spiel, and while it is currently archived, the idea is pretty cool. Spiel uses the Rich package to create the slides [ ] The post An Intro to Spiel Creating Presentations in Your Terminal with Python…

New Book Release: Python Typing

I am happy to announce that my latest book, Python Typing, is now available on all platforms. You can get your copy on Gumroad or Leanpub or Amazon Python has had type hinting support since Python 3.5, over TEN years ago! However, Python’s type annotations have changed repeatedly over the years. In Python Typing: Type Checking [ ] The post New Book Release: Python Typing appeared first on Mouse Vs…

Python eBook and Course Summer Sale

It s officially summer, and I am bringing you some HOT Python deals today! Get 33% off almost all my books and courses on Gumroad today using the following H5N5F7K You can start learning the basics of Python with Python 101, or get more targeted learning with my book, Python Logging. If you want to create [ ] The post Python eBook and Course Summer Sale appeared first on Mouse Vs Python .

How to Get TIFF MetaData with Python

In previous articles on this website, you learned how to extract EXIF data from JPG image files. This week, you will learn how to get similar data from the TIFF image format. The TIFF format also has its metadata. Pillow provides a similar dictionary for TIFF images in its TiffTags module. If you need a TIFF image, [ ] The post How to Get TIFF MetaData with Python appeared first on Mouse Vs Python…

Textual – An Intro to DOM Queries (Part II)

Last month, you learned the basics of Textual’s DOM queries. If you missed it, you can read the article now! In this tutorial you will be learning about the following topics: The DOMQuery object Getting the first or last widget Query filters Query exclusions Other query methods Let’s get started! The DOMQuery Object The DOMQuery object gets [ ] The post Textual An Intro to DOM Queries (Part II)…

Textual-cogs 0.0.5 Released

I always thought it would be fun to create my own open source libraries or applications and distribute them somehow. When I started writing my book, Creating TUI Applications with Textual and Python, I took the plunge and wrote a helper package called textual-cogs, which is a collection of reusable dialogs and widgets for Textual. Right now, [ ] The post Textual-cogs 0.0.5 Released appeared first…

Textual – Logging to File and to Textual Console

When you are developing a user interface, it can be valuable to have a log of what s going on. Creating a log in Textual, a text-based user interface, is even easier than creating one for wxPython or Tkinter. Why? Well, because Textual includes a logger that is compatible with Python s own logging module, so it s [ ] The post Textual Logging to File and to Textual Console appeared first on Mouse…

Textual – An Intro to DOM Queries (Part I)

In this article, you will learn how to query the DOM in Textual. You will discover that the DOM keeps track of all the widgets in your application. By running queries against the DOM, you can find widgets quickly and update them, too. You will be learning the following topics related to the DOM: The [ ] The post Textual An Intro to DOM Queries (Part I) appeared first on Mouse Vs Python .

Python Pop Quiz – Number Explosion

You will sometimes come across examples of code that use one or two asterisks. Depending on how the asterisks are used, they can mean different things to Python. Check your understanding of what a single asterisk means in the following quiz! The Quiz What will be the output if you run this code? numbers = [ ] The post Python Pop Quiz Number Explosion appeared first on Mouse Vs Python .