obfuscator Documentation

Size: px
Start display at page:

Download "obfuscator Documentation"

Transcription

1 obfuscator Documentation Release Timothy McFadden July 17, 2015

2

3 Contents 1 Introduction 3 2 Install 5 3 Usage 7 4 Auto Generated API Documentation obfuscator.file obfuscator Indices and tables 13 Python Module Index 15 i

4 ii

5 obfuscator Documentation, Release Contents: Contents 1

6 obfuscator Documentation, Release Contents

7 CHAPTER 1 Introduction Obfuscator is a Python package used to obfuscate a set of data (e.g. bytes). It provides no encryption! It s strictly a security through obscurity tool, with limited usefulness. You have been warned! The project is hosted on GitHub at 3

8 obfuscator Documentation, Release Chapter 1. Introduction

9 CHAPTER 2 Install Download the latest release tarball and install with pip install <package>. You may also install directly from Pypi with pip install obfuscator. 5

10 obfuscator Documentation, Release Chapter 2. Install

11 CHAPTER 3 Usage See the unit tests for more in-depth examples. Here are the basics: import obfuscator original_bytes = map(ord, "testing") _key, obfuscated_bytes = obfuscator.obfuscate_xor(original_bytes, key=0x66) deobfuscated_bytes = obfuscator.deobfuscate_xor(key=0x66, data=obfuscated_bytes) assert original_bytes == deobfuscated_bytes If you use obfuscator.file to encode and decode strings, there is a miniature interface that you can use by importing the module directly: c:\code>python -m obfuscator.file Usage: python -m obfuscator.file encode-str <path-to-file> <key> "string to encode" python -m obfuscator.file decode-str <path-to-file> <key> c:\code>python -m obfuscator.file encode-str test.bin 10 "test\ning" [116, 101, 115, 116, 92, 110, 105, 110, 103] c:\code>python -m obfuscator.file decode-str test.bin 10 test\ning c:\code> 7

12 obfuscator Documentation, Release Chapter 3. Usage

13 CHAPTER 4 Auto Generated API Documentation Contents: 4.1 obfuscator.file This module contains a file-level interface for the XOR obfuscation methods. class obfuscator.file.obfuscatedfile(filename) Parameters filename (str) The path of the file you want to read/write. This class represents an obfuscated data file. You can use this to store some-what sensitive information inside a file. The documentation for some of the functions is purposely light. Example #1 - Storing a string: >>> from obfuscator.file import ObfuscatedFile >>> of = ObfuscatedFile('data.bin') >>> bytes = map(ord, "my string") >>> of.write(bytes) # data.bin is 32 bytes long 86 # The random key used for encoding; stored in the file >>> read_bytes = of.read() >>> read_bytes [109L, 121L, 32L, 115L, 116L, 114L, 105L, 110L, 103L] >>> ''.join(map(chr, read_bytes)) 'my string' Example #2 - Storing a string with known key: >>> from obfuscator.file import ObfuscatedFile >>> of = ObfuscatedFile('data.bin') >>> bytes = map(ord, "my string") >>> my_key = 0xCF >>> of.write(bytes, my_key) # data.bin is 32 bytes long 207 >>> read_bytes = of.read() # Notice how we didn't use a key >>> ''.join(map(chr, read_bytes)) ',8a253(/&' >>> # The string is wrong because the key is not stored in the file >>> read_bytes = of.read(key=my_key) >>> ''.join(map(chr, read_bytes)) 'my string' >>> 9

