Skip to content

Instantly share code, notes, and snippets.

View thiagodeschamps's full-sized avatar

Thiago thiagodeschamps

  • IFF
View GitHub Profile
import requests
from bs4 import BeautifulSoup
estado = str(input('Digite a sigla do seu estado(Ex: SP): ')).upper().strip()
cidade = str(input('Digite o nome de sua cidade(Ex: Jacarei): ')).lower().strip().replace(' ', '')
url = f'http://www.tempoagora.com.br/previsao-do-tempo/{estado}/{cidade}'
response = requests.get(url).text
cont = BeautifulSoup(response, 'lxml')
temp = cont.find('li', class_ = 'dsp-cell degree').text.strip()
print('\n')
print('-='*20)
@thiagodeschamps
thiagodeschamps / CeasarBruteforce.py
Last active August 24, 2018 17:31
Show all the possible combinations in a Ceasar encripture
def decypher(word):
des = ''
pos = 0
for c in range(0, 26):
for i in word:
if ord(i.upper()) + c > 90:
pos = 64
aux = ord(i.upper()) + c - 90
des += chr(pos + aux)
else:
def sovem():
print("\n", 55*"=", "\n")
def coleta():
sovem()
print(" Bem-vindo ao calculador de Incertezas Combinadas!")
sovem()
vet = []
#include <stdio.h>
int ehprimo(int);
int main(void){
FILE *fp;
fp = fopen("testefileC.txt", "w");
int i = 0;
@thiagodeschamps
thiagodeschamps / tweet_dumper.py
Last active December 20, 2018 01:03 — forked from yanofsky/LICENSE
A script to download all of a user's tweets into a text file
import tweepy
def get_all_tweets(screen_name):
auth = tweepy.OAuthHandler('---------------------', '-----------------------------------------------')
auth.set_access_token('------------------------------------','--------------------------=--')
api = tweepy.API(auth)
alltweets = []
@thiagodeschamps
thiagodeschamps / exemplo_tweepy.py
Last active December 20, 2018 13:56 — forked from marcoscastro/exemplo_tweepy.py
Obtendo tweets de usuário com Python e tweepy
import tweepy
auth = tweepy.OAuthHandler('46pvnSwIVylfWepbPsP4433wL', 'xWDPHaUkk0ub93qj1DaYgJcO8QtkPUhNFIE7uBAvzbSVLLpLzR')
auth.set_access_token('1952916806-9WbU9ROPLd4aVPprQZqWJhaW4RSXrBw4oK8A4Ow','gW5iuYPtrTxVhPmQxBemsKz6jCAOqbYx1fT0ewKHFyAkG')
api = tweepy.API(auth)
def obter_tweets(usuario, limite):
resultados = api.user_timeline(screen_name=usuario, count=limite)
tweets = []
for r in resultados:
@thiagodeschamps
thiagodeschamps / DownInsta.py
Last active December 21, 2018 13:45
Python script to download images from instagram
import requests
from bs4 import BeautifulSoup
import urllib.request
import json
# Variable used to order and naming the pictures downloaded
x = 1
def get_url(user_):
@thiagodeschamps
thiagodeschamps / ytdown.py
Last active December 22, 2018 04:33
Python script that search and download videos from youtube
from bs4 import BeautifulSoup
import requests
import pytube
import os
if not os.path.exists('videos'):
os.makedirs('videos')
os.chdir('videos')
@thiagodeschamps
thiagodeschamps / polingraphics.cpp
Created December 22, 2018 13:46
Uso de polimorfismo e interface grafica, recebendo comandos do teclados para mover os objetos
/*
https://github.com/jakleg
INTRUCOES:
CONTROLES:
- CIRCULO: W, A, S, D;
- QUADRADO: F, T, G, H;
@thiagodeschamps
thiagodeschamps / wordFinder.c
Last active February 4, 2019 15:28
find a specific sequence of letters in a string
#include <stdio.h>
int str_len(char s[]);
int compare(char s1[], char s2[]);
int main(void){
int n, i, j, k, l = 0;
scanf("%d",&n);