Skip to content

Instantly share code, notes, and snippets.

View edson-github's full-sized avatar
🏠
Working from home

Edson Andrade edson-github

🏠
Working from home
View GitHub Profile
@ledmaster
ledmaster / jupyter_namer.py
Created May 12, 2023 17:10
No more "Untitled12-final-final.ipynb"! A python script that ingests Jupyter Notebook cells and comes up with 10 relevant names to give it.
# No more "Untitled12-final-final.ipynb"!
# A python script that ingests Jupyter Notebook cells and comes up with 10 relevant names to give it.
import nbformat
import openai
import argparse
def extract_cell_contents(notebook_path):
with open(notebook_path, "r", encoding="utf-8") as f:
notebook = nbformat.read(f, nbformat.NO_CONVERT)
@humrochagf
humrochagf / emailchecker.py
Created July 4, 2018 12:57
Lendo emails do gmail
# Este é o código de como ler emails do gmail
# discutido no calango, ele foi escrito para rodar em
# python 3
import email
import imaplib
EMAIL = '[email protected]'
PASSWORD = '@Calango123'
SERVER = 'imap.gmail.com'