Metaclasses in Python

preview_player
Показать описание
Metaclasses customize the class creation process.

We go over what metaclasses are and give some notable examples, including: abstract base classes, adding function overloads, and dataclasses or code generation.

CONTEST WINNERS (CONTEST ENDED 10/9/21) :
PyCharm: Yannick Kuhn, peter duffy
CLion: BalkanSwine, Laurin Neff

OFFICIAL CONTEST RULES:
2. YouTube is not a sponsor of the contest and viewers are required to release YouTube from any liability related to the contest.
3. Privacy notice: no personal data will be collected for this contest.
4. In order to enter, you must (a) be one of my subscribers, AND (b) make a top-level comment to the video including #pycharm or #clion or both. If you only include one you will only have a chance to win that corresponding license.
5. The contest is free, there is no fee required to enter.
6. Winners will be chosen randomly 1 week after the date the video went live from all users who have entered and not been disqualified.
7. Each winner will be notified via a comment reply from me that details what prize was won (e.g. "Congratulations! You have won XYZ. Please email me."). I will ask the winner to contact me by email, and I will reply through email with a random token which must be posted as another reply to the winning comment from the winning account in order to verify account ownership and prevent fraud.
8. Each winner will have 72 hours to respond AND prove account ownership or their prize is automatically forfeited and another winner will be chosen.
9. A winner can only win 1 prize per contest.
11. You may not enter the contest if doing so would be a violation of any relevant federal, state, and local laws, rules, and regulations, including U.S. sanctions.

SUPPORT ME ⭐
---------------------------------------------------

Top patrons and donors: Jameson, Laura M, John Martin, Dragos C, Vahnekie, Pieter G, Casey G, Sigmanificient

BE ACTIVE IN MY COMMUNITY 😄
---------------------------------------------------

CHAPTERS
---------------------------------------------------
0:00 Intro
1:28 What is a metaclass
3:58 Simplest possible metaclass
4:59 Load time metaclass
6:08 Abstract base classes
8:03 Function overloads
14:10 Dataclass code generation
15:01 Giveaway instructions
Рекомендации по теме
Комментарии
Автор

i will literally never have a practical use case for this but it still makes me happy it exists

edit: ok within a year I have used it several times I retract my previous statement

Ganerrr
Автор

This video was so magical I'm tempted to call it a ___video___

andrewglick
Автор

7:55: _"No need to be confused"_
Me: Most confused I've ever been in an mCoding video
#pycharm

QuantumHistorian
Автор

Metaclasses looks very powerfull, unfortunately most people using "powerfull" features in a big codebase usually leaves the most powerfull mess to be maintained. Great video! #pycharm

pericofalcor
Автор

My mind is blown. So many possibilities once you know what Python does under the hood. I would find it super interesting to learn more about how C-bindings like numpy uses them are built and how one could add them too. #pycharm

macchicken
Автор

Since I've -lot's of work- nothing to do right now, I counted how often you've said the word 'class' and 'metaclass' in this video:

*·* class ⟶ *62 times*
*·* metaclass ⟶ *33 times*

Oh my god, I watched the video on 2x speed and at 1:37, my brain just started to hurt.
I really like your content by the way. There are so many useful python features I've hever heard of before. 👍

foxcirc
Автор

This is the most complicated subject of Python I’ve ever seen. Thank you for your work. #pycharm #clion

yogachen
Автор

"the type of big A is a type but the type of small a is big A, whereby the type of type is type"
That's exactly the feature you will probably not use for a long time, but years from now you will remember and it will save your life!
Best thing about python, it's not like other languages where many base features are hard-coded, but you can customize EVERYTHING
#pycharm

dragon_pi
Автор

Man the information density in your videos is mindboggling. Every 20 seconds there's something I'd need to sit an hour for to fully absorb the concept and the code. Well done, thanks

mytelevisionisdead
Автор

I taught Python for 2 years at the university level. I thought I knew more deep wizardry than any person should know. After seeing this, it's clear that I know nothing.
#pycharm

brucewayne
Автор

This is a terrible idea, super slow, and very very dangerous.

I absolutely love it.

rafaelhdebarros
Автор

All programming languages seem to converge towards each other. Combine this with Cython and static typing, and you just made a slower C++, but with more libraries. #pycharm

MathMagician
Автор

one of my favorite things about python is how modular the language itself is. You can just overload anything you want, and having the syntax be so malleable is so fun!!

jaysonbunnell
Автор

For once Python is making me appreciate the simplicity of C++ and not the other way around #clion

Chris-ywis
Автор

this is heresies, black wizardry and demonology combined

samuellebot
Автор

David Beazley, as far as I remember, advocates the use of class decorators (where possible) instead of metaclasses. The decorators are easier to handle, easily composable and easier to understand. But sometimes... yes, one has to take the bull by the horns and dive into metaclasses (not for the faint of heart). There's no wizardry at play here but one has to go through a lot of theory and practical examples to really start to see (appreciate?) the structure and intent of the creators of the language. Thank you for the video and spreading the knowledge.

dariuszspiewak
Автор

7:33 This is how the enum module is implemented -- you create enum classes by subclassing base classes that have a special metaclass attached.

lawrencedoliveiro
Автор

So you were trying to overload a function with the wrong syntax and didn't work, the you used the correct way to do it and worked.
Mind bending.

UntakenNick
Автор

Very clear explanation. After over 10 years of python programming I still learn new tricks from all of your videos. Thanks!

nhoover
Автор

It's interesting to see overloading implemented in Python, I saw a stackoverflow comment suggesting to use multiple dispatch instead and now I might see why considering the slowdowns. Great video as always :) #pycharm

secozzi