تحميل

Slzii.com يبحث

https://blog.pythonlibrary.org

Mouse Vs Python - Where You Can Learn All About Python Programming
Learn about the Python programming language. With our library of hundreds of Python tutorials, videos and interviews, you can gain practical, real-world Python skills.
Mouse Vs Python - Where You Can Learn All About Python Programming Skip to content Main Menu Home About BooksMenu Toggle Creating GUI Applications with wxPython Jupyter Notebook 101 ReportLab: PDF Processing with Python Python 201: Intermediate Python wxPython Recipes wxPython Cookbook Python Interviews: Discussions with Python Experts Contact the Author Follow the Blog Search for: Search Textual – The New MaskedInput Widget beginner, intermediate, Python / Mike / September 25, 2024 / Python, Textual, TUI Textual v0.80.0 was released today, and it included the brand-new MaskedInput widget. If you have used other GUI toolkits, such as wxPython, you might already be familiar with a masked input widget. These widgets allow you to control the user’s input based on a mask string that the developer provides when instantiating the widget. Let’s spend […] Textual – The New MaskedInput Widget Read More » JupyterLab 101 Kickstarter Stretch Goal beginner, Python / Mike / September 25, 2024 / jupyter, JupyterLab, Python My Kickstarter for my latest Python book is still going on for another eight days. Now is a great time to pre-order the book as well as get my other Python books. The project is fully funded, and I added a stretch goal. Stretch Goal The stretch goal is $5000 or 350 backers. If we reach JupyterLab 101 Kickstarter Stretch Goal Read More » Adding Terminal Effects with Python beginner, Python / Mike / September 9, 2024 / Python, TUIs The Python programming language has thousands of wonderful third-party packages available on the Python Package Index. One of those packages is TerminalTextEffects (TTE), a terminal visual effects engine. Here are the features that TerminalTextEffects provides, according to their documentation: Xterm 256 / RGB hex color support Complex character movement via Paths, Waypoints, and motion easing, Adding Terminal Effects with Python Read More » ANN: JupyterLab 101 Kickstarter Books, Python / Mike / September 3, 2024 / jupyter, Python My latest Python book is now available for pre-order on Kickstarter. JupyterLab, the latest iteration of the Jupyter Notebook, is a versatile tool for sharing code in an easily understandable format. Hundreds of thousands of people around the world use Jupyter Notebooks or variations of the Notebook architecture for any or all of the following: ANN: JupyterLab 101 Kickstarter Read More » How to Plot in the Terminal with Python and Textualize beginner, intermediate, Python / Mike / August 19, 2024 / Python, Textual, TUI Have you ever wanted to create a plot or graph in your terminal? Okay, maybe you haven’t, but now that you know you can, you want to! Python has the plotext package for plotting in your terminal. However, while that package is amazing all on its own, there is another package called textual-plotext that wraps How to Plot in the Terminal with Python and Textualize Read More » Creating Progress Bars in Your Terminal with Python and Textual beginner, GUI Toolkits, intermediate, Python / Mike / August 12, 2024 / Python, Textual, TUI The Textual package is a great way to create GUI-like applications with Python in your terminal. These are known as text-based user interfaces or TUIs. Textual has many different widgets built-in to the framework. One of those widgets is the ProgressBar. If you need to show the progress of a download or long-running process, then Creating Progress Bars in Your Terminal with Python and Textual Read More » Create Amazing Progress Bars in Python with alive-progress beginner, Python / Mike / August 5, 2024 / Python, TUI Have you ever needed a progress bar in your Python command-line application? One great way of creating a progress bar is to use the alive-progress package created by Rogério Sampaio de Almeida! Alive progress provides multiple different types of progress bars in your terminal or IPython REPL session. The alive progress package will work with Create Amazing Progress Bars in Python with alive-progress Read More » Displaying Pandas DataFrames in the Terminal beginner, Python / Mike / August 1, 2024 / Python, Textual, TUI Have you ever wanted to show a pandas DataFrame in your terminal? Of course, you have! All you need is the textual-pandas package! Yes, you can also view a pandas DataFrame in a REPL, such as IPython or Jupyter Notebook, but you can write a TUI application with textual-pandas and use that to display pandas Displaying Pandas DataFrames in the Terminal Read More » ANN: ObjectListView3 for wxPython GUI Toolkits, intermediate, Python, wxPython / Mike / July 23, 2024 / Python, wxPython ObjectListView is a third-party wxPython widget that wraps the wx.ListCtrl. I have used it for over 10 years in quite a few different GUI applications because it works much nicer than wx.ListCtrl does. Unfortunately, ObjectListView was never integrated into wxPython core like some other amazing third-party packages were, and so it has become broken over ANN: ObjectListView3 for wxPython Read More » Creating Images in Your Terminal with Python and Rich Pixels beginner, Python / Mike / July 15, 2024 / Python, TUI A newer Python package called Rich Pixels allows you to create images in your terminal and display them. Darren Burns, one of the team members from the Textual project, created this package. Anyway, let’s find out how to use Rich Pixels! Installation You can install Rich Pixels using Python’s pip utility. Here’s how: python -m pip install rich-pixels Once Creating Images in Your Terminal with Python and Rich Pixels Read More » How to Publish a Python Package to PyPI intermediate, Python / Mike / June 18, 2024 / Packaing, Python Do you have a Python package that you’d like to share with the world? You should publish it on the Python Package Index (PyPI). The vast majority of Python packages are published there. The PyPI team has also created extensive documentation to help you on your packaging journey. This article does not aim to replace How to Publish a Python Package to PyPI Read More » Python Logging Book Released! beginner, Python / Mike / June 3, 2024 / Python The latest Python book from Michael Driscoll is now out. You can get Python Logging today on any of your favorite platforms!  The Kindle version of the book is only 99 cents for a limited time! What does every new developer do when they are first learning to program? They print out strings to their Python Logging Book Released! Read More » Episode 42 – Harlequin – The SQL IDE for Your Terminal 1 Comment / beginner, Python / Mike / May 29, 2024 / Podcast, Python This episode focuses on the Harlequin application, a Python SQL IDE for your terminal written using the amazing Textual package. I was honored to have Ted Conbeer, the creator of Harlequin, on the show to discuss his creation and the other things he does with Python. Specifically, we focused on the following topics: Favorite Python packages Origins Episode 42 – Harlequin – The SQL IDE for Your Terminal Read More » Episode 41 – Python Packaging and FOSS with Armin Ronacher 1 Comment / beginner, Python / Mike / May 23, 2024 / Podcast, Python In this episode, I chatted with Armin Ronacher about his many amazing Python packages, such as pygments, flask, Jinja, Rye, and Click! Specifically, we talked about the following: How Flask came about Favorite Python packages Python packaging and much more! Links Sentry Rye Flask pygments Jinja Click uv Episode 41 – Python Packaging and FOSS with Armin Ronacher Read More » An Intro to Logging with Python and Loguru beginner, Python / Mike / May 15, 2024 / logging, Python Python’s logging module isn’t the only way to create logs. There are several third-party packages you can use, too. One of the most popular is Loguru. Loguru intends to remove all the boilerplate you get with the Python logging API. You will find that Loguru greatly simplifies creating logs in Python. This chapter has the following sections: Installation An Intro to Logging with Python and Loguru Read More » Post pagination 1 2 … 101 Next → Search for: Teach Me Python Python Courses, Videos, Books and more. Start Learning today!The Python Show Podcast Listen at The Python Show or YouTube or Apple PodcastsPython Logging Purchase on Gumroad, Leanpub or AmazonThe Python Quiz Book Purchase at Gumroad or Leanpub or AmazonAutomating Excel with Python Purchase at Gumroad or Leanpub or AmazonPython 101 Purchase at Gumroad or Leanpub or AmazonPillow: Image Processing with Python Purchase at Gumroad or Leanpub or AmazonCreating GUI Applications with wxPython Purchase at Gumroad or Leanpub or Amazon Pick a CategoryPick a Category Select Category advanced beginner Books Cross-Platform    Web Framework Debugging Education GUI Toolkits Image Editing intermediate Linux Packaging pandas PyCon PyDevOfTheWeek Pyowa Python    Advocacy    Python 3 Python GUI Toolkits PyWin32 ReportLab Screencast SqlAlchemy System Administration Testing TurboGears Video Web Windows wxPython Archives Archives Select Month September 2024  (4) August 2024  (4) July 2024  (2) June 2024  (2) May 2024  (9) April 2024  (3) March 2024  (2) February 2024  (4) December 2023  (1) November 2023  (10) October 2023  (5) September 2023  (6) August 2023  (6) July 2023  (6) June 2023  (9) May 2023  (6) April 2023  (8) March 2023  (10) February 2023  (8) January 2023  (7) December 2022  (6) November 2022  (6) October 2022  (6) September 2022  (4) August 2022  (7) July 2022  (13) June 2022  (16) May 2022  (12) April 2022  (9) March 2022  (6) February 2022  (6) January 2022  (6) December 2021  (5) November 2021  (7) October 2021  (6) September 2021  (30) August 2021  (7) July 2021  (11) June 2021  (9) May 2021  (10) April 2021  (7) March 2021  (8) February 2021  (11) January 2021  (13) December 2020  (12) November 2020  (10) October 2020  (5) September 2020  (18) August 2020  (10) July 2020  (14) June 2020  (14) May 2020  (7) April 2020  (9) March 2020  (11) February 2020  (10) January 2020  (7) December 2019  (7) November 2019  (5) October 2019  (8) September 2019  (9) August 2019  (7) July 2019  (8) June 2019  (8) May 2019  (8) April 2019  (11) March 2019  (9) February 2019  (11) January 2019  (13) December 2018  (10) November 2018  (11) October 2018  (19) September 2018  (11) August 2018  (14) July 2018  (15) June 2018  (11) May 2018  (12) April 2018  (10) March 2018  (10) February 2018  (11) January 2018  (9) December 2017  (10) November 2017  (6) October 2017  (15) September 2017  (8) August 2017  (7) July 2017  (3) June 2017  (10) May 2017  (10) April 2017  (7) March 2017  (12) February 2017  (11) January 2017  (11) December 2016  (6) November 2016  (8) October 2016  (10) September 2016  (10) August 2016  (11) July 2016  (13) June 2016  (12) May 2016  (12) April 2016  (8) March 2016  (14) February 2016  (15) January 2016  (8) December 2015  (6) November 2015  (6) October 2015  (9) September 2015  (5) August 2015  (8) July 2015  (10) June 2015  (9) May 2015  (6) April 2015  (8) March 2015  (9) February 2015  (8) January 2015  (7) December 2014  (9) November 2014  (8) October 2014  (9) September 2014  (4) August 2014  (4) July 2014  (5) June 2014  (8) May 2014  (4) April 2014  (4) March 2014  (20) February 2014  (10) January 2014  (16) December 2013  (7) November 2013  (10) October 2013  (7) September 2013  (3) August 2013  (5) July 2013  (14) June 2013  (2) April 2013  (9) March 2013  (3) February 2013  (4) January 2013  (3) October 2012  (2) September 2012  (1) August 2012  (11) July 2012  (24) June 2012  (16) May 2012  (14) April 2012  (1) March 2012  (5) February 2012  (1) January 2012  (2) December 2011  (8) November 2011  (8) October 2011  (2) September 2011  (1) August 2011  (3) July 2011  (4) June 2011  (2) April 2011  (2) March 2011  (13) February 2011  (7) January 2011  (14) December 2010  (10) November 2010  (3) October 2010  (11) September 2010  (10) August 2010  (7) July 2010  (7) June 2010  (7) May 2010  (9) April 2010  (6) March 2010  (10) February 2010  (23) January 2010  (6) December 2009  (4) November 2009  (1) October 2009  (1) September 2009  (1) August 2009  (3) July 2009  (1) June 2009  (2) May 2009  (1) April 2009  (1) March 2009  (14) February 2009  (2) January 2009  (3) September 2008  (2) August 2008  (3) July 2008  (1) June 2008  (2) May 2008  (9) April 2008  (4) March 2008  (7) Links @driscollis Buy me a Coffee MouseVsPython on Twitter MouseVsPython Youtube Channel Teach Me Python Copyright © 2024 Mouse Vs Python | Powered by Pythonlibrary
en
us
en-US
https://blog.pythonlibrary.org

تعديل موقعك؟

ماذا تفعل؟

0.0046579837799072


دليل المواقع
دليل المواقع

دليل المواقع
Learn about the Python programming language. With our library of hundreds of Python tutorials, videos and interviews, you can gain practical...
دليل المواقع