Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Kushal Das: Access Riseup email over Onion service

Link: https://kushaldas.in/posts/access-riseup-email-over-onion-service.html


Email service (📧) is another excellent example that can be accessed safely
over Tor Onion services. This is in particular useful in places where people in
power do not like their citizens accessing p
Catalin George Festila: Python 3.8.2 : Create a Django Calendar - part 002.

Link: http://python-catalin.blogspot.com/2020/06/python-382-create-django-calendar-part_17.html

I was a bit busy with another project I am working on and this is the reason that led to the delay of this tutorial.The big problem with Django tutorials is the volume of the source code.Because of th
Catalin George Festila: Python 3.8.2 : Create a Django Calendar - part 001.

Link: http://python-catalin.blogspot.com/2020/06/python-382-create-django-calendar-part.html

This tutorial show you how can use pipenv tool and set the Django project in order to create a calendar with Django project.First, install the pipenv tool using the pip tool:python -m pip install pipe
Catalin George Festila: Python 3.8.3 : Using the fabric python module - part 002.

Link: http://python-catalin.blogspot.com/2020/06/python-383-using-fabric-python-module_7.html

This is second tutorial about the fabric.Using the old example, I will show you how can use it with some basic features.The example cover these issues:show fabric version;
use task decorator;
import a
Weekly Python StackOverflow Report: (ccxxxiii) stackoverflow python report

Link: http://python-weekly.blogspot.com/2020/06/ccxxxiii-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-06-20 12:39:44 GMTregex to find a pair of adjacent digits with dif
Catalin George Festila: Python 3.7.5 : Django on Fedora distro.

Link: http://python-catalin.blogspot.com/2020/06/python-375-django-on-fedora-distro.html

[mythcat@desk django]$ source env/bin/activate
(env) [mythcat@desk django]$ python3
Python 3.7.6 (default, Dec 19 2019, 22:52:49)
[GCC 9.2.1 20190827 (Red Hat 9.2.1-1)] on linux
Type "help", "copyri
Catalin George Festila: Python 3.8.3 : Using twitter application with python-twitter - part 001.

Link: http://python-catalin.blogspot.com/2020/06/python-383-using-twitter-application.html

You need to create a application for your twitter user developer on this webpage.

The next step is to get all keys and tokens from your application.

I used the python-twitter see the official webpag
Ned Batchelder: Pickle’s nine flaws

Link: https://nedbatchelder.com//blog/202006/pickles_nine_flaws.html

Python’s pickle
module is a very convenient way to serialize and de-serialize objects. It needs
no schema, and can handle arbitrary Python objects. But it has problems. This
post briefly explains the
Catalin George Festila: Python 3.8.3 : Using twitter application with python-twitter - part 002.

Link: http://python-catalin.blogspot.com/2020/06/python-383-using-twitter-application_21.html

This is the second part of tutorials series with python-twitter.Today I will show you how to get pieces of information about friends, users and save into a binary file with pickle known as cPickle.I w
PSF GSoC students blogs: [Week 3] Check-in

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

1. What did you do this week?
This week's job is to add test cases and change the code as mentor's request. 
2. Difficulty
No difficulties this week.
3. What is coming up next?
The work for the next w
Codementor: Deciphering Single-byte XOR Ciphertext

Link: https://www.codementor.io/arpitbhayani/deciphering-single-byte-xor-ciphertext-17mtwlzh30

Encryption is a process of encoding messages such that it can only be read and understood by the intended parties. The process of extracting the original message from an encrypted one is called...
PSF GSoC students blogs: Weekly Check-in #4

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

TextBlock2D Progress!!
Hello and welcome to my 4th weekly check-in, I will be sharing my progress with TextBlock2D UI component. The official repository of my sub-org, FURY can always be found here.
W
PSF GSoC students blogs: Weekly Check-In: Week 4

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


Make sure to check out Project FURY : https://github.com/fury-gl/fury
Hey ! 
Raymarching continued!
What did I do this week
As you read in my last blog post, while the SDF primitives were working , t
PSF GSoC students blogs: Weekly Check-in #4

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

Hello world,
What did you do this week?
I integrated the prototype into GUI. It's almost ready. Waiting for detailed review from mentors and potential users.
Did you get stuck anywhere?
Nope.
What is
PSF GSoC students blogs: Weekly Blog #2 ( 15th June - 22nd June)

Link: https://blogs.python-gsoc.org/en/arnav_ks-blog/weekly-blog-2-15th-june-22nd-june/

Hi all , so we have had 3 weeks of coding till now and overall am pleased with the progress of the project. It has been going smoothly without too many major issues.
The three major milestones achieve
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