Drop Python wheels... @rapidsai did for this exact reason https://t.co/lh0SNGO0VB I wish others would join in... while having a serious conversation about how to improve wheels.
— Joshua Patterson (@datametrician) July 8, 2019
Drop Python wheels... @rapidsai did for this exact reason https://t.co/lh0SNGO0VB I wish others would join in... while having a serious conversation about how to improve wheels.
— Joshua Patterson (@datametrician) July 8, 2019
A short blogpost motivating and highlighting simple HTML outputs in Jupyterhttps://t.co/33J0cYE7OH pic.twitter.com/PjwXhhRPSH
— Matthew Rocklin (@mrocklin) July 8, 2019
somehow I never knew that you can intersperse your `if`s and `for`s. pic.twitter.com/V5y6i1OT7X
— Joel Grus ♥️ 📓 (@joelgrus) July 1, 2019
Tips, Tricks, Hacks, and Magic: How to Effortlessly Optimize Your Jupyter Notebook by @annebonnerdata via @TDataScience https://t.co/pyUF3DoimB #Python #Jupyter #DataScience pic.twitter.com/M5JbbL7krw
— Python Weekly (@PythonWeekly) July 1, 2019
Recognize and manipulate faces from Python with "the world's simplest face recognition library" face_recognitionhttps://t.co/zE0Bg7KMR4 pic.twitter.com/FrhKM0xkHR
— Daily Python Tip (@python_tip) June 27, 2019
oppia - Tool for collaboratively building interactive lessons. https://t.co/bQcNGYrnau #python
— Python Weekly (@PythonWeekly) June 24, 2019
A small blogpost on avoiding code indirection for readabilityhttps://t.co/oaaVBfyaTg
— Matthew Rocklin (@mrocklin) June 23, 2019
I request this often during code review, and wanted a writeup to point to in the future.
PugSQL: Create a Python Module of Database Functions From a Set of SQL Files on Disk https://t.co/ZeSRnMEzTn
— PyCoder’s Weekly (@pycoders) June 17, 2019
Why Are `dict()` and `{}` Not Equivalent? https://t.co/NdVotRcLBS
— PyCoder’s Weekly (@pycoders) June 16, 2019
Use `pip search <your_keyword>` to search PyPI for all packages with <your_keyword> in the short description.
— Daily Python Tip (@python_tip) June 14, 2019
Adding __call__ method makes an object callable.
— Daily Python Tip (@python_tip) June 10, 2019
class add_n:
def __init__(self, n):
self.n = n
def __call__(self, x):
return x + self.n
>>> add3 = add_n(n=3)
>>> add3(9)
12
This can be really useful for decorators:https://t.co/dsfsdN6um2 pic.twitter.com/rxpezDXkFV
Just released version 3.1 of Altair. Lots of usability enhancements and minor bug fixes: https://t.co/rWP8fQMtjI
— Jake VanderPlas (@jakevdp) June 6, 2019
See the full change log here: https://t.co/ZhNGIZczK6 pic.twitter.com/DdGEa1jtj5