Skip to content

Instantly share code, notes, and snippets.

View nicklozon's full-sized avatar

Nick Lozon nicklozon

View GitHub Profile
@cgddrd
cgddrd / uk-postcode-areas.geojson
Created January 14, 2020 13:02
uk-postcode-areas.geojson
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@cgddrd
cgddrd / postcodes.geojson
Created January 14, 2020 11:54
postcodes.geojson
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@RZetko
RZetko / tidal_import.py
Last active April 9, 2024 18:48
Export your CSV albums from various music streaming services to Tidal
# You need to install tidalapi using pip install tidalapi (more can be found here https://github.com/tamland/python-tidal)
# Input is UTF-8 CSV file with format Artist - Album
# Fill in your username and password on line 13 -> session.login('username', 'password')
# Fill in filename of your CSV file on line 16 -> with open('file.csv', encoding="utf8") as csvfile:
import csv
import sys
import pprint
import tidalapi