Skip to content

Instantly share code, notes, and snippets.

View mewmix's full-sized avatar

chubbykat mewmix

View GitHub Profile
@mewmix
mewmix / slack_handler.py
Last active October 4, 2021 18:34 — forked from blakev/slack_handler.py
Python logging handler for publishing to a slack channel.
import os
import time
import json
import socket
import logging
from slack_logger import SlackLogger
class SlackChannelHandler(logging.Handler):
@mewmix
mewmix / get_all_followers.py
Created July 13, 2021 22:05 — forked from PandaWhoCodes/get_all_followers.py
best way get all twitter followers of a user using tweepy
import time
import tweepy
import csv
auth = tweepy.OAuthHandler("", "")
auth.set_access_token("",
"")
def get_followers(user_name):