14 obfuscator Documentation, Release read(key=none) This function reads a file written by write, and returns the deobfuscated data. Parameters key (int) The key used during write(). NOTE: If you passed in a key during write(), you must use the same key here; the key will not be stored in the file. If you let the algorithm choose the key, it is stored in the file, and will be used during read(). write(data, key=none, minimum_length=32) Write the data to a file. Parameters data (iterable) The data you want to encode; the length of data must be less than 0xFF (header size limitation) key (int) The key used during encoding minimum_length (int) The minimum number of bytes to write. If the encoding operation produces fewer bytes that this, random bytes are appended to the end of the result so len(bytes) == minimum_length. 4.2 obfuscator This module contains a simple mechanism for obfuscating a set of data. Consider this security through obscurity. This module contains no encryption mechanisms! Example: >>> from obfuscator import obfuscate_xor, deobfuscate_xor >>> data = [1, 2, 3, 4] >>> key, odata = obfuscate_xor(data) >>> key, odata (162, [163, 160, 161, 166, 166, 154, 181, 60, 131, 24, 88, 35, 137, 240, 216, 161, 247, 218, 19, 116, >>> assert data == deobfuscate_xor(key, odata)[:len(data)] >>> >>> key, odata = obfuscate_xor(data, minimum_length=0) >>> assert data == deobfuscate_xor(key, odata) >>> obfuscator.deobfuscate(key, data, encoder=1) This function obfuscates the data using the default operation. obfuscator.deobfuscate_offset(key, data) This function deobfuscates the data using an offset operation. The formula used is: [x - key for x in data] Parameters key (int) The key used for the offset operation. data (iterable) The data you want to obfuscate obfuscator.deobfuscate_rot13(key, data) This function performs a ROT13 decode of the data. data needs to be an iterable that contains a representation of str types. This can be either a string of type str, or a list of bytes from something like ord. Parameters key (int) This value is ignored; it only exists to conform to the other methods. data (iterable) The data you want to deobfuscate 10 Chapter 4. Auto Generated API Documentation

15 obfuscator Documentation, Release obfuscator.deobfuscate_xor(key, data) This function deobfuscates the data using an byte-wise XOR operation. The formula used is: [x ^ key for x in data] Parameters key (int) The key used for the XOR operation. data (iterable) The data you want to obfuscate obfuscator.obfuscate(data, key=none, minimum_length=32, encoder=1) This function obfuscates the data using the default operation. obfuscator.obfuscate_offset(data, key=none, minimum_length=32) This function obfuscates the data using an offset operation. The formula used is: [x + key for x in data] Parameters data (iterable) The data you want to obfuscate key (int) The value used for the offset operation. By default, the value will be a random integer between 40 and 127. minimum_length (int) The minimum number of bytes to return. If the encoding operation produces fewer bytes that this, random bytes are appended to the end of the result so len(bytes) == minimum_length. obfuscator.obfuscate_rot13(data, key=none, minimum_length=32) This function performs a ROT13 encode on the data. data needs to be an iterable that contains a representation of str types. This can be either a string of type str, or a list of bytes from something like ord. Parameters data (iterable) The data you want to obfuscate key (int) This value is ignored; it only exists to conform to the other methods. minimum_length (int) The minimum number of bytes to return. If the encoding operation produces fewer bytes that this, random bytes are appended to the end of the result so len(bytes) == minimum_length. obfuscator.obfuscate_xor(data, key=none, minimum_length=32) This function obfuscates the data using an byte-wise XOR operation. The formula used is: [x ^ key for x in data] Parameters data (iterable) The data you want to obfuscate key (int) The key used for the XOR operation. By default, the key will be a random integer between 1 and 255. minimum_length (int) The minimum number of bytes to return. If the encoding operation produces fewer bytes that this, random bytes are appended to the end of the result so len(bytes) == minimum_length. obfuscator.rot13(data, minimum_length=32) This function performs a ROT13 encode/decode on the data. data needs to be an iterable that contains a representation of str types. This can be either a string of type str, or a list of bytes from something like ord. Parameters 4.2. obfuscator 11

16 obfuscator Documentation, Release data (iterable) The data you want to obfuscate minimum_length (int) The minimum number of bytes to return. If the encoding operation produces fewer bytes that this, random bytes are appended to the end of the result so len(bytes) == minimum_length. 12 Chapter 4. Auto Generated API Documentation

17 CHAPTER 5 Indices and tables genindex modindex search 13

18 obfuscator Documentation, Release Chapter 5. Indices and tables

19 Python Module Index o obfuscator, 10 obfuscator.file, 9 15

20 obfuscator Documentation, Release Python Module Index

21 Index D deobfuscate() (in module obfuscator), 10 deobfuscate_offset() (in module obfuscator), 10 deobfuscate_rot13() (in module obfuscator), 10 deobfuscate_xor() (in module obfuscator), 11 O obfuscate() (in module obfuscator), 11 obfuscate_offset() (in module obfuscator), 11 obfuscate_rot13() (in module obfuscator), 11 obfuscate_xor() (in module obfuscator), 11 ObfuscatedFile (class in obfuscator.file), 9 obfuscator (module), 10 obfuscator.file (module), 9 R read() (obfuscator.file.obfuscatedfile method), 9 rot13() (in module obfuscator), 11 W write() (obfuscator.file.obfuscatedfile method), 10 17

streamio Documentation

streamio Documentation streamio Documentation Release 0.1.0.dev James Mills April 17, 2014 Contents 1 About 3 1.1 Examples................................................. 3 1.2 Requirements...............................................

More information

bottle-rest Release 0.5.0

bottle-rest Release 0.5.0 bottle-rest Release 0.5.0 February 18, 2017 Contents 1 API documentation 3 1.1 bottle_rest submodule.......................................... 3 2 What is it 5 2.1 REST in bottle..............................................

More information

Avpy Documentation. Release sydh

Avpy Documentation. Release sydh Avpy Documentation Release 0.1.3 sydh May 01, 2016 Contents 1 Overview 1 2 Getting Help 3 3 Issues 5 4 Changes 7 5 Contributions 9 6 Indices and tables 11 6.1 Examples.................................................

More information

Python Utils Documentation

Python Utils Documentation Python Utils Documentation Release 2.2.0 Rick van Hattem Sep 27, 2017 Contents 1 Useful Python Utils 3 1.1 Links................................................... 3 1.2 Requirements for installing:.......................................

More information

asttokens Documentation

asttokens Documentation asttokens Documentation Release 1.0.0 Grist Labs Feb 16, 2018 Contents 1 User Guide 3 1.1 Installation................................................ 3 1.2 Usage...................................................

More information

tld Documentation Release 0.9 Artur Barseghyan

tld Documentation Release 0.9 Artur Barseghyan tld Documentation Release 0.9 Artur Barseghyan Jun 13, 2018 Contents 1 Prerequisites 3 2 Documentation 5 3 Installation 7 4 Usage examples 9 5 Update the list of TLD names

More information

prompt Documentation Release Stefan Fischer

prompt Documentation Release Stefan Fischer prompt Documentation Release 0.4.1 Stefan Fischer Nov 14, 2017 Contents: 1 Examples 1 2 API 3 3 Indices and tables 7 Python Module Index 9 i ii CHAPTER 1 Examples 1. Ask for a floating point number: >>>

More information

python-quirc Documentation

python-quirc Documentation python-quirc Documentation Release 0.8.0 SvartalF May 27, 2012 CONTENTS 1 Install 3 1.1 Requirements............................................... 3 2 Usage 5 2.1 High-level API..............................................

More information

Python Utils Documentation

Python Utils Documentation Python Utils Documentation Release 2.2.0 Rick van Hattem Feb 12, 2018 Contents 1 Useful Python Utils 3 1.1 Links................................................... 3 1.2 Requirements for installing:.......................................

More information

PySoundFile Documentation Release 0.6.0

PySoundFile Documentation Release 0.6.0 PySoundFile Documentation Release 0.6.0 Bastian Bechtold, Matthias Geier January 30, 2015 Contents 1 Breaking Changes 1 2 Installation 1 3 Read/Write Functions 2 4 Block Processing 2 5 SoundFile Objects

More information

WordEmbeddingLoader Documentation

WordEmbeddingLoader Documentation WordEmbeddingLoader Documentation Release 0.2.0 Yuta Koreeda Aug 14, 2017 Modules 1 Issues with encoding 3 2 Development 5 3 CHANGELOG 7 3.1 v0.2.................................................... 7

More information

Django-CSP Documentation

Django-CSP Documentation Django-CSP Documentation Release 3.0 James Socol, Mozilla September 06, 2016 Contents 1 Installing django-csp 3 2 Configuring django-csp 5 2.1 Policy Settings..............................................

More information

pymonetdb Documentation

pymonetdb Documentation pymonetdb Documentation Release 1.0rc Gijs Molenaar June 14, 2016 Contents 1 The MonetDB MAPI and SQL client python API 3 1.1 Introduction............................................... 3 1.2 Installation................................................

More information

petfinder-api Documentation

petfinder-api Documentation petfinder-api Documentation Release 0.1 Greg Taylor Jun 01, 2017 Contents 1 Assorted Info 3 2 User Guide 5 2.1 Installation................................................ 5 2.1.1 Distribute & Pip.........................................

More information

PyOTP Documentation. Release PyOTP contributors

PyOTP Documentation. Release PyOTP contributors PyOTP Documentation Release 0.0.1 PyOTP contributors Jun 10, 2017 Contents 1 Quick overview of using One Time Passwords on your phone 3 2 Installation 5 3 Usage 7 3.1 Time-based OTPs............................................

More information

Python Overpass API Documentation

Python Overpass API Documentation Python Overpass API Documentation Release 0.4 PhiBo Apr 07, 2017 Contents 1 Introduction 3 1.1 Requirements............................................... 3 1.2 Installation................................................

More information

Pulp Python Support Documentation

Pulp Python Support Documentation Pulp Python Support Documentation Release 1.0.1 Pulp Project October 20, 2015 Contents 1 Release Notes 3 1.1 1.0 Release Notes............................................ 3 2 Administrator Documentation

More information

chatterbot-weather Documentation

chatterbot-weather Documentation chatterbot-weather Documentation Release 0.1.1 Gunther Cox Nov 23, 2018 Contents 1 chatterbot-weather 3 1.1 Installation................................................ 3 1.2 Example.................................................

More information

filemagic Documentation

filemagic Documentation filemagic Documentation Release 1.6 Aaron Iles February 04, 2014 Contents 1 Features 3 2 Table of Contents 5 2.1 Guide to using filemagic......................................... 5 2.2 Command Line Invocation........................................

More information

Nirvana Documentation

Nirvana Documentation Nirvana Documentation Release 0.0.1 Nick Wilson Nov 17, 2017 Contents 1 Overview 3 2 Installation 5 3 User Guide 7 4 Developer Guide 9 5 Sitemap 11 5.1 User Guide................................................

More information

edeposit.amqp.calibre Release 1.1.4

edeposit.amqp.calibre Release 1.1.4 edeposit.amqp.calibre Release 1.1.4 August 17, 2015 Contents 1 Installation 3 2 API 5 2.1 Data structures.............................................. 5 2.2 Calibre package.............................................

More information

python-ipfix Documentation

python-ipfix Documentation python-ipfix Documentation Release 0.9 Brian Trammell July 02, 2013 CONTENTS 1 module ipfix.types 3 2 module ipfix.ie 7 3 module ipfix.template 11 4 module ipfix.message 13 5 module ipfix.reader 19 6

More information

nptdms Documentation Release Adam Reeve

nptdms Documentation Release Adam Reeve nptdms Documentation Release 0.11.4 Adam Reeve Dec 01, 2017 Contents 1 Contents 3 1.1 Installation and Quick Start....................................... 3 1.2 Reading TDMS files...........................................

More information

imread Documentation Release 0.6 Luis Pedro Coelho

imread Documentation Release 0.6 Luis Pedro Coelho imread Documentation Release 0.6 Luis Pedro Coelho Sep 27, 2017 Contents 1 Citation 3 1.1 INSTALL................................................. 3 1.2 Bug Reports...............................................

More information

Poetaster. Release 0.1.1

Poetaster. Release 0.1.1 Poetaster Release 0.1.1 September 21, 2016 Contents 1 Overview 1 1.1 Installation................................................ 1 1.2 Documentation.............................................. 1 1.3

More information

pysharedutils Documentation

pysharedutils Documentation pysharedutils Documentation Release 0.5.0 Joel James August 07, 2017 Contents 1 pysharedutils 1 2 Indices and tables 13 i ii CHAPTER 1 pysharedutils pysharedutils is a convenient utility module which

More information

TPS Documentation. Release Thomas Roten

TPS Documentation. Release Thomas Roten TPS Documentation Release 0.1.0 Thomas Roten Sep 27, 2017 Contents 1 TPS: TargetProcess in Python! 3 2 Installation 5 3 Contributing 7 3.1 Types of Contributions..........................................

More information

msgpack Documentation

msgpack Documentation msgpack Documentation Release 0.4 Author 2017-11-04 Contents 1 API reference 3 Python Module Index 9 i ii MessagePack is a efficient format for inter language data exchange. Contents 1 2 Contents CHAPTER

More information

Python Finite State Machine. Release 0.1.5

Python Finite State Machine. Release 0.1.5 Python Finite State Machine Release 0.1.5 Sep 15, 2017 Contents 1 Overview 1 1.1 Installation................................................ 1 1.2 Documentation..............................................

More information

picrawler Documentation

picrawler Documentation picrawler Documentation Release 0.1.1 Ikuya Yamada October 07, 2013 CONTENTS 1 Installation 3 2 Getting Started 5 2.1 PiCloud Setup.............................................. 5 2.2 Basic Usage...............................................

More information

Scrapy-Redis Documentation

Scrapy-Redis Documentation Scrapy-Redis Documentation Release 0.7.0-dev Rolando Espinoza Nov 13, 2017 Contents 1 Scrapy-Redis 3 1.1 Features.................................................. 3 1.2 Requirements...............................................

More information

python-hologram-api Documentation

python-hologram-api Documentation python-hologram-api Documentation Release 0.1.6 Victor Yap Oct 27, 2017 Contents 1 python-hologram-api 3 1.1 Installation................................................ 3 1.2 Documentation..............................................

More information

FIQL Parser. Release 0.15

FIQL Parser. Release 0.15 FIQL Parser Release 0.15 July 02, 2016 Contents 1 What is FIQL? 3 2 How does FIQL work? 5 3 Installing fiql_parser 7 4 Using fiql_parser 9 4.1 Parsing a FIQL formatted string.....................................

More information

BaseHash Documentation

BaseHash Documentation BaseHash Documentation Release 1.0.6 Nathan Lucas November 01, 2016 Contents 1 The heart of BaseHash 3 2 Built-in BaseN 5 3 Extending to BaseX 7 4 Indices and tables 9 i ii BaseHash Documentation, Release

More information

Mutation Testing in Patterns Documentation

Mutation Testing in Patterns Documentation Mutation Testing in Patterns Documentation Release 1.0 Alexander Todorov Aug 18, 2016 Contents 1 Make sure your tools work 3 2 Make sure your tests work 5 3 Divide and conquer 7 4 Fail fast 9 5 Python:

More information

pybtsync Documentation

pybtsync Documentation pybtsync Documentation Release 0.0.1 Tiago Macarios December 04, 2014 Contents 1 Tutorial and Walkthrough 3 1.1 Getting Started.............................................. 3 2 pybtsync module classes

More information

yagmail Documentation

yagmail Documentation yagmail Documentation Release 0.10.189 kootenpv Feb 08, 2018 Contents 1 API Reference 3 1.1 Authentication.............................................. 3 1.2 SMTP Client...............................................

More information

pymodbustcp Documentation

pymodbustcp Documentation pymodbustcp Documentation Release 0.1.6 Loïc Lefebvre May 14, 2018 Contents 1 Quick start guide 1 1.1 Overview of the package......................................... 1 1.2 Package setup..............................................

More information

linkgrabber Documentation

linkgrabber Documentation linkgrabber Documentation Release 0.2.6 Eric Bower Jun 08, 2017 Contents 1 Install 3 2 Tutorial 5 2.1 Quickie.................................................. 5 2.2 Documentation..............................................

More information

Python Project Example Documentation

Python Project Example Documentation Python Project Example Documentation Release 0.1.0 Neil Stoddard Mar 22, 2017 Contents 1 Neilvana Example 3 1.1 Features.................................................. 3 1.2 Credits..................................................

More information

mprpc Documentation Release Studio Ousia

mprpc Documentation Release Studio Ousia mprpc Documentation Release 0.1.13 Studio Ousia Apr 05, 2017 Contents 1 Introduction 3 1.1 Installation................................................ 3 1.2 Examples.................................................

More information

gpib-ctypes Documentation

gpib-ctypes Documentation gpib-ctypes Documentation Release 0.1.0dev Tomislav Ivek Apr 08, 2018 Contents 1 gpib-ctypes 3 1.1 Features.................................................. 3 1.2 Testing..................................................

More information

python-samplerate Documentation

python-samplerate Documentation python-samplerate Documentation Release 0.1.0+4.ga9b5d2a Tino Wagner February 24, 2017 Contents 1 Installation 3 2 Usage 5 3 See also 7 4 License 9 5 API documentation 11 5.1 samplerate module documentation....................................

More information

semidbm Documentation

semidbm Documentation semidbm Documentation Release 0.4.0 James Saryerwinnie Jr September 04, 2013 CONTENTS i ii semidbm is a pure python implementation of a dbm, which is essentially a persistent key value store. It allows

More information

thingspeak Documentation

thingspeak Documentation thingspeak Documentation Release 0.4.1 Mikołaj Chwalisz May 17, 2018 Contents 1 Installation 3 1.1 Pip Install thingspeak API........................................ 3 1.2 Get the Source Code...........................................

More information

NiFpga Example Documentation

NiFpga Example Documentation NiFpga Example Documentation Release 18.0.0 National Instruments Apr 03, 2018 User Documentation 1 About 3 2 Bugs / Feature Requests 5 2.1 Information to Include When Asking For Help.............................

More information

PyDREAM Documentation

PyDREAM Documentation PyDREAM Documentation Release 1.0 Erin Shockley Feb 24, 2018 Contents 1 Installing PyDREAM 3 1.1 Requirements............................................... 3 2 pydream package 5 2.1 pydream.dream module.........................................

More information

Fault Tolerance & Reliability CDA Chapter 2 Additional Interesting Codes

Fault Tolerance & Reliability CDA Chapter 2 Additional Interesting Codes Fault Tolerance & Reliability CDA 5140 Chapter 2 Additional Interesting Codes m-out-of-n codes - each binary code word has m ones in a length n non-systematic codeword - used for unidirectional errors

More information

PyCPUID Documentation

PyCPUID Documentation PyCPUID Documentation Release 0.5 Bram de Greve March 13, 2016 Contents 1 Introduction 3 1.1 Installation.............................................. 3 1.2 Source Code.............................................

More information

AtomGen Documentation

AtomGen Documentation AtomGen Documentation Release 0.1 Erasmose Sep 27, 2017 Contents 1 Installation 3 2 Atomgen 0.1.9 5 3 Manual image validation 11 4 Indices and tables 13 5 Author 15 Python Module Index 17 i ii AtomGen

More information

Redis Timeseries Documentation

Redis Timeseries Documentation Redis Timeseries Documentation Release 0.1.8 Ryan Anguiano Jul 26, 2017 Contents 1 Redis Timeseries 3 1.1 Install................................................... 3 1.2 Usage...................................................

More information

grib_api.h File Reference

grib_api.h File Reference grib_api.h File Reference Copyright 2005-2013 ECMWF. More... Defines #define GRIB_API_VERSION (GRIB_API_MAJOR_VERSION*10000+G RIB_API_MINOR_VERSION*100+GRIB_API_REVISION_VERSI ON) #define GRIB_SECTION_PRODUCT

More information

python-lz4 Documentation

python-lz4 Documentation python-lz4 Documentation Release 2.0.2.dev12+gf16962a Jonathan Underwood Jul 31, 2018 Contents 1 Contents 1 1.1 Introduction............................................... 1 1.2 Install...................................................

More information

pyvcd Documentation Release Peter Grayson and Steven Sprouse

pyvcd Documentation Release Peter Grayson and Steven Sprouse pyvcd Documentation Release Peter Grayson and Steven Sprouse Nov 08, 2017 Contents 1 vcd 3 2 vcd.writer 5 3 vcd.gtkw 9 4 PyVCD 15 4.1 Quick Start................................................ 15 5 Indices

More information

Ensure Documentation. Release Andrey Kislyuk

Ensure Documentation. Release Andrey Kislyuk Ensure Documentation Release 0.0.1 Andrey Kislyuk Nov 06, 2018 Contents 1 Installation 3 2 Synopsis 5 2.1 Notes................................................... 5 2.2 Raising custom exceptions........................................

More information

django-embed-video Documentation

django-embed-video Documentation django-embed-video Documentation Release 1.1.2-stable Juda Kaleta Nov 10, 2017 Contents 1 Installation & Setup 3 1.1 Installation................................................ 3 1.2 Setup...................................................

More information

YouTube API Wrapper Documentation

YouTube API Wrapper Documentation YouTube API Wrapper Documentation Release 0.1 Alessandro De Noia (Global Radio) June 09, 2016 Contents 1 Installation 3 1.1 Install the library............................................. 3 2 Basic usage

More information

python-docker-machine Documentation

python-docker-machine Documentation python-docker-machine Documentation Release 0.2.4 Gijs Molenaar Aug 25, 2017 Contents 1 Introduction 3 2 installation 5 3 Usage 7 4 Indices and tables 11 Python Module Index 13 i ii python-docker-machine

More information

pykafka Release dev.2

pykafka Release dev.2 pykafka Release 2.8.0-dev.2 Apr 19, 2018 Contents 1 Getting Started 3 2 Using the librdkafka extension 5 3 Operational Tools 7 4 PyKafka or kafka-python? 9 5 Contributing 11 6 Support 13 i ii pykafka,

More information

VComm Signal File Specification

VComm Signal File Specification VComm Signal File Specification SimPhonics, Inc. 3226 North Falkenburg Road Tampa, Florida 33619 Voice (877) 205-4901 X102 FAX (813) 623-5119 CAGE: 0L4C8 Email: info@simphonics.com Table of Contents 1

More information

MTAT Applied Cryptography

MTAT Applied Cryptography MTAT.07.017 Applied Cryptography Introduction, Randomness, One-Time Pad, Stream Ciphers University of Tartu Spring 2015 1 / 33 Who am I? Arnis Paršovs MSc in Cyber Security Tallinn University of Technology,

More information

OstrichLib Documentation

OstrichLib Documentation OstrichLib Documentation Release 0.0.0 Itamar Ostricher May 10, 2016 Contents 1 utils package 3 1.1 collections utils module......................................... 3 1.2 path utils module.............................................

More information

pymangal Documentation

pymangal Documentation pymangal Documentation Release 0.1 Timothée Poisot July 15, 2015 Contents 1 User guide 3 1.1 pymangal 101.............................................. 3 1.2 Filtering of resources...........................................

More information

sqlalchemy-redshift Documentation

sqlalchemy-redshift Documentation sqlalchemy-redshift Documentation Release 0.7.2.dev0 Matt George Jan 17, 2018 Contents 1 Installation 3 2 Usage 5 3 Releasing 7 4 0.7.2 (unreleased) 9 5 0.7.1 (2018-01-17) 11 6 0.7.0 (2017-10-03) 13 7

More information

django-mongonaut Documentation

django-mongonaut Documentation django-mongonaut Documentation Release 0.2.20 Daniel Greenfeld Sep 27, 2017 Contents 1 Installation 3 1.1 Normal Installation............................................ 3 1.2 Static Media Installation.........................................

More information

backupchecker Documentation

backupchecker Documentation backupchecker Documentation Release 1.9 Carl Chenet Apr 13, 2017 Contents 1 Guide 3 1.1 How to install Backup Checker..................................... 3 1.2 Configuration

More information

PyAX-12 Documentation

PyAX-12 Documentation PyAX-12 Documentation Release 0.4.dev6 Jérémie Decock September 04, 2015 Contents 1 Introduction 3 1.1 Dependencies............................................... 3 1.2 Installation................................................

More information

Zero Buffer Documentation

Zero Buffer Documentation Zero Buffer Documentation Release Alex Gaynor and David Reid March 02, 2017 Contents 1 Installation 3 2 Contents 5 2.1 API Reference.............................................. 5 i ii Zero Buffer Documentation,

More information

Android Obfuscation and Deobfuscation. Group 11

Android Obfuscation and Deobfuscation. Group 11 Android Obfuscation and Deobfuscation Group 11 Password Diary App Overview App - Raj Obfuscation Cam and Jack Deobfuscation Adi and Shon Overview - Concept A password manager that lets you decide whether

More information

Azure SDK for Python Documentation

Azure SDK for Python Documentation Azure SDK for Python Documentation Release 0.37.0 Microsoft Oct 05, 2017 Contents 1 Installation: 1 2 Documentation: 3 3 Features: 5 4 System Requirements: 7 5 Need Help?: 9 6 Contributing: 11 6.1 Contribute

More information

MTAT Applied Cryptography

MTAT Applied Cryptography MTAT.07.017 Applied Cryptography Introduction, Randomness, One-Time Pad, Stream Ciphers University of Tartu Spring 2017 1 / 34 Who am I? Arnis Paršovs MSc in Cyber Security Tallinn University of Technology,

More information

Python Working with files. May 4, 2017

Python Working with files. May 4, 2017 Python Working with files May 4, 2017 So far, everything we have done in Python was using in-memory operations. After closing the Python interpreter or after the script was done, all our input and output

More information

goose3 Documentation Release maintainers

goose3 Documentation Release maintainers goose3 Documentation Release 3.1.6 maintainers Oct 20, 2018 Contents: 1 Goose3 API 1 1.1 Goose3.................................................. 1 1.2 Configuration...............................................

More information

AxiBot Documentation. Release dev. Scott Torborg

AxiBot Documentation. Release dev. Scott Torborg AxiBot Documentation Release 0.0.3.dev Scott Torborg February 26, 2017 Contents 1 Contents 3 1.1 Quick Start................................................ 3 1.2 Command Line Usage..........................................

More information

e24paymentpipe Documentation

e24paymentpipe Documentation e24paymentpipe Documentation Release 1.2.0 Burhan Khalid Oct 30, 2017 Contents 1 e24paymentpipe 3 1.1 Features.................................................. 3 1.2 Todo...................................................

More information

Frontier Documentation

Frontier Documentation Frontier Documentation Release 0.1.3-dev Sam Nicholls August 14, 2014 Contents 1 Frontier 3 1.1 Requirements............................................... 3 1.2 Installation................................................

More information

I2C LCD Documentation

I2C LCD Documentation I2C LCD Documentation Release 0.1.0 Peter Landoll Sep 04, 2017 Contents 1 I2C LCD 3 1.1 Features.................................................. 3 1.2 Credits..................................................

More information

Stepic Plugins Documentation

Stepic Plugins Documentation Stepic Plugins Documentation Release 0 Stepic Team May 06, 2015 Contents 1 Introduction 3 1.1 Quiz Architecture............................................ 3 1.2 Backend Overview............................................

More information

Ertza Documentation. Release Benoit Rapidel, ExMachina

Ertza Documentation. Release Benoit Rapidel, ExMachina Ertza Documentation Release 0.1.0 Benoit Rapidel, ExMachina October 05, 2016 Contents 1 Configuration files 3 1.1 Configuration types........................................... 3 1.2 Base configuration

More information

edeposit.amqp.antivirus Release 1.0.1

edeposit.amqp.antivirus Release 1.0.1 edeposit.amqp.antivirus Release 1.0.1 February 05, 2015 Contents 1 Installation 3 1.1 Initialization............................................... 3 2 Usage 5 3 Content 7 3.1 Standalone script.............................................

More information

Roman Numeral Converter Documentation

Roman Numeral Converter Documentation Roman Numeral Converter Documentation Release 0.1.0 Adrian Cruz October 07, 2014 Contents 1 Roman Numeral Converter 3 1.1 Features.................................................. 3 2 Installation 5

More information

Unicum Documentation. Release alpha. Deutsche Postbank AG

Unicum Documentation. Release alpha. Deutsche Postbank AG Unicum Documentation Release alpha Deutsche Postbank AG Nov 21, 2017 Contents 1 About 1 1.1 unicum.................................................. 1 2 Getting started 3 2.1 Installing.................................................

More information

Integer Representation

Integer Representation Integer Representation Announcements assign0 due tonight assign1 out tomorrow Labs start this week SCPD Note on ofce hours on Piazza Will get an email tonight about labs Goals for Today Introduction to

More information

Halting Measures and Termination Arguments

Halting Measures and Termination Arguments Halting Measures and Termination Arguments CS 5010 Program Design Paradigms Bootcamp Lesson 8.2 Mitchell Wand, 2012-2015 This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International

More information

Topic 6: Partial Application, Function Composition and Type Classes

Topic 6: Partial Application, Function Composition and Type Classes Topic 6: Partial Application, Function Composition and Type Classes Recommended Exercises and Readings From Haskell: The craft of functional programming (3 rd Ed.) Exercises: 11.11, 11.12 12.30, 12.31,

More information

Topic 6: Partial Application, Function Composition and Type Classes

Topic 6: Partial Application, Function Composition and Type Classes Topic 6: Partial Application, Function Composition and Type Classes 1 Recommended Exercises and Readings From Haskell: The craft of functional programming (3 rd Ed.) Exercises: 11.11, 11.12 12.30, 12.31,

More information

ZeroVM Package Manager Documentation

ZeroVM Package Manager Documentation ZeroVM Package Manager Documentation Release 0.2.1 ZeroVM Team October 14, 2014 Contents 1 Introduction 3 1.1 Creating a ZeroVM Application..................................... 3 2 ZeroCloud Authentication

More information

fixnc Documentation Release Nikolay Koldunov

fixnc Documentation Release Nikolay Koldunov fixnc Documentation Release 0.0.1 Nikolay Koldunov Sep 23, 2016 Contents 1 Quick start: 3 2 Documentation 5 2.1 Installation................................................ 5 2.1.1 Required dependencies.....................................

More information

Cpr E 281 FINAL PROJECT ELECTRICAL AND COMPUTER ENGINEERING IOWA STATE UNIVERSITY. FINAL Project. Objectives. Project Selection

Cpr E 281 FINAL PROJECT ELECTRICAL AND COMPUTER ENGINEERING IOWA STATE UNIVERSITY. FINAL Project. Objectives. Project Selection Objectives The main objective of the final project is to teach you how to put together all of the class material that you have learned so far in order to program the Altera DE2 board to carry out an independent

More information

Thrift specification - Remote Procedure Call

Thrift specification - Remote Procedure Call Erik van Oosten Revision History Revision 1.0 2016-09-27 EVO Initial version v1.1, 2016-10-05: Corrected integer type names. Small changes to section headers. Table of Contents 1.

More information

boost Documentation Release 0.1 Carl Chenet

boost Documentation Release 0.1 Carl Chenet boost Documentation Release 0.1 Carl Chenet May 06, 2017 Contents 1 Guide 3 1.1 How to install Boost........................................... 3 1.2 Configure Boost.............................................

More information

PySoundFile Documentation Release g8f1fecc

PySoundFile Documentation Release g8f1fecc PySoundFile Documentation Release 0.9.0-24-g8f1fecc Bastian Bechtold, Matthias Geier Aug 23, 2017 Contents 1 Breaking Changes 1 2 Installation 1 3 Read/Write Functions 2 4 Block Processing 2 5 SoundFile

More information

sainsmart Documentation

sainsmart Documentation sainsmart Documentation Release 0.3.1 Victor Yap Jun 21, 2017 Contents 1 sainsmart 3 1.1 Install................................................... 3 1.2 Usage...................................................

More information

Tissu for Fabric Documentation

Tissu for Fabric Documentation Tissu for Fabric Documentation Release 0.1-alpha Thierry Stiegler July 17, 2014 Contents 1 About 1 1.1 Installation................................................ 1 1.2 Quickstart................................................

More information

Platypus Analytics Documentation

Platypus Analytics Documentation Platypus Analytics Documentation Release 0.1.0 Platypus LLC December 24, 2015 Contents 1 platypus package 3 1.1 Subpackages............................................... 3 1.2 Module contents.............................................

More information

The second statement selects character number 1 from and assigns it to.

The second statement selects character number 1 from and assigns it to. Chapter 8 Strings 8.1 A string is a sequence A string is a sequence of characters. You can access the characters one at a time with the bracket operator: The second statement selects character number 1

More information

ICC. EtherNet/IP Client Driver Manual INDUSTRIAL CONTROL COMMUNICATIONS, INC Industrial Control Communications, Inc.

ICC. EtherNet/IP Client Driver Manual INDUSTRIAL CONTROL COMMUNICATIONS, INC Industrial Control Communications, Inc. INDUSTRIAL CONTROL COMMUNICATIONS, INC. EtherNet/IP Client Driver Manual October 30, 2014 2014 Industrial Control Communications, Inc. TABLE OF CONTENTS 1 EtherNet/IP Client... 2 1.1 Overview... 2 1.2

More information

json2xls Documentation

json2xls Documentation json2xls Documentation Release 0.1.3c axiaoxin Aug 10, 2017 Contents 1 3 2 5 3 API 9 i ii json2xls Documentation, Release 0.1.3c jsonexceljsonexceljson jsonjsonurljsonjson Contents 1 json2xls Documentation,

More information

pytest-benchmark Release 2.5.0

pytest-benchmark Release 2.5.0 pytest-benchmark Release 2.5.0 September 13, 2015 Contents 1 Overview 3 1.1 pytest-benchmark............................................ 3 2 Installation 7 3 Usage 9 4 Reference 11 4.1 pytest_benchmark............................................

More information

ds1054z Documentation

ds1054z Documentation ds1054z Documentation Release v0.3.dev Philipp Klaus Aug 15, 2017 Contents 1 Installation 3 2 Using the Command Line Tool 5 2.1 Global Options.............................................. 6 2.2 Saving

More information