Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Peter Bengtsson: "ld: library not found for -lssl" trying to install mysqlclient in Python on macOS

Link: https://www.peterbe.com/plog/ld-library-not-found-for-lssl-mysqlclient-python-macos

I don't know how many times I've encountered this but by blogging about it, hopefully, next time it'll help me, and you!, find this sooner.
If you get this:
clang -bundle -undefined dynamic_lookup -L/
Julien Danjou: Attending FOSDEM 2020

Link: https://julien.danjou.info/attending-fosdem-2020/

This weekend, I've been lucky to attend again the FOSDEM conference, one of the largest open-source conference out there.I had a talk scheduled in the Python devroom on Saturday about building a produ
Learn PyQt: Creating searchable dashboards in PyQt5 GUIs, widget filters and text prediction

Link: https://www.learnpyqt.com/courses/adanced-ui-features/widget-search-bar/


Dashboard applications are a popular way to display live data and user controls, whether interacting with APIs or controlling locally attached devices. However, as more controls are added, dashboards
Matt Layman: Django Riffs, a podcast for learning Django

Link: https://www.mattlayman.com/blog/2020/django-riffs-podcast/

I’ve started a podcast! The podcast is called Django Riffs, and my goal is to help beginners learn how to use Django. You can find the show at djangoriffs.com or check iTunes, Spotify, or wherever you
PyCharm: PyCharm 2020.1 EAP 2

Link: http://feedproxy.google.com/~r/Pycharm/~3/AXZzylvkdNc/

We have a new Early Access Program (EAP) version of PyCharm that can be now downloaded from our website.
Our work to create a better PyCharm 2020.1 continues with new features, usability improvements,
Python Circle: How to upgrade to paid account on PythonAnyWhere

Link: https://www.pythoncircle.com/post/196/how-to-upgrade-to-paid-account-on-pythonanywhere/

Which is the best server for hosting Django Apps, Best hosting provider for Django Apps, Cheapest Django Hosting, PythonAnyWhere Reviews, Django Hosting,
Nikola: Nikola v8.0.4 is out!

Link: https://getnikola.com/blog/nikola-v804-is-out.html

On behalf of the Nikola team, I am pleased to announce the immediate
availability of Nikola v8.0.4. This release fixes a few small bugs,
including a date glitch that appeared around New Year’s Eve.

W
Matt Layman: Fast Forms With UpdateView - Building SaaS #44

Link: https://www.mattlayman.com/building-saas/fast-forms-updateview/

In this episode, we worked on an edit view. We used Django’s generic UpdateView to add the process and test drove the creation of the view to verify things every step of the way.
We worked on a view t
Stack Abuse: Formatting Strings with the Python Template Class

Link: https://stackabuse.com/formatting-strings-with-the-python-template-class/

Introduction
Python Templates are used to substitute data into strings. With Templates, we gain a heavily customizable interface for string substitution (or string interpolation).
Python already offer
PyCharm: PyCharm 2019.3.3

Link: http://feedproxy.google.com/~r/Pycharm/~3/R-Wroo-DgKk/

Our PyCharm release is now ready! We’ve added some important fixes to make sure we provide you with the best tool we can, so be sure to update to the newest version! You can get it from within PyCharm
Peter Bengtsson: How to resolve a git conflict in poetry.lock

Link: https://www.peterbe.com/plog/how-to-resolve-a-git-conflict-in-poetry.lock

We use poetry in MDN Kuma. That means there's a pyproject.toml and a poetry.lock file. To add or remove dependencies, you don't touch either file in an editor. For example, to add a package:
poetry ad
IslandT: Plotting earning graph based on the month with Python

Link: https://kibiwebgeek.com/plotting-earning-graph-based-on-the-month-with-python/

For those of you who have followed the record sales and save data into the database project, this will be the final chapter of this project. In the future, you can follow the project updates on the Gi
Talk Python to Me: #250 Capture over 400x C02 as trees with AI and Python

Link: https://talkpython.fm/episodes/show/250/capture-over-400x-c02-as-trees-with-ai-and-python

As the popularity of Python grows, we see it popping up in all sorts of interesting places and projects. On this episode, you'll meet C.K. Sample and Nathan Papapietro from HyperGiant. They are using
Weekly Python StackOverflow Report: (ccxiv) stackoverflow python report

Link: http://python-weekly.blogspot.com/2020/02/ccxiv-stackoverflow-python-report.html

These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2020-02-08 21:07:24 GMTFastest way for boolean matrix computations - [6
Mike Driscoll: How to Check if a File is a Valid Image with Python

Link: http://www.blog.pythonlibrary.org/2020/02/09/how-to-check-if-a-file-is-a-valid-image-with-python/

Python has many modules in its standard library. One that is often overlooked is imghdr which lets you identify what image type that is contained in a file, byte stream or path-like object.
The imghdr