Skip to content

Latest commit

 

History

History
21 lines (12 loc) · 601 Bytes

useful_python_packages.md

File metadata and controls

21 lines (12 loc) · 601 Bytes

Useful python packages

Web

  • requests library

Exception handling

  • returns provides a way to handle exceptions much like Try in scala.

Classes with type hinting and type validation

Though we have dataclasses from python 3.7 and TypedDict from python 3.8, we can use the following in earlier versions of python

Sentinel object packages