Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View anthonyeden's full-sized avatar
💭
Working on changing the world.

Anthony Eden anthonyeden

💭
Working on changing the world.
View GitHub Profile
@anthonyeden
anthonyeden / paradox.py
Last active November 5, 2020 21:31 — forked from BertrandBordage/paradox.py
Python Paradox database reader
# coding: utf-8
"""
Converts Paradox databases to Python objects or CSV.
You don't need any dependency (except Python) to make this module work.
This module is incomplete but reads most Paradox `.DB` files.
If this module is not fast or complete enough for you, consider using pxview.
CAUTION: THIS SOFTWARE DOES NOT RELIABLY FETCH ALL DATA FROM PARADOX. CONSIDER USING ODBC DRIVERS INSTEAD.
@anthonyeden
anthonyeden / nexgen_xml_receiver.php
Created September 26, 2016 10:47 — forked from anonymous/nexgen_xml_receiver.php
NexGen Now Playing PHP Sample Script
<?php
//GET XML data from RCS NexGen
//?nexgendata=ENCODEDXML
// The raw XML data sent from NexGen
$xml_raw = $_GET['nexgendata'];
// A simple way to convert the XML to an associative array
$xml_nexgen = json_decode(json_encode((array)simplexml_load_string($xml_raw)), 1);