Tuesday, March 23, 2021

Mike Driscoll: Python 201: The functools Module (Video)

I recently did a talk on Python’s neat functools module. This screencast covers the majority of the module:

  • Caching
    • cache
    • lru_cache
  • total_ordering
  • partial
  • reduce
  • singledispatch
  • wraps

 

Related Reading

The post Python 201: The functools Module (Video) appeared first on Mouse Vs Python.



from Planet Python
via read more

No comments:

Post a Comment

TestDriven.io: Working with Static and Media Files in Django

This article looks at how to work with static and media files in a Django project, locally and in production. from Planet Python via read...