Installing Python | Create a Basic ETL Python Script | Data Engineering | All about Data | DataGeek

Опубликовано: 16 Июнь 2026
на канале: Data Geek
29
3

Welcome to DataGeek !!

Are you ready to master Python and level up your data engineering skills? 🚀
On this channel, we dive deep into practical coding tutorials that make software development simple and efficient — from installing Python to writing clean, professional code with best practices in naming folders, variables, and classes.

Get hands-on with easy-to-follow guides like building Python ETL scripts that pull data from real-world APIs, perform meaningful transformations, and save results locally — perfect for beginners and aspiring data engineers!

Whether you’re starting your coding journey or looking to sharpen your data workflows, our clear, step-by-step videos will help you build confidence and create robust, maintainable projects.

Subscribe now and turn your Python skills into powerful tools for data-driven success! 🔥

Adding the Lisence for the background music.
Music: Bensound
License code: SSGD7810DDXWMDSV
and this is the music I used: https://www.bensound.com/royalty-free...

👉 Subscribe for more amazing study content with friends!

Download the python - https://www.python.org/downloads/
Python setup and usages - https://docs.python.org/3/using/index.html

How to create an environment?
python -m venv env name
source env_name/bin/activate
deactivate

API -: https://jsonplaceholder.typicode.com/todos/

API docs:
https://jsonplaceholder.typicode.com/

Folder structuring
utils
constants
config

Examples of Naming Conventions:
File Naming: project_name_file_type.ext (e.g., my_project_report.pdf).
Variable Naming: camelCase or snake_case (e.g., userFirstName or user_first_name).
Function Naming: capitalizeFirstLetter or doSomething.
Class Naming: PascalCase (e.g., MyClass).
Constant Naming: UPPER_SNAKE_CASE (e.g., MAX_WIDTH).