Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ajaybhatia/funf-open-sensing-framework.scripts
Automatically exported from code.google.com/p/funf-open-sensing-framework.scripts
https://github.com/ajaybhatia/funf-open-sensing-framework.scripts
Last synced: 19 days ago
JSON representation
Automatically exported from code.google.com/p/funf-open-sensing-framework.scripts
- Host: GitHub
- URL: https://github.com/ajaybhatia/funf-open-sensing-framework.scripts
- Owner: ajaybhatia
- Created: 2015-04-25T05:21:32.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-04-25T05:23:07.000Z (over 9 years ago)
- Last Synced: 2024-04-15T16:26:19.360Z (9 months ago)
- Language: Python
- Size: 121 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
=Funf Data Processing=
This project contains convenience scripts for processing Funf data files.
These files are designed to be used as standalone scripts, and not as a library to be imported.
Make sure to download and install the dependencies before running the scripts.==Data Processing==
Scripts for processing data once it has been retrieved from devices.Dependencies:
* PyCrypto ( https://www.dlitz.net/software/pycrypto/ )===decrypt.py===
Decrypts files using the DES key specified, or the one included in this script. Keeps a backup copy of the original file.
*WARNING:* This script does not detect if a file has already been decrypted. Decrypting a file that is not encrypted will scramble the file.===dbdecrypt.py===
Safe script for decrypting sqlite3 db files. Checks to see if the file can be opened by Sqlite. Only if it cannot open the file, it decrypts it.===dbsalvage.py===
Attempts to salvage as much data as possible from a corrupted file, by dumping its contents to a new db file.===dbmerge.py===
Merge many database files into one file.==Simple Server==
A basic reference HTTP server for communicating with Funf applications.
The server hosts one configuration file (/config), and accepts multipart form uploads of files (/data).This is meant to be a reference implementation for prototyping, and not meant to be a stable long running implementation.