├── LICENSE ├── README.md ├── assets └── training-center-logo.svg └── material ├── README.md ├── agenda ├── README.md └── data │ └── 20180122.md ├── dir ├── books.md ├── communities.md ├── courses.md ├── events.md ├── newsletters.md └── sites.md ├── minutes ├── README.md └── data │ └── 20180122.md └── roadmap.md /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Training Center 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Repositório do grupo de estudos sobre python do [Training Center](https://training-center.github.io). 2 | 3 |

4 | Logo do Training Center 5 |

6 | 7 | ## Como funciona 8 | 9 | Este grupo se destina ao estudo de Python. 10 | 11 | Conforme [outros grupos de estudos](https://github.com/training-center/study-groups) da comunidade Training Center, nós temos um [roadmap](material/roadmap.md) de tópicos para estudar juntos e fazemos reuniões semanais sobre o assunto que são gravados e disponibilizados no YouTube, no [canal do Training Center](https://www.youtube.com/c/TrainingCenterChannel). 12 | 13 | ## Como participar 14 | 15 | Basta entrar no [Slack do Training Center](https://github.com/training-center/slack) e entrar no canal **#python-studies**. 16 | 17 | ## Reuniões 18 | 19 | - [pauta](/material/agenda) 20 | - [ata](material/minutes) 21 | 22 | ## Material de apoio ao grupo de estudos 23 | 24 | - [trilha de estudos](material/roadmap.md) 25 | - [livros](material/dir/books.md) 26 | - [comunidades](material/dir/communities.md) 27 | - [cursos](material/dir/courses.md) 28 | - [eventos](material/dir/events.md) 29 | - [newsletters](material/dir/newsletters.md) 30 | - [sites](material/dir/sites.md) 31 | 32 | ## Responsáveis 33 | 34 | Caso você precise entrar em contato com as pessoas responsáveis por este grupo de estudos, pode chamar por `@cvalente` no Slack do Training Center. 35 | -------------------------------------------------------------------------------- /assets/training-center-logo.svg: -------------------------------------------------------------------------------- 1 | 2 | logo-training-center-blue-128 3 | Created using Figma 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /material/README.md: -------------------------------------------------------------------------------- 1 | ## Material de apoio ao grupo de estudos de Python 2 | 3 | - [livros](dir/books.md) 4 | - [comunidades](dir/communities.md) 5 | - [cursos](dir/courses.md) 6 | - [eventos](dir/events.md) 7 | - [newsletters](dir/newsletters.md) 8 | - [sites](dir/sites.md) 9 | -------------------------------------------------------------------------------- /material/agenda/README.md: -------------------------------------------------------------------------------- 1 | ## Pautas das reuniões 2 | - [20180122](data/20180122.md) 3 | -------------------------------------------------------------------------------- /material/agenda/data/20180122.md: -------------------------------------------------------------------------------- 1 | # Pauta da reunião do dia 22/01/2018 2 | 3 | - Definição do plano de estudo 4 | - Definição da periodicidade das reunião 5 | - Apresentação do material de apoio 6 | 7 | -------------------------------------------------------------------------------- /material/dir/books.md: -------------------------------------------------------------------------------- 1 | ## Livros sobre [xxx] 2 | -------------------------------------------------------------------------------- /material/dir/communities.md: -------------------------------------------------------------------------------- 1 | ## Comunidades de [xxx] -------------------------------------------------------------------------------- /material/dir/courses.md: -------------------------------------------------------------------------------- 1 | ## Cursos de [xxx] 2 | -------------------------------------------------------------------------------- /material/dir/events.md: -------------------------------------------------------------------------------- 1 | ## Eventos de [xxx] 2 | -------------------------------------------------------------------------------- /material/dir/newsletters.md: -------------------------------------------------------------------------------- 1 | ## Listas de email sobre [xxx] 2 | -------------------------------------------------------------------------------- /material/dir/sites.md: -------------------------------------------------------------------------------- 1 | ## Sites sobre [xxx] 2 | -------------------------------------------------------------------------------- /material/minutes/README.md: -------------------------------------------------------------------------------- 1 | ## Ata das reuniões 2 | 3 | - [20180122](data/20180122.md) 4 | -------------------------------------------------------------------------------- /material/minutes/data/20180122.md: -------------------------------------------------------------------------------- 1 | # Ata da reunião do dia 22/01/2018 2 | 3 | Nesta reunião fizemos uma dinâmica de apresentação dos participantes, definimos o plano de estudo. 4 | 5 | Os resultados da reunião foram as seguintes ações: 6 | 7 | - faremos encontros quinzenais 8 | - definiremos um escopo para cada quinzena 9 | - para as quinzenas sera definido um conteúdo a ser estudo e uma lista de exercicios para execução 10 | - para as reuniões utilizaremos o discord como plataforma [Python Study Group](https://discord.gg/8D5mjq) 11 | - as pessoas participantes deste grupo de estudos devem postar suas dúvidas no canal `#python-studies` no Slack, não esperar para tirar as dúvidas na próxima reunião 12 | 13 | Nesta reunião ficou definido o seguinte escopo de estudos: 14 | 15 | - utilizaremos como base os livros: 16 | - [Pense Python](https://penseallen.github.io/PensePython2e/) 17 | - [Curso Intensivo de Python](https://novatec.com.br/livros/curso-intensivo-python/) 18 | 19 | * Não é obrigatório a aquisição de nenhum dos livros 20 | 21 | - usaremos como material de apoio a documentação oficial do python [Beginner´s Guide](https://wiki.python.org/moin/BeginnersGuide) 22 | - para complemento de exercícios e desafios usaremos o [Hacker Rank](https://www.hackerrank.com/) 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /material/roadmap.md: -------------------------------------------------------------------------------- 1 | ## Roadmap de estudos sobre [xxx] --------------------------------------------------------------------------------