Skip to content

Instantly share code, notes, and snippets.

View bybinhabr's full-sized avatar

Barbara Samel Rocha Tostes bybinhabr

View GitHub Profile
@fmasanori
fmasanori / raspa_cnj.py
Last active April 26, 2019 19:13
Raspa os mandados da BNMP
import requests
import json
import pymongo
connection = pymongo.MongoClient("mongodb://localhost")
db = connection.bnmp
mandados_mongoDB = db.mandados
cabeçalho = {
'Host': 'www.cnj.jus.br',
@jsbueno
jsbueno / lissageous.py
Created July 28, 2017 01:57
Simple lissageous curves with pygame
from math import cos, sin
import pygame
tela = pygame.display.set_mode((640, 480))
CX, CY = 320, 240