Planet Python RSS
215 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
tryexceptpass: Practicality Beats Purity - Microservices vs Monoliths

Link: http://tryexceptpass.org/article/practicality-beats-purity-3/

In recent years there’s a growing trend to move away from large all-in-one applications. These “monoliths”, developed with one codebase and delivered as one large system, are hard to maintain. In thei
EuroPython: EuroPython 2018: Please reset your password

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

Regular password resets are always a good thing to do, but this time we have a specific reason to ask you to consider taking the extra time.In December 2017, our ISP detected port scans originating fr
PyCharm: PyCharm 2018.1.3 RC

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

We’re happy to announce that the release candidate for a new version of PyCharm is now available: get it now from our confluence page.
What’s New
Python Console Messages
Since several versions, PyChar
Python Software Foundation: To the Egoless Pythonistas That Makes Space at the Table: A. Jesse Jiryu Davis, Community Service Award Q4 2017 Recipient

Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/RbkSasW1aYM/to-egoless-pythonistas-that-makes-space.html


When we think of Pythonistas that have made a significant mark in the Python community there are many to consider - Python open source project maintainers, the Python core developers, or the countles
Anwesha Das: PyLadies at PyCon

Link: http://anweshadas.in/pyladies-at-pycon-2/

In 2013, I was going through PyCon photos. The album was full of pictures of very serious looking geeks engrossed in their favorite back and green screen. Suddenly I saw the photos of people laughing
Semaphore Community: Getting Started with Mocking in Python

Link: https://semaphoreci.com/community/tutorials/getting-started-with-mocking-in-python

This article is brought with to you by Semaphore.Introduction
Mocking is simply the act of replacing the part of the application
you are testing with a dummy version of that part called a mock.
Inst
Anwesha Das: Is PyCon 2018 your first PyCon?

Link: http://anweshadas.in/is-pycon-2018-your-first-pycon/

Is PyCon 2018 your first PyCon? Then you must have had a sleepless night. You must be thinking “I will be lost in the gathering of 3500 people.” There should be a lot of mixed emotions and anticipatio
Full Stack Python: Monitoring Django Projects with Rollbar

Link: https://www.fullstackpython.com/monitor-django-projects-web-apps-rollbar.html

One fast way to scan for exceptions and errors in your
Django web application projects is to add a few lines of
code to include a hosted monitoring tool.
In this tutorial we will learn to add the
Rol
Peter Bengtsson: Always return namespaces in Django REST Framework

Link: https://www.peterbe.com/plog/always-return-namespaces-in-django-rest-framework

By default, when you hook up a model to Django REST Framework and run a query in JSON format, what you get is a list. E.g.
For GET localhost:8000/api/mymodel/

[
{"id": 1, "name": "Foo"},
{"id":
Codementor: Preferable tools for machine learning - Python - MatLab - R

Link: https://www.codementor.io/blacksand/preferable-tools-for-machine-learning-python-matlab-r-jfozzpphz

AI Q&A sites and Data Science forums are buzzing with the same questions over and over again : I’m new in data science, what language should I learn? What’s the best language for machine...
Mike Driscoll: PyCon 2018 – Conference Day 1 (May 11)

Link: http://www.blog.pythonlibrary.org/2018/05/12/pycon-2018-conference-day-1-may-11/

PyCon 2018 in Cleveland, Ohio kicked off their first conference day with an introduction from one of Cleveland’s natives, Ernest W. Durbin III. Then we moved on to the keynote of the morning which was
Fabio Zadrozny: Howto launch and debug in VSCode using the debug adapter protocol (part 2)

Link: http://feedproxy.google.com/~r/blogspot/pydev/~3/cj5dn6t4n5k/howto-launch-and-debug-in-vscode-using_12.html

Ok, after the basic infracstructure, the next thing to do is actually launch some program without worrying about the debugger, so, we'll just run a program without being in debug mode to completion, s
Channel name was changed to «mitest2018»
Talk Python to Me: #161 Django 2.0

Link: https://talkpython.fm/episodes/show/161/django-2.0

Django has reached a major milestone with its 2.0 release. This puts legacy Python (that is Python 2) fully in the rear-view mirror and brings some nice new features to the framework.
Weekly Python StackOverflow Report: (cxxv) stackoverflow python report

Link: http://python-weekly.blogspot.com/2018/05/cxxv-stackoverflow-python-report.html

These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2018-05-12 21:53:40 GMTWhy does "test".count('') return 5? - [11/2]Pyth
Python Does What?!: Captain, the python grammar can't take anymore!

Link: http://www.pythondoeswhat.com/2018/05/captain-python-grammar-cant-take-anymore.html

The expressions are going to tear themselves to pieces!>>> 'a'       .strip    (    ) [    0 ]'a'
Amit Saha: A demo plugin based Python code analyser

Link: https://echorand.me/a-demo-plugin-based-python-code-analyser.html

A few weeks back I wrote a analyser for Apache Thrift IDL in Python. We used it to enforce
some code review guidelines. When we hooked it onto arcanist lint engine, we could give feedback to developer