Skip to content

Instantly share code, notes, and snippets.

View revelutions's full-sized avatar

Nilan-jan revelutions

  • Sydney, Australia
View GitHub Profile
@vickyqian
vickyqian / twitter crawler.txt
Last active May 11, 2024 16:19
A Python script to download all the tweets of a hashtag into a csv
import tweepy
import csv
import pandas as pd
####input your credentials here
consumer_key = ''
consumer_secret = ''
access_token = ''
access_token_secret = ''
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
@jogeshpi03
jogeshpi03 / gist:19cef8720f36b1c41192b55444751f66
Last active May 11, 2019 08:38
Facebook Data-Mining Using Python
import requests
import pandas as pd
import os, sys
token = ""
try:
token = os.environ['FB_TOKEN']
except:
print "Set FB_TOKEN variable"
sys.exit(-1)
@ivanskodje
ivanskodje / youtube-dl-download-youtube-music-playlists.md
Last active July 7, 2025 04:50
youtube-dl for downloading music from YouTube

Downloading Music Playlists from YouTube

Disclaimer

Use this knowledge at your own risk.

youtube-dl for Windows

youtube-dl will allow you to download entire youtube playlists and store them as MP3s. This will also allow you to download individual MP3s.