Use this knowledge at your own risk.
youtube-dl will allow you to download entire youtube playlists and store them as MP3s. This will also allow you to download individual MP3s.
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) |
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) |