Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Real Python: Hands-On Linear Programming: Optimization With Python

Link: https://realpython.com/linear-programming-python/

Linear programming is a set of techniques used in mathematical programming, sometimes called mathematical optimization, to solve systems of linear equations and inequalities while maximizing or minimi
PSF GSoC students blogs: Weekly Check-In #4

Link: https://blogs.python-gsoc.org/en/saurabhk122s-blog/weekly-check-in-4-6/

What I did this week?
This week I added checkers for freeradius and haproxy libraries.
What will I be doing this week?
I will be working on adding checkers for some other libraries and also continue w
Doug Hellmann: sphinxcontrib-spelling 5.1.2

Link: http://feeds.doughellmann.com/~r/doughellmann/python/~3/7776whiZUbE/

sphinxcontrib-spelling is a spelling checker for Sphinx-based documentation. It uses PyEnchant to produce a report showing misspelled words. What’s new in 5.1.2? Mark as unsafe for parallel builds (co
PSF GSoC students blogs: Week 3 Check-in

Link: https://blogs.python-gsoc.org/en/joaosferreiras-blog/week-3-check-in-2/

What did you do this week?
I continued the work started in last week's PR by adding more multimethods on array creation:
Numerical ranges:

geomspace

Building matrices:

diagflat
tri
tril
triu
vander
PSF GSoC students blogs: Image Operations - Weekly Check-in 4

Link: https://blogs.python-gsoc.org/en/sakshamaroras-blog/image-operations-weekly-check-in-4/

End of Week 3  - 22/06/2020

What did you do this week?
I worked on finishing up the directory source for reading images and its test cases. The directory source will be able to read images for perfor
PSF GSoC students blogs: GSoC: Week 4: Status - 300 Multiple Choice

Link: https://blogs.python-gsoc.org/en/niraj-kamdars-blog/gsoc-week-4-status-300-multiple-choice/

Hello everyone,
What did I do this week?
I have fixed several bugs of my PR: Asynchronous File module. I have also started working on making cvedb run asynchronously. Currently, we have cache_update f
PSF GSoC students blogs: Weekly Check-In: Week 4

Link: https://blogs.python-gsoc.org/en/aghinsas-blog/weekly-check-in-week-4-1/

<meta charset="utf-8">
Hey,
What did I do this week
We decided to skip the NLU part of the chatbot as the tutorial is about configs and dataflow. The chatbot will take structured data and make predict
PSF GSoC students blogs: Weekly Check-in #4

Link: https://blogs.python-gsoc.org/en/0dusts-blog/weekly-check-in-4-7/

What did I do this week?
I added few more tests in classification model as per mentor's suggestion and got the PR merged, Yayy! I also finished writing the accuracy and predict methods for QA model an
Mike Driscoll: Python 101 – Learning About Lists (Video)

Link: https://www.blog.pythonlibrary.org/2020/06/22/python-101-learning-about-lists-video/

In this video tutorial, you will learn all about Python’s list data type.

If videos aren’t your thing, then you can read the same content here:

Python 101: Learning About Lists

The post Python 101
PSF GSoC students blogs: The Wonderful Wizard of O'zip

Link: https://blogs.python-gsoc.org/en/mcsinyxs-blog/the-wonderful-wizard-of-o-zip/

Never give up… No one knows what's going to happen next.
Preface
Greetings and best wishes! I had a lot of fun during the last week, although admittedly nothing was really finished. In summary, these
PSF GSoC students blogs: Weekly Check In - 3

Link: https://blogs.python-gsoc.org/en/adityaa30s-blog/weekly-check-in-3-9/

What did I do till now?
Finish the HTTP2 Client Protocol implementation. 
What's coming up next?
Next week I plan to 

Write unit tests for HTTP2 Client Protocol
Add required documentation

I have kep
PSF GSoC students blogs: Blog post for week 3: Passing settings around the right way

Link: https://blogs.python-gsoc.org/en/lukas0907s-blog/blog-post-for-week-3-passing-settings-around-the-right-way/

Last week I did not implement new features but rather incorporated feedback from my mentors. In this blog post I want to write about one specific problem that I encountered last week.
To connect to Re
PSF GSoC students blogs: Week 4 blog

Link: https://blogs.python-gsoc.org/en/imaj_ashwinis-blog/week-4-blog/

Hello everyone,
We are into the fourth week now, and closing into the first month. Last week, I rearranged all my functions and classes so that it becomes more readable, organised and clean. Now the m
PSF GSoC students blogs: Week 2.5

Link: https://blogs.python-gsoc.org/en/ars-blog/week-2-5/

I've been working to finish our update to Django 3 (which includes moving from aldryn newsblog as a dependency to an incorporated app). I've hit a lot of frustration doing this but am wrapping this up
PSF GSoC students blogs: Weekly Blog Post | Gsoc'2020 | #4

Link: https://blogs.python-gsoc.org/en/shashankjarials-blog/weekly-blog-post-gsoc-2020-4/

<meta charset="utf-8">
Greetings, People of the world!
  
1. What did you do this week?
This week I worked on adding download feature on the EOS icons Landing. This download feature enables the user t
Podcast.__init__: Adding Observability To Your Python Applications With OpenTelemetry

Link: https://www.pythonpodcast.com/opentelemetry-observability-episode-268/

Once you release an application into production it can be difficult to understand all of the ways that it is interacting with the systems that it integrates with. The OpenTracing project and its accom
EuroPython: EuroPython 2020: Opening our Merchandise Shop

Link: https://blog.europython.eu/post/621715858139594752

We’re very happy to announce our very own EuroPython merchandise shop:EuroPython Merch ShopCustomize your conference t-shirt for EP2020The shop is run on the Spreadshirt platform and so Spreadshirt wi
Real Python: Creating a Discord Bot in Python

Link: https://realpython.com/courses/discord-bot-python/

In a world where video games are so important to so many people, communication and community around games are vital. Discord offers both of those and more in one well-designed package. In this course,
Zato Blog: Understanding Zato server startup callable objects

Link: https://zato.io/blog/posts/zato-server-startup-callable-objects.html

Zato
startup callable objects are a means through which arbitrary Python functions or classes can be invoked when a server is booting up in order to influence its configuration or setup, even before a
Python⇒Speed: Clinging to memory: how Python function calls can increase your memory usage

Link: https://pythonspeed.com/articles/function-calls-prevent-garbage-collection/

Unlike languages like C, much of the time Python will free up memory for you.
But sometimes, it won’t work the way you expect it to.
Consider the following Python program—how much memory do you think