Skip to content

Instantly share code, notes, and snippets.

View nikhilCad's full-sized avatar
💭
Existing

Nikhil Kadiyan nikhilCad

💭
Existing
View GitHub Profile
@nikhilCad
nikhilCad / parser.py
Created July 22, 2023 05:19
Exporting JSON Newpipe Subscriptions to OPML for RSS Readers
import json
f = open('Your_Newpipe_subscription_export.json')
data = json.load(f)#dict
f.close()