René's URL Explorer Experiment


Title: Using Data Classes in Python (Overview) (Video) – Real Python

Open Graph Title: Using Data Classes in Python (Overview) – Real Python

Description: Python Data Classes. Data classes were introduced with Python 3.7 and they’re a class which typically contain mainly data, although there aren’t really any restrictions. They provide a convenient way to define classes which exist primarily to store…

Open Graph Description: Python Data Classes. Data classes were introduced with Python 3.7 and they’re a class which typically contain mainly data, although there aren’t really any restrictions. They provide a convenient way to define classes which exist primarily to store…

Opengraph URL: https://realpython.com/videos/python-data-classes-overview/

X: @realpython

direct link

Domain: www.realpython.com


Hey, it has json ld scripts:
  {
    "@context": "https://schema.org",
    "@type": "VideoObject",
    "name": "Using Data Classes in Python (Overview)",
    "description": "Python Data Classes. Data classes were introduced with Python 3.7 and they’re a class which typically contain mainly data, although there aren’t really any restrictions. They provide a convenient way to define classes which exist primarily to store…",
    "thumbnailUrl": ["https://files.realpython.com/media/The-Ultimate-Guide-to-Data-Classes-in-Python-3.7_Watermarked.00755fbea935.jpg"],
    "uploadDate": "2021-09-14T14:00:00+00:00",
    "duration": "PT0M55S",
    "embedUrl": "https://player.vimeo.com/video/592644776",
    "potentialAction": {
      "@type": "SeekToAction",
      "target": "https://realpython.com/videos/python-data-classes-overview/#t={seek_to_second_number}",
      "startOffset-input": "required name=seek_to_second_number"
    }
  }
  

authorReal Python
twitter:cardsummary_large_image
twitter:imagehttps://files.realpython.com/media/The-Ultimate-Guide-to-Data-Classes-in-Python-3.7_Watermarked.00755fbea935.jpg
og:imagehttps://files.realpython.com/media/The-Ultimate-Guide-to-Data-Classes-in-Python-3.7_Watermarked.00755fbea935.jpg
twitter:creator@realpython
og:typevideo.episode

Links:

https://www.realpython.com/
Start Herehttps://www.realpython.com/start-here/
Learn Python https://www.realpython.com/courses/python-data-classes/continue/
Python Tutorials →In-depth articles and video courseshttps://www.realpython.com/search?kind=article&kind=course&order=newest
Learning Paths →Guided study plans for accelerated learninghttps://www.realpython.com/learning-paths/
Quizzes & Exercises →Check your learning progresshttps://www.realpython.com/quizzes/
Browse Topics →Focus on a specific area or skill levelhttps://www.realpython.com/tutorials/all/
Community Chat →Learn with other Pythonistashttps://www.realpython.com/community/
Office Hours →Live Q&A calls with Python expertshttps://www.realpython.com/office-hours/
Podcast →Hear what’s new in the world of Pythonhttps://www.realpython.com/podcasts/rpp/
Books →Round out your knowledge and learn offlinehttps://www.realpython.com/products/books/
Reference →Concise definitions for common Python termshttps://www.realpython.com/ref/
Code Mentor →BetaPersonalized code assistance & learning toolshttps://www.realpython.com/mentor/
Unlock All Content →https://www.realpython.com/account/join/
More https://www.realpython.com/courses/python-data-classes/continue/
Learner Storieshttps://www.realpython.com/learner-stories/
Python Newsletterhttps://www.realpython.com/newsletter/
Python Job Boardhttps://www.pythonjobshq.com
Meet the Teamhttps://www.realpython.com/team/
Become a Contributorhttps://www.realpython.com/jobs/
Searchhttps://www.realpython.com/search
https://www.realpython.com/search
Joinhttps://www.realpython.com/account/join/
Sign‑Inhttps://www.realpython.com/account/login/?next=%2Fvideos%2Fpython-data-classes-overview%2F
https://www.realpython.com/courses/python-data-classes/#team
Using Data Classes in Pythonhttps://www.realpython.com/courses/python-data-classes/
Darren Joneshttps://www.realpython.com/courses/python-data-classes/#team
Recommended Tutorialhttps://www.realpython.com/python-data-classes/
Course Slides (.pdf)https://www.realpython.com/courses/python-data-classes/downloads/data-classes-course-slides/
Sample Code (.zip)https://www.realpython.com/courses/python-data-classes/downloads/data-classes-sample-code/
Ask a Questionhttps://www.realpython.com/courses/python-data-classes/continue/#discussion
https://www.realpython.com/feedback/survey/course/python-data-classes/liked/?from=lesson-title
https://www.realpython.com/feedback/survey/course/python-data-classes/disliked/?from=lesson-title
Contentshttps://www.realpython.com/courses/python-data-classes/continue/#description
Transcripthttps://www.realpython.com/courses/python-data-classes/continue/#transcript
Discussionhttps://www.realpython.com/courses/python-data-classes/continue/#discussion
new and exciting feature that came out in Python 3.7https://realpython.com/python37-new-features/
Sample Code (.zip)https://www.realpython.com/courses/python-data-classes/downloads/data-classes-sample-code/
Course Slides (.pdf)https://www.realpython.com/courses/python-data-classes/downloads/data-classes-course-slides/
00:00https://www.realpython.com/courses/python-data-classes/continue/#t=0.48
Python Data Classes.https://www.realpython.com/courses/python-data-classes/continue/#t=0.48
00:04https://www.realpython.com/courses/python-data-classes/continue/#t=4.07
Data classes were introduced with Python 3.7 and they’re a class which typicallyhttps://www.realpython.com/courses/python-data-classes/continue/#t=4.07
contain mainly data, although there aren’t really any restrictions.https://www.realpython.com/courses/python-data-classes/continue/#t=8.84
They provide a convenient way to define classeshttps://www.realpython.com/courses/python-data-classes/continue/#t=13.52
which exist primarily to store data and allow value retrieval viahttps://www.realpython.com/courses/python-data-classes/continue/#t=16.16
attribute lookup.https://www.realpython.com/courses/python-data-classes/continue/#t=20.63
00:23https://www.realpython.com/courses/python-data-classes/continue/#t=23.65
In this video course, you’ll learn exactly which conveniences data classeshttps://www.realpython.com/courses/python-data-classes/continue/#t=23.65
provide. In addition to nice representations and comparisons,https://www.realpython.com/courses/python-data-classes/continue/#t=27.7
you’ll see how to add default values to data class fields,https://www.realpython.com/courses/python-data-classes/continue/#t=31.93
how data classes allow for ordering of objects,https://www.realpython.com/courses/python-data-classes/continue/#t=35.98
how to represent immutable data, and how data classes handlehttps://www.realpython.com/courses/python-data-classes/continue/#t=39.19
inheritance. So, with no further ado,https://www.realpython.com/courses/python-data-classes/continue/#t=43.33
let’s take a look at a comparison between using a data class and a standardhttps://www.realpython.com/courses/python-data-classes/continue/#t=47.78
class for storing data.https://www.realpython.com/courses/python-data-classes/continue/#t=51.59
Become a Memberhttps://www.realpython.com/account/join/
Overviewhttps://www.realpython.com/courses/python-data-classes/
https://www.realpython.com/videos/comparison-to-standard-classes/
Using Data Classes in Python (Overview) 00:55 https://www.realpython.com/videos/python-data-classes-overview/
Comparison to Standard Classes 03:43 https://www.realpython.com/videos/comparison-to-standard-classes/
Alternatives to Standard Classes 06:25 https://www.realpython.com/videos/alternatives-to-standard-classes/
Basic Data Classes 06:26 https://www.realpython.com/videos/basic-data-classes/
More Flexible Data Classes 01:34 https://www.realpython.com/lessons/more-flexible-data-classes/
Advanced Default Values 06:02 https://www.realpython.com/lessons/advanced-default-values/
Data Classes for Representation 03:17 https://www.realpython.com/lessons/data-classes-for-representation/
Data Classes for Comparison 06:14 https://www.realpython.com/lessons/data-classes-for-comparison/
Immutable Data Classes 03:02 https://www.realpython.com/lessons/immutable-data-classes/
Inheritance and Subclassing 03:18 https://www.realpython.com/lessons/inheritance-subclassing/
Optimization of Data Classes 03:17 https://www.realpython.com/lessons/optimization-data-classes/
Using Data Classes in Python (Quiz) 06:00 https://www.realpython.com/lessons/using-data-classes-in-python-quiz/
Using Data Classes in Python (Summary) 00:47 https://www.realpython.com/lessons/python-data-classes-summary/
Privacy Policyhttps://www.realpython.com/privacy-policy/

Viewport: width=device-width, initial-scale=1, shrink-to-fit=no, viewport-fit=cover

Robots: max-image-preview:large


URLs of crawlers that visited me.