Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Mike Driscoll: PyDev of the Week: Younggun Kim

Link: http://www.blog.pythonlibrary.org/2018/09/17/pydev-of-the-week-younggun-kim/

This week we welcome Younggun Kim (@scari_net) as our PyDev of the Week! Younggun has been on the board of directors for the Python Software Foundation and is the founder of PyCon Korea. He has transl
PyBites: Code Challenge 51 - Analyse NBA Data with SQL/sqlite3

Link: https://pybit.es/codechallenge51.html


It's not that I'm so smart, it's just that I stay with problems longer. - A. Einstein

Hey Pythonistas,
Blog Code Challenges is back! And with a vengeance ;)
Starting today we will publish a new code
Gaël Varoquaux: A foundation for scikit-learn at Inria

Link: http://gael-varoquaux.info/programming/a-foundation-for-scikit-learn-at-inria.html

We have just announced that a foundation will be supporting scikit-learn
at Inria [1]: scikit-learn.fondation-inria.fr

Growth and sustainability
This is an exciting turn for us, because it enables us
Python Anywhere: Force HTTPS on your website

Link: https://blog.pythonanywhere.com/167/

.jab-post img {
border: 2px solid #eeeeee;
padding: 5px;
}


One smaller feature we added in our last system update was the ability to force HTTPS without needing to change your code. Here's
Real Python: Top 10 Must-Watch PyCon Talks

Link: https://realpython.com/must-watch-pycon-talks/

For the past three years, I’ve had the privilege of attending the Python Conference (PyCon) in the United States. PyCon US is a yearly event where Pythonistas get together to talk and learn about Pyt
Stack Abuse: How to Format Dates in Python

Link: https://stackabuse.com/how-to-format-dates-in-python/

Introduction
Python comes with a variety of useful objects that can be used out of the box. Date objects are examples of such objects. Date types are difficult to manipulate from scratch, due to the c
Codementor: Connect Alibaba Cloud to AWS via VPN Gateway

Link: https://www.codementor.io/alibabacloud/connect-alibaba-cloud-to-aws-via-vpn-gateway-nhq1i2i4a

By Evan Wong, Solutions Architect
Multi-cloud is one of the most sought-after architecture design that bridges the benefits of having multiple technology capabilities of the providers and to avoid...
Matthew Rocklin: Dask Development Log

Link: https://matthewrocklin.com/blog//work/2018/09/17/dask-dev

This work is supported by Anaconda Inc
To increase transparency I’m trying to blog more often about the current work
going on around Dask and related projects. Nothing here is ready for
production.
Mike Driscoll: Jupyter Notebook 101: Writing Update

Link: http://www.blog.pythonlibrary.org/2018/09/18/jupyter-notebook-101-writing-update/

I don’t usually write about my book writing while the book is in progress on my blog, but I know some readers probably wonder why there are times where I am not writing blog posts as regularly as I us
Continuum Analytics Blog: Anaconda and Kx Systems Partner to Deliver kdb+ Database System and Related Machine Learning Libraries

Link: https://www.anaconda.com/blog/company-blog/anaconda-and-kx-systems-partner-to-deliver-kdb-database-system-and-related-machine-learning-libraries/

Anaconda, Inc., the most popular Python data science platform provider with 2.5 million downloads per month, is pleased to announce an exciting new partnership with Kx Systems, a provider of fast, eff
Caktus Consulting Group: Better Python Dependency Management with pip-tools

Link: https://www.caktusgroup.com/blog/2018/09/18/python-dependency-management-pip-tools/


I recently looked into whether I could use pip-tools to improve my workflow around projects' Python dependencies. My conclusion was that pip-tools would help on some projects, but it wouldn't do ever
Thibauld Nion: Long overdue release of Yapsy

Link: http://www.tibonihoo.net/blog/en/2018/09/une-nouvelle-version-de-yapsy-qui-sest-faite-attendre/

TL;DR: Yapsy v1.12 has been released with fixes for Python3.6 and multiprocessing on windows.
So, after 3 years sleeping busy with a fair bit of work and family duties joyful activities, I eventually
Davy Wybiral: Internet of Things Development Board: FireBeetle ESP32

Link: http://davywybiral.blogspot.com/2018/09/internet-of-things-development-board.html

This is an IoT development board for the ESP32 that can be programmed using the Arduino IDE, MicroPython, or JavaScript using Espruino.
Stack Abuse: NumPy Tutorial: A Simple Example-Based Guide

Link: https://stackabuse.com/numpy-tutorial-a-simple-example-based-guide/


Introduction
Advantages of NumPy
NumPy Operations
Creating a NumPy Array
The array Method
The arange Method
The zeros Method
The ones Method
The linspace Method
The eye Method
The random Method
Resha