Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
TestDriven.io: Securing a Containerized Django Application with Let's Encrypt

Link: https://testdriven.io/blog/django-lets-encrypt/

In this tutorial, we'll look at how to secure a containerized Django app running behind an HTTPS Nginx proxy with Let's Encrypt SSL certificates.
PSF GSoC students blogs: GSoC 2020 Blog Post (#2)

Link: https://blogs.python-gsoc.org/en/dvijaywargiyas-blog/gsoc-2020-blog-post-2/

Hello all!
I am 3 weeks into the official coding period and they have been great. A little background, I am working on the Frontend aspect of my project where I am using the ReactJS framework to build
PSF GSoC students blogs: Diving deep into Strapi to build the EOS feature request system in GSOC’20

Link: https://blogs.python-gsoc.org/en/sharmaaditya570191s-blog/diving-deep-into-strapi-to-build-the-eos-feature-request-system-in-gsoc20/

Hola a todos! Give me company as I explain to you the internals of Strapi and how I am using various mechanisms to implement custom and secure solutions for our feature request system. Grab your drink
Stefan Behnel: Should you ship the Cython generated C code or not?

Link: http://blog.behnel.de/posts/ship-generated-c-code-or-not.html

When you use Cython for your Python extensions (not if, when ;-)), there are different opinions on whether you should generate the C code locally and ship it in your sdist source packages on PyPI, or
Anwesha Das: PyLadies India embarked its journey

Link: http://anweshadas.in/pyladies-india-embarked-its-journey/

PyLadies India embarked its journey
20th June 2020 marked a new beginning for PyLadies in India. We had our first meetup.

I started my journey with PyLadies in 2016 as an organizer of PyLadies Pune.
PSF GSoC students blogs: GSoC: Week #4

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

Hi!
What did you do this week?
I found out that for the manual sync feature to work correctly, the partitions need to span the missing frames introduced by setting a negative offset too, along with sp
PSF GSoC students blogs: GSoC Weekly Blog #2

Link: https://blogs.python-gsoc.org/en/tanish19s-blog/gsoc-weekly-blog-2/

This week I finished up all the tests required in admin window as well as added markdown support in mscolab chat. I also did some redesigning of the chat window. I also made a new window to show the h
PSF GSoC students blogs: Week 3 : Fixing Bugs and Multiple KML File UI

Link: https://blogs.python-gsoc.org/en/aryan_guptas-blog/week-3-fixing-bugs-and-multiple-kml-file-ui/

Hello there!
I really liked working this week! The work was a bit relaxed , less stressful. I also learnt new things, and saw my code being "pushed to its limits". Read on!
What did you do this week?
Stack Abuse: Statistical Hypothesis Analysis in Python with ANOVAs, Chi-Square and Pearson Correlation

Link: https://stackabuse.com/statistical-hypothesis-analysis-in-python-with-anovas-chi-square-and-pearson-correlation/

Introduction
Python is an incredibly versatile language, useful for a wide variety of tasks in a wide range of disciplines. One such discipline is statistical analysis on datasets, and along with SPSS
PSF GSoC students blogs: GSoC Week 4: import rich:

Link: https://blogs.python-gsoc.org/en/singhhrmns-blog/gsoc-week-4-import-rich/

What I did this week?
I worked on adding color to the console as well as log. I'm using rich library for that. The reason why I choose this library is that rich supports cross platform implementaion a
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