At last here is a logo of Europython 2018! Check the blog post for more details:
https://blog.europython.eu/post/171656128512/europython-2018-our-conference-logo
https://blog.europython.eu/post/171656128512/europython-2018-our-conference-logo
By the way, Guido van Rossum is one of the three 2018 Fellow Award honorees of the Computer History Museum (CHM) - for the creation and evolution of the Python programming language, and for leadership of its community. The CHM Fellow Awards is the Museum’s prestigious program, which has recognized such esteemed honorees as Frances Allen, Sir Tim Berners-Lee, Ed Catmull, Vint Cerf, Morris Chang, Lynn Conway, Doug Engelbart, Bjarne Stroustrup, Ken Olsen and Steve Wozniak. CHM is the world’s leading institution exploring the history of computing and its transformational impact on society. It's located in Mountain View, CA.
A few words about GIL:
https://realpython.com/blog/python/python-gil/
https://realpython.com/blog/python/python-gil/
Realpython
What is the Python Global Interpreter Lock (GIL)? – Real Python
Python's Global Interpreter Lock or GIL, in simple words, is a mutex (or a lock) that allows only one thread to hold the control of the Python interpreter at any one time. In this article you'll learn how the GIL affects the performance of your Python programs.
A little story about regular expressions and how guys used it for data investigation https://www.dataquest.io/blog/regular-expressions-data-scientists/
Dataquest
Tutorial: Python Regex (Regular Expressions) for Data Scientists
In this Python regex tutorial, learn how to use regular expressions and the pandas library to manage large data sets during data analysis.
A descriptive benchmark of memory efficiency for parallel IO operations with different syncronous and asyncronous frameworks.
https://code.kiwi.com/memory-efficiency-of-parallel-io-operations-in-python-6e7d6c51905d
https://code.kiwi.com/memory-efficiency-of-parallel-io-operations-in-python-6e7d6c51905d
Medium
Memory efficiency of parallel IO operations in Python
Python allows for several different approaches to parallel processing. The main issue with parallelism is knowing its limitations.
Here is a new draft of Think Complexity book:
http://greenteapress.com/wp/think-complexity-2e/
http://greenteapress.com/wp/think-complexity-2e/
When I hear that Machine Learning is an emerging tech field it freaks me out.
Logistic regression — 1958
Hidden Markov Model — 1960
Stochastic gradient descent — 1960
Support Vector Machine — 1963
k-nearest neighbors — 1967
Artificial Neural Networks — 1975
Expectation Maximization — 1977
Decision tree — 1986
Q-learning — 1989
Random forest — 1995
The logic seems to be: "if I didn't care about something important my whole life, but I care now, then it has to be emerging".
Logistic regression — 1958
Hidden Markov Model — 1960
Stochastic gradient descent — 1960
Support Vector Machine — 1963
k-nearest neighbors — 1967
Artificial Neural Networks — 1975
Expectation Maximization — 1977
Decision tree — 1986
Q-learning — 1989
Random forest — 1995
The logic seems to be: "if I didn't care about something important my whole life, but I care now, then it has to be emerging".
A nice overview of the new library for quick, easy and convenient html parsing created by Kenneth Reitz (the author of requests library)
https://youtube.com/watch?v=gKT_tg87H5Y
https://youtube.com/watch?v=gKT_tg87H5Y
YouTube
Requests-HTML - Checking out a new HTML parsing library for Python
Checking out a new HTML-parsing library by the author of Requests:
Requests-HTML github: https://github.com/kennethreitz/requests-html
Sample parsing page: https://pythonprogramming.net/parsememcparseface/
Chat with us on Discord: https://goo.gl/Q9euv3…
Requests-HTML github: https://github.com/kennethreitz/requests-html
Sample parsing page: https://pythonprogramming.net/parsememcparseface/
Chat with us on Discord: https://goo.gl/Q9euv3…
Here is a nice cheatsheet on
https://twitter.com/b0rk/status/981159808832286720
/proc
directory in linuxhttps://twitter.com/b0rk/status/981159808832286720
Twitter
🔎Julia Evans🔍
an amazing directory: /proc
Minimal examples of data structures and algorithms in Python
https://github.com/keon/algorithms
https://github.com/keon/algorithms
GitHub
GitHub - keon/algorithms: Minimal examples of data structures and algorithms in Python
Minimal examples of data structures and algorithms in Python - keon/algorithms
What did people ask about Python on Stack Overflow last week
http://python-weekly.blogspot.com/2018/04/cxx-stackoverflow-python-report.html
http://python-weekly.blogspot.com/2018/04/cxx-stackoverflow-python-report.html
python-weekly.blogspot.co.uk
(cxx) stackoverflow python report
These are the ten most rated questions at Stack Overflow last week. Between brackets: [ question score / answers count] Build date: 2018...
Again, a little tutorial about pdb https://realpython.com/python-debugging-pdb/
Realpython
Python Debugging With Pdb – Real Python
In this hands-on tutorial, you'll learn the basics of using pdb, Python's interactive source code debugger. Pdb is a great tool for tracking down hard-to-find bugs and allows you to fix faulty code more quickly.
Get yourself prepared to the new cool feature coming to Python - dataclasses! I already have a bunch of places in my code where I will use them.
https://hackernoon.com/a-brief-tour-of-python-3-7-data-classes-22ee5e046517
https://hackernoon.com/a-brief-tour-of-python-3-7-data-classes-22ee5e046517
Hackernoon
A brief tour of Python 3.7 data classes | HackerNoon
A Brand-new feature in Python 3.7 is “Data Classes”. Data classes are a way of automating the generation of boiler-plate code for classes which store multiple properties.
Gentle and thorough introduction into modules and packages in Python
https://realpython.com/python-modules-packages/
https://realpython.com/python-modules-packages/
Realpython
Python Modules and Packages – An Introduction – Real Python
This article explores Python modules and Python packages, two mechanisms that facilitate modular programming.
Have you ever heard about pathlib module? Here we have a little tutorial about it https://realpython.com/python-pathlib/
Realpython
Python's pathlib Module: Taming the File System – Real Python
Python's pathlib module enables you to handle file and folder paths in a modern way. This built-in module provides intuitive semantics that work the same way on different operating systems. In this tutorial, you'll get to know pathlib and explore common tasks…