top of page

Monthly Reading - March 2021

  • Writer: Ana Maria Mihalceanu
    Ana Maria Mihalceanu
  • Mar 3, 2021
  • 1 min read

Updated: Nov 5, 2023


This month, I recommend you read "Team Topologies: Organizing Business and Technology Teams for Fast Flow" by Matthew Skelton and Manuel Pais.

If you are a technical/team lead or aspiring to become one, this book is a must-read that will help you adjust your team vision. Key ideas and practices on shaping your team structure can help you better estimate your workload and provide a measurable plan to your peers and managers.

I invite you to leave your opinion about the book in the comments section.

Comentários


bottom of page
  import subprocess
  import pathlib
  import requests
  from tqdm import tqdm
  import pandas as pd
  
  # Destination folder for the downloaded files
  dir_dest = pathlib.Path(__file__).absolute().parent.parent / "dataset"
  try:
      # Send GET request to Github API
      r = requests.get(
          (
              "https://api.github.com/repos/shandou/"
              "data-sets/contents"
          )
      )
      r.raise_for_status()
  except requests.exceptions.HTTPError as e:
      print(f"requests failed with error {e}")
  else:
      # When requests succeed, pack returned JSON into pandas dataframe
      df = pd.read_json(r.content)