Language

41 bookmarks
Custom sorting
Data Classes in Python 3.7+ (Guide) – Real Python
Data Classes in Python 3.7+ (Guide) – Real Python
Data classes are one of the new features of Python 3.7. With data classes you do not have to write boilerplate code to get proper initialization, representation and comparisons for your objects.
·realpython.com·
Data Classes in Python 3.7+ (Guide) – Real Python
How to Split a Python List or Iterable Into Chunks – Real Python
How to Split a Python List or Iterable Into Chunks – Real Python
This tutorial provides an overview of how to split a Python list into chunks. You'll learn several ways of breaking a list into smaller pieces using the standard library, third-party libraries, and custom code. You'll also split multidimensional data to synthesize an image with parallel processing.
·realpython.com·
How to Split a Python List or Iterable Into Chunks – Real Python
Primer on Python Decorators – Real Python
Primer on Python Decorators – Real Python
In this introductory tutorial, we'll look at what Python decorators are and how to create and use them.
·realpython.com·
Primer on Python Decorators – Real Python
Hiding a password in a python script (insecure obfuscation only)
Hiding a password in a python script (insecure obfuscation only)
I have got a python script which is creating an ODBC connection. The ODBC connection is generated with a connection string. In this connection string I have to include the username and password for...
·stackoverflow.com·
Hiding a password in a python script (insecure obfuscation only)