This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
import pandas as pd | |
with open('Downloads/xfrcollective.json', 'r') as f: | |
data = json.load(f) | |
df = pd.DataFrame(data['collection_items']) | |
df.to_csv('Downloads/xfrcollective.csv', index=False) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
import csv | |
with open('Downloads/xfrcollective.json', 'r') as f: | |
data = json.load(f) | |
with open('Downloads/xfrcollective.csv', 'w') as f: | |
header = ['addeddate', 'backup_location', 'collection', 'color', 'contact', 'contributor', 'coverage', 'creator', 'curation', 'date', 'description', 'designer', 'identifier', 'illustrator', 'language', 'licenseurl', 'mediatype', 'ocr', 'ppi', 'publicdate', 'publisher', 'rights', 'runtime', 'scanner', 'sound', 'sponsor', 'subject', 'title', 'updatedate', 'updater', 'uploader', 'year'] | |
writer = csv.writer(f, header) | |
writer.writerow(header) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import argparse | |
import bagit | |
def main(): | |
parser = argparse.ArgumentParser() | |
parser.add_argument( | |
"directory", | |
nargs="+", | |
help=_( | |
"Directory which will be scanned for files and hashed." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import subprocess | |
import multiprocessing | |
import timeit | |
def work(drive): | |
cmd = [ | |
'snowball', | |
'cp', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import subprocess | |
import multiprocessing | |
import timeit | |
def work(drive): | |
cmd = [ | |
'find', | |
drive, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import subprocess | |
import multiprocessing | |
import timeit | |
def work(drive): | |
cmd = [ | |
'snowball', | |
'cp', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env/python | |
import os | |
import argparse | |
import subprocess | |
import multiprocessing | |
### For extra utitily when running this script remotely | |
# nohup transcode.py -d directory/of/mov -e mov -o directory/of/future/mkv & |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
from pymediainfo import MediaInfo | |
import argparse | |
import os | |
import glob | |
import logging | |
import csv | |
import re |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(readr) | |
library(dplyr) | |
library(tidyr) | |
library(factoextra) | |
# Read data, drop last 3 columns that don't ask about skills | |
osf_url = "https://files.osf.io/v1/resources/zndwq/providers/osfstorage/570be0eab83f6901d62b19d9" | |
responses <- read_csv(osf_url)[,1:30] | |
# Reshape raw data into number of responses per importance level |