🎉 10,000 students — Promo valid until Feb 28

The next step of your programming career starts here.

Master Python, Automation and Web with someone who combines elite academic training (UNICAMP/USP) and real market experience. Join thousands of developers.

Explore Courses

Available Courses

Creating Robots with Python - Process Automation
4.4
-87%

Creating Robots with Python - Process Automation

Complete Python 3 - Master Web Automation, GUI Automation and Intelligent Automation

10.5 hours
84 lessons
Beginner1090 reviews

From R$ 211.90

R$ 27.90

Best price guaranteed

Enroll Now
Process Automation with Python RPA and BotCity
4.5
-68%

Process Automation with Python RPA and BotCity

Learn how to create desktop robots in a practical way using Python RPA, Computer Vision and BotCity.

1.5 hours
20 lessons
Beginner97 reviews

From R$ 79.90

R$ 25.90

Best price guaranteed

Enroll Now
Creating Robots with Python - Controlling Instagram
4.4
-64%

Creating Robots with Python - Controlling Instagram

Use Python robots to gain real and targeted followers to boost your Instagram profile reach.

1.5 hours
11 lessons
Beginner121 reviews

From R$ 79.90

R$ 28.90

Best price guaranteed

Enroll Now
Practicing Python solving 50 real exercises
4
-70%

Practicing Python solving 50 real exercises

Learn Python in practice, solving 50 Python exercises that every programmer faces daily

1 hours
108 lessons
Beginner3 reviews

From R$ 81.90

R$ 24.90

Best price guaranteed

Enroll Now
Introduction to HTML and CSS [2026]
4.7
-79%

Introduction to HTML and CSS [2026]

Learn HTML and CSS in a fun and effective way. From zero to your first complete website!

1.5 hours
33 lessons
Beginner51 reviews

From R$ 116.90

R$ 24.90

Best price guaranteed

Enroll Now
Introduction to Python 3 programming [2024]
4.6

Introduction to Python 3 programming [2024]

Start your Python 3 studies and learn the essentials to start programming with Python

1.5 hours
22 lessons
Beginner119 reviews
Web programming with Python 3 and Django
4.1
-69%

Web programming with Python 3 and Django

Learn from scratch to build websites with Python 3, Django, HTML, CSS, Bootstrap, Javascript and jQuery

3.5 hours
32 lessons
Beginner57 reviews

From R$ 79.90

R$ 24.90

Best price guaranteed

Enroll Now

About the Instructor

Gabriel Casemiro

Jan 2018

Started on Udemy (Python, RPA and Web)

Set 2020

Graduated in Information Systems from UNICAMP

Out 2023

Guest instructor at Rocketseat

Dez 2025

Postgraduate in Software Engineering from USP-ESALQ

2026

Launch of the online course platform

Gabriel Casemiro

Bachelor in Information Systems from UNICAMP and postgraduate in Software Engineering from USP-ESALQ.

With 11 years of experience and working in the market since 2015, I have served national and international companies, focusing on Process Automation and Python.

For 7 years I have been teaching on Udemy, accumulating knowledge that I now centralize here to accelerate your evolution.

10k+

Alunos

7

Cursos

7+

Anos

Coming Soon

Blog & Insights

Weekly articles about Python, AI and the future of Data.

Coming Soon

Practice what you learned

An interactive environment to run Python scripts directly in the browser. Less theory, more code.

exercicio_01.py

def soma_lista(numeros):

# Complete a função

return sum(numeros)

 

# Teste sua solução

resultado = soma_lista([1, 2, 3, 4, 5])

print(resultado) # Output: 15

Terminal

$ python exercicio_01.py

15

✓ Teste passou!