#dataclasses Suchergebnisse
🐍#Python🐍 #DataClasses #CodingInPython #CodeSmart #commentme #followme #likeme #readme #drylikov #thread🧵⬇️

Tech Brief 5: Small, high-leverage tip—use @dataclass(kw_only=True) to evolve APIs without breaking callers. Via Simon Willison (credit: Christian Hammond). #Python #Dataclasses 🔗simonwillison.net/2025/Jun/29/ke…
Inheritance with #DataClasses in Python is seamless. Extend base classes and add new fields or methods without compromising the auto-generated magic! Perfect for evolving your data structures elegantly.

I'm using #dataclasses in #python not only for storing information but also for type annotations. Are you using them also?
Dataclasses, attrs, or Pydantic? In today’s video, I’m comparing the three to help you decide which one you should use: youtu.be/zN4VCb0LbQI #Python #Dataclasses #Attrs #Pydantic #Programming #Coding

Kotlin : Data Classes for POJOs Use Kotlin's data class for simple data models: #Kotlin #DataClasses

2. Different Parameters. 🙌 Set different parameters of the dataclass decorator, such as init, repr, and frozen with ease. 🐍 You don't have to memorize all of them, ma fren 🤝! #python #python3 #dataclasses #100daysofcode

Use case: Creating a simple address book. Define a dataclass with fields for name and phone number. Create instances representing contacts. #python #dataclasses

🚀 New Blog Post Alert! 📄 Discover how Python's Data Classes simplify object-oriented programming! From reducing boilerplate code to enhancing readability, learn how to make your coding life easier. 🐍💻 Link below 👇 #Python #DataClasses #OOP #ProgrammingTips #CodeBetter

Kotlin : Use Data Classes for Automatic equals and hashCode Kotlin’s data classes come with auto-generated equals and hashCode Makes managing model data easier! #Kotlin #DataClasses #AndroidDev #CleanCode #CodeNewbie

Need complex data validation? Check out Pydantic! Strict type hints and fast development, but beware of its reliance on inheritance. For more tips, follow me on Instagram: instagram.com/arjancodes #Python #Dataclasses #Attrs #Pydantic #Programming #Coding

TipOfTheDay Use `copy()` to clone objects, altering specific properties while keeping others unchanged. Example: `val meme = User(name = "Meme", age = 1)` `val olderMeme = meme.copy(age = 2)` #Kotlin #DataClasses
Kotlin : Data Class Copy with Modifications Data classes allow copying with modified properties: Easily create modified versions of data objects! #Kotlin #DataClasses #AndroidDev #Productivity

Latest edition of "My Voyage of Discovery" See all discoveries: bit.ly/MyVoyageOf_Dis… To subscribe : eepurl.com/iu6PFU #Python #Dataclasses #Best #SoftwareEngineer #MachineLearning #AndrewNG

🚀 Boost your Pythonic application performance with the latest 3.11 release! 💨 On average, it's 1.25x faster than 3.10. 🐍 Let's get Pythonic and dive into the new features and start with Dataclasses. A thread 🧵. #python #python3 #dataclasses #100daysofcode

Twitter/X Post 𝗗𝗮𝘆 𝟮𝟰 of #30DaysOfPython 📅 June 20, 2025 | Indian Data Club Explored #Dataclasses ✅ Defined a LibraryBook dataclass ✅ Included a method to display book details Less boilerplate, more clarity #PythonLearning #WomenInTech #IDC30DaysChallenge


Usa "data class" en Kotlin para clases enfocadas en datos: data class User(val name: String, val age: Int) #Kotlin #DataClasses #OneDevTipADay
🧩 **Data Classes for Boilerplate Reduction**: Utilize `dataclasses` to automatically generate special methods like `__init__()` and `__repr__()` in classes, reducing boilerplate code and improving readability. #Python #DataClasses
🐍#Python🐍 #DataClasses #CodingInPython #CodeSmart #commentme #followme #likeme #readme #drylikov #thread🧵⬇️

Tech Brief 5: Small, high-leverage tip—use @dataclass(kw_only=True) to evolve APIs without breaking callers. Via Simon Willison (credit: Christian Hammond). #Python #Dataclasses 🔗simonwillison.net/2025/Jun/29/ke…
Usa "data class" en Kotlin para clases enfocadas en datos: data class User(val name: String, val age: Int) #Kotlin #DataClasses #OneDevTipADay
Usa "data classes" en Python 3.7+ con el decorador @dataclass para evitar código boilerplate: from dataclasses import dataclass @dataclass class Point: x: int y: int #Python #DataClasses #OneDevTipADay
Usa "data class" en Kotlin para clases enfocadas en datos: data class User(val name: String, val age: Int) #Kotlin #DataClasses #OneDevTipADay
Usa "data classes" en Python 3.7+ con el decorador @dataclass para evitar código boilerplate: from dataclasses import dataclass @dataclass class Point: x: int y: int #Python #DataClasses #OneDevTipADay
Pythonの最新Tips!データクラスを使う際は、`kw_only=True`でフィールドをキーワード引数のみにし、コードの可読性を高めましょう。FastAPIやPydanticも活用してアプリケーションをスピードアップ! #PythonTips #Dataclasses #FastAPI…
Twitter/X Post 𝗗𝗮𝘆 𝟮𝟰 of #30DaysOfPython 📅 June 20, 2025 | Indian Data Club Explored #Dataclasses ✅ Defined a LibraryBook dataclass ✅ Included a method to display book details Less boilerplate, more clarity #PythonLearning #WomenInTech #IDC30DaysChallenge


Usa "data class" en Kotlin para clases enfocadas en datos: data class User(val name: String, val age: Int) #Kotlin #DataClasses #OneDevTipADay
📌 #30DaysOfPython – Day 24 ✅ | Dataclasses in Python 🎯 Challenge Task: Create a Book dataclass to represent a library book, with fields like title, author, ISBN, and publication year — and a method to display its details. #Python #Dataclasses #CareerRestart #WomenInTech #Code


🚀 Day 2️⃣4️⃣ of #30DaysOfPython by @indiandataclub 📚 Topic: Dataclasses in Python 💡 Library Card Analogy – One format, many books! 🎯 Challenge - Create a dataclass to represent a library book. 🔗 Full code: acesse.one/DFxcc #Python #Dataclasses #IDC30DaysChallenge



Usa "data class" en Kotlin para clases enfocadas en datos: data class User(val name: String, val age: Int) #Kotlin #DataClasses #OneDevTipADay
Usa "data classes" en Python 3.7+ con el decorador @dataclass para evitar código boilerplate: from dataclasses import dataclass @dataclass class Point: x: int y: int #Python #DataClasses #OneDevTipADay
Usa "data class" en Kotlin para clases enfocadas en datos: data class User(val name: String, val age: Int) #Kotlin #DataClasses #OneDevTipADay
Usa "data classes" en Python 3.7+ con el decorador @dataclass para evitar código boilerplate: from dataclasses import dataclass @dataclass class Point: x: int y: int #Python #DataClasses #OneDevTipADay
Usa "data class" en Kotlin para clases enfocadas en datos: data class User(val name: String, val age: Int) #Kotlin #DataClasses #OneDevTipADay
Usa "data class" en Kotlin para clases enfocadas en datos: data class User(val name: String, val age: Int) #Kotlin #DataClasses #OneDevTipADay
Usa "data class" en Kotlin para clases enfocadas en datos: data class User(val name: String, val age: Int) #Kotlin #DataClasses #OneDevTipADay
Usa "data classes" en Python 3.7+ con el decorador @dataclass para evitar código boilerplate: from dataclasses import dataclass @dataclass class Point: x: int y: int #Python #DataClasses #OneDevTipADay
TipOfTheDay Use `copy()` to clone objects, altering specific properties while keeping others unchanged. Example: `val meme = User(name = "Meme", age = 1)` `val olderMeme = meme.copy(age = 2)` #Kotlin #DataClasses
🐍#Python🐍 #DataClasses #CodingInPython #CodeSmart #commentme #followme #likeme #readme #drylikov #thread🧵⬇️

Kotlin : Data Classes for POJOs Use Kotlin's data class for simple data models: #Kotlin #DataClasses

Introducing Python 3.7's Dataclasses by @reuvenmlerner. #Python 3.7's #dataclasses reduce repetition in your class definitions. #programming linuxjournal.com/content/introd…

I've just released a new version of dacite with a few fixes/improvements. Thank you for your issues/PR #python #dataclasses github.com/konradhalas/da… 1.0.0 is coming soon! :)

I've just merged the very first PR in Dacite 🎉 github.com/konradhalas/da… #python #opensource #dataclasses

Dacite has 500 stars on GitHub 🎉 github.com/konradhalas/da… #python #dataclasses #dacite #opensource
Inheritance with #DataClasses in Python is seamless. Extend base classes and add new fields or methods without compromising the auto-generated magic! Perfect for evolving your data structures elegantly.

Just finished my new article about #python37 #dataclasses for JSON serialization hustas88.blogspot.com/2018/09/using-…

Data Day to Day is wrapping up with one last class tomorrow at 10:00 AM! Have you registered for the Planning and Managing Qualitative Research Studies class? Learn more at the Health Sciences Library Website! #Dataclasses #Datadaytoday #NYUHSL

Is it here? Could it be? YES! DataDoyenne podcast, episode one! Find it where you listen to/download podcasts. #data #dataclasses #podcast

Everything I read said to have at least two podcasts ready before you decide to "go live." Did I do that? Nope! That's okay. The podcast will launch next week. Read my blog post next week to find out what went wrong. It's funny..... #snafu #data #dataclasses #podcast

Kotlin : Use Data Classes for Automatic equals and hashCode Kotlin’s data classes come with auto-generated equals and hashCode Makes managing model data easier! #Kotlin #DataClasses #AndroidDev #CleanCode #CodeNewbie

Use case: Creating a simple address book. Define a dataclass with fields for name and phone number. Create instances representing contacts. #python #dataclasses

Learn how @Ookla (@Speedtest) was able to build a system in Airflow for MySQL to Redshift ETL pipelines defined in pure Python using dataclasses. Register for #AirflowSummit2021 and don't miss Madison Swain-Bowden's talk! sg1.run/twairflowsummi… #DataClasses #Datapipelines

Make sure to check out our data workshop classes. Sign up through the link in our bio. #MedicalLibrary #DataClasses #CalderLibrary #LibraryClasses #Library

2. Different Parameters. 🙌 Set different parameters of the dataclass decorator, such as init, repr, and frozen with ease. 🐍 You don't have to memorize all of them, ma fren 🤝! #python #python3 #dataclasses #100daysofcode

🚀 New Blog Post Alert! 📄 Discover how Python's Data Classes simplify object-oriented programming! From reducing boilerplate code to enhancing readability, learn how to make your coding life easier. 🐍💻 Link below 👇 #Python #DataClasses #OOP #ProgrammingTips #CodeBetter

Something went wrong.
Something went wrong.
United States Trends
- 1. Good Friday 41.5K posts
- 2. Dorado 4,317 posts
- 3. #FridayVibes 3,943 posts
- 4. Flacco 94.7K posts
- 5. Red Friday 1,627 posts
- 6. Happy Friyay N/A
- 7. Melly 3,416 posts
- 8. #FridayMotivation 2,898 posts
- 9. Cuomo 98.8K posts
- 10. #FridayFeeling 1,749 posts
- 11. Justice 345K posts
- 12. Talus 15.4K posts
- 13. #Talisman 8,536 posts
- 14. Tomlin 23.8K posts
- 15. Pence 87K posts
- 16. #WhoDidTheBody 1,764 posts
- 17. Rodgers 58.5K posts
- 18. Bolton 241K posts
- 19. yeonjun 127K posts
- 20. Sliwa 42.6K posts