Skip to content

Instantly share code, notes, and snippets.

View herberthudson's full-sized avatar

Herbert Hudson herberthudson

  • Campinas - Brazil
  • 13:27 (UTC -03:00)
View GitHub Profile

Oh my zsh.

Oh My Zsh

Install ZSH.

sudo apt install zsh-autosuggestions zsh-syntax-highlighting zsh

Install Oh my ZSH.

@herberthudson
herberthudson / PokePython.py
Created November 26, 2019 22:24
Pequeno exemplo utilizando a pokeapi para resgatar informações de pokemon
import requests
URL = "https://pokeapi.co/api/v2/pokemon/"
pokemon = input("Insira um nome de Pokemon: ")
if not pokemon:
print("Insira um nome de Pokemon valido")
else: