Skip to content

Instantly share code, notes, and snippets.

View TomWoodFR's full-sized avatar

Tom Wood TomWoodFR

View GitHub Profile
{
"termsAndConditions": [
{
"linkText": "App Text One",
"linkUrl": "https://appOne.com"
},
{
"linkText": "App Text Two",
"linkUrl": "https://appTwo.com"
},
@TomWoodFR
TomWoodFR / appConfig-Full
Last active May 16, 2023 10:45
Full appConfig example
{
"termsAndConditions": [
{
"linkText": "App Text One",
"linkUrl": "https://appOne.com"
},
{
"linkText": "App Text Two",
"linkUrl": "https://appTwo.com"
},
{
"termsAndConditions": [
{
"linkText": "App Text One",
"linkUrl": "https://appOne.com"
},
{
"linkText": "App Text Two",
"linkUrl": "https://appTwo.com"
},
{
"termsAndConditions": [
{
"linkText": "App Text One",
"linkUrl": "https://appOne.com"
},
{
"linkText": "App Text Two",
"linkUrl": "https://appTwo.com"
},
{
"termsAndConditions": [
{
"linkText": "App Text One",
"linkUrl": "https://appOne.com"
},
{
"linkText": "App Text Two",
"linkUrl": "https://appTwo.com"
},
{
"termsAndConditions": []
}
#!/usr/bin/env python
"""
Converts Internet Explorer 'capture network traffic' XML to a HAR file.
Turns out that XML is just a HAR file anyways, but in XML form. So this
just converts it to JSON, and Bob's your uncle.
Requires Python 2.7+ and LXML.
"""
from __future__ import unicode_literals