-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
144de69
commit 7bb7e40
Showing
9 changed files
with
2,340 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Book settings | ||
# Learn more at https://jupyterbook.org/customize/config.html | ||
|
||
title: Python para todos | ||
author: Henrique Branco | ||
logo: img/logo.png | ||
|
||
# Force re-execution of notebooks on each build. | ||
# See https://jupyterbook.org/content/execute.html | ||
execute: | ||
execute_notebooks: force | ||
|
||
# Define the name of the latex output file for PDF builds | ||
latex: | ||
latex_documents: | ||
targetname: book.tex | ||
|
||
# Add a bibtex file so that we can create citations | ||
bibtex_bibfiles: | ||
- references.bib | ||
|
||
# Information about where the book exists on the web | ||
repository: | ||
url: https://github.com/HenriqueAJNB/python-para-todos # Online location of your book | ||
path_to_book: books # Optional path to your book, relative to the repository root | ||
branch: main # Which branch of the repository should be used when creating links (optional) | ||
|
||
# Add GitHub buttons to your book | ||
# See https://jupyterbook.org/customize/config.html#add-a-link-to-your-repository | ||
html: | ||
use_issues_button: true | ||
use_repository_button: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Table of contents | ||
# Learn more at https://jupyterbook.org/customize/toc.html | ||
|
||
format: jb-book | ||
root: intro | ||
options: | ||
numbered: True | ||
chapters: | ||
- file: instalacao-python.md |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Instalação Python |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# ![python](https://cdn3.emoji.gg/emojis/1887_python.png) Python para todos | ||
|
||
## Sobre mim | ||
|
||
Olá, sou Henrique Branco, e este é meu [perfil do LinkedIn](https://www.linkedin.com/in/henriqueajnb/). É um prazer imenso ter você comigo aqui nesta jornada de aprendizado em linguagem Python. Eu adoro me conectar com as pessoas. Caso você comece a ler esse livro, me mande um oi no LinkedIn! | ||
|
||
Desde 2018, mergulhei de cabeça no mundo de Python e, desde então, tive a alegria de ensinar centenas de alunos, tanto em aulas particulares quanto em grupo. Um dos momentos mais marcantes da minha carreira de ensino foi liderar um bootcamp de Python pela How Bootcamps em parceria com a Stone, onde 200 alunos participaram ao vivo durante 6 meses! | ||
|
||
Além de ensinar em português, também lancei cursos na plataforma Coursera em inglês, abordando temas como Python com IA generativa, git e VSCode, ampliando o alcance do meu trabalho e ajudando ainda mais pessoas a desenvolverem suas habilidades. | ||
|
||
Na minha trajetória profissional, atuei como Engenheiro de Machine Learning em empresas renomadas como Bosch, Cellere IT e Grupo Boticário. Essas experiências me permitiram aplicar e aprofundar meus conhecimentos em projetos reais, desafiadores e inovadores. | ||
|
||
E dedici compartilhar conhecimento e conteúdo através deste livro. | ||
|
||
## Objetivos | ||
|
||
O objetivo deste livro é guiá-lo em sua jornada de aprendizado em Python, partindo do absoluto zero. Se você nunca programou antes ou está dando seus primeiros passos no mundo da programação, este livro foi feito especialmente para você. | ||
|
||
Quero que você se sinta apoiado e confiante durante todo o processo de aprendizado. Por isso, ofereço uma linguagem informal e um contato próximo comigo, autor deste material, como um diferencial. Estarei disponível para esclarecer dúvidas, fornecer feedback e ajudá-lo a superar qualquer desafio que possa surgir. Minha intenção é criar uma experiência de aprendizado suave, onde você não apenas aprende Python, mas também seja ouvido com suas dúvidas. | ||
|
||
## Conteúdo do livro | ||
|
||
```{tableofcontents} | ||
``` |
Empty file.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[virtualenvs] | ||
in-project = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
[tool.poetry] | ||
name = "python-para-todos" | ||
version = "0.1.0" | ||
description = "" | ||
authors = ["Henrique Branco <[email protected]>"] | ||
readme = "README.md" | ||
package-mode = false | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.12" | ||
jupyter-book = "^1.0.0" | ||
|
||
|
||
[tool.poetry.group.dev.dependencies] | ||
taskipy = "^1.13.0" | ||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
||
[tool.taskipy.tasks] | ||
build = { cmd = "jb build --all book", help = "runs all unit tests" } |