streamio Documentation

Size: px
Start display at page:

Download "streamio Documentation"

Transcription

1 streamio Documentation Release dev James Mills April 17, 2014

2

3 Contents 1 About Examples Requirements Installation Supported Platforms Documentation API Documentation TODO Road Map Changes Indices and tables 11 Python Module Index 13 i

4 ii

5 Release dev Date February 26, 2014 Contents 1

6 2 Contents

7 CHAPTER 1 About streamio is a simple library of functions designed to read, write and sort large files using iterators so that the operations will successfully complete on systems with limited RAM. This library has been used extensively at Griffith University whilst developing the TerraNova Climate Change and Adaptation Visualization tool(s) and processing large volumes of data. streamio is written in Python and has extensive documentation and unit tests with 100% coverage. See the API for a list of the available functions. Visit the Project Website Read the Docs Download it from the Downloads Page 1.1 Examples Read a large text file iteratively: from streamio import stream f = stream("large_file.txt") Read a large CSV file iteratively: from streamio import jsonstream f = stream("large_file.json") Merge-sort a large JSON file with the key itemgetter("value"): from operator import itemgetter from streamio import mergesort f = mergesort("large_file.json", key=itemgetter("value")) 1.2 Requirements funcy py streamio also comes with documentation and a full comprehensive unit test suite which require the following: To build the docs: 3

8 sphinx To run the unit tests: pytest 1.3 Installation The simplest and recommended way to install streamio is with pip. You may install the latest stable release from PyPI with pip: > pip install streamio If you do not have pip, you may use easy_install: > easy_install streamio Alternatively, you may download the source package from the PyPI Page or the Downloads page on the Project Website; extract it and install using: > python setup.py install You can also install the latest-development version by using pip or easy_install: > pip install streamio==dev or: > easy_install streamio==dev For further information see the streamio documentation. 1.4 Supported Platforms Linux, FreeBSD, Mac OS X Python 2.7 PyPy 2.2 Windows: We acknowledge that Windows exists and make reasonable efforts to maintain compatibility. Unfortunately we cannot guarantee support at this time. 4 Chapter 1. About

9 CHAPTER 2 Documentation 2.1 API Documentation streamio streamio package Submodules streamio.sort module sort streamio.sort.merge(*iterables, **kwargs) Take a list of ordered iterables; return as a single ordered generator. key function, for each item return key value Directly borrowed from: streamio.sort.mergesort(filename, output=none, key=none, maxitems= , progress=true) Given an input file sort it by performing a merge sort on disk. filename (str or py._path.local.localpath) Either a filename as a str or a py._path.local.localpath instance. output (str or py._path.local.localpath or None) An optional output filename as a str or a py._path.local.localpath instance. key (function or None) An optional key to sort the data on. maxitems (int) Maximum number of items to hold in memory at a time. progress (bool) Whether or not to display a progress bar This uses py._path.local.localpath.make_numbered_dir to create temporry scratch space to work with when splitting the input file into sorted chunks. The mergesort is processed iteratively in-memory using the ~merge function which is almost identical to ~heapq.merge but adds in the support of an optional key function. 5

10 streamio.stat module stat streamio.stat.minmax(xs) Return the min and max values for the given iterable xs (Any iterable of single numerical values.) An iterable of values This function returns both the min and max of the given iterable by computing both at once and iterating/consuming the iterable once. streamio.stream module stream streamio.stream.stream(filename, encoding= utf-8, skipblank=true, strip=true, stripchars= \r\n\t ) Stream every line in the given file. encoding (str or None) A str indicating the charset/encoding to use. filename (str, py._path.local.localpath or file.) A str filename, A py._path.local.localpath instance or open file instnace. skipblank (bool) Whehter to skip blank lines (sometimes undesirable) strip (bool) Whehter to strip lines of surrounding whitespace (sometimes undesirable) stripchars (list, tuple or str) An iterable of characters to strip from the surrounding line. line.strip(...) is used. Each line in the file is read, stripped of surrounding whitespace and returned iteratively. Blank lines are ignored. If they keyword argument encoding is provided and is not None each line in the input strema will be decoded using the given encoding, if None will disable unicode decoding. streamio.stream.csvstream(filename, encoding= utf-8, stripchars= \r\n ) Stream every line in the given file interpreting each line as CSV. filename (str, py._path.local.localpath or file.) A str filename, A py._path.local.localpath instance or open file instnace. encoding (str) A str indicating the charset/encoding to use. stripchars (list, tuple or str) An iterable of characters to strip from the surrounding line. line.strip(...) is used. This is a wrapper around stream where the stream is treated as CSV. streamio.stream.csvdictstream(filename, encoding= utf-8, fields=none, stripchars= \r\n ) Stream every line in the given file interpreting each line as a dictionary of fields to items. filename (str, py._path.local.localpath or file.) A str filename, A py._path.local.localpath instance or open file instnace. encoding (str) A str indicating the charset/encoding to use. 6 Chapter 2. Documentation

11 stripchars (list, tuple or str) An iterable of characters to strip from the surrounding line. line.strip(...) is used. This is a wrapper around csvstream where the stream is treated as dict of field(s) to item(s). streamio.stream.jsonstream(filename, encoding= utf-8 ) Stream every line in the given file interpreting each line as JSON. filename (str, py._path.local.localpath or file.) A str filename, A py._path.local.localpath instance or open file instnace. encoding (str) A str indicating the charset/encoding to use. stripchars (list, tuple or str) An iterable of characters to strip from the surrounding line. line.strip(...) is used. This is a wrappedaround stream except that it wraps each line in a dumps call essentially treating each line as a piece of valid JSON. streamio.stream.compress(iterable, level=9, encoding= utf-8 ) Compress the given iterable of bytes using zlib compressin iterable (An iterable of bytes (If str will be encoded)) An iterable of bytes to compress using zlib (ZIP) level (int (Default: 9)) An optional Compression Level encoding (str (Default: utf-8)) An optional encoding to use when dealing with an iterable of str Returns An iterable compressed with zlib Return type iterable stream of bytes streamio.version module Version Module So we only have to maintain version information in one place! Module contents streamio - reading, writing and sorting large files. streamio is a simple library of functions designed to read, write and sort large files using iterators so that the operations will successfully complete on systems with limited RAM. copyright CopyRight (C) 2013 by James Mills streamio.minmax(xs) Return the min and max values for the given iterable xs (Any iterable of single numerical values.) An iterable of values This function returns both the min and max of the given iterable by computing both at once and iterating/consuming the iterable once. streamio.merge(*iterables, **kwargs) Take a list of ordered iterables; return as a single ordered generator API Documentation 7

12 key function, for each item return key value Directly borrowed from: streamio.mergesort(filename, output=none, key=none, maxitems= , progress=true) Given an input file sort it by performing a merge sort on disk. filename (str or py._path.local.localpath) Either a filename as a str or a py._path.local.localpath instance. output (str or py._path.local.localpath or None) An optional output filename as a str or a py._path.local.localpath instance. key (function or None) An optional key to sort the data on. maxitems (int) Maximum number of items to hold in memory at a time. progress (bool) Whether or not to display a progress bar This uses py._path.local.localpath.make_numbered_dir to create temporry scratch space to work with when splitting the input file into sorted chunks. The mergesort is processed iteratively in-memory using the ~merge function which is almost identical to ~heapq.merge but adds in the support of an optional key function. streamio.stream(filename, encoding= utf-8, skipblank=true, strip=true, stripchars= \r\n\t ) Stream every line in the given file. encoding (str or None) A str indicating the charset/encoding to use. filename (str, py._path.local.localpath or file.) A str filename, A py._path.local.localpath instance or open file instnace. skipblank (bool) Whehter to skip blank lines (sometimes undesirable) strip (bool) Whehter to strip lines of surrounding whitespace (sometimes undesirable) stripchars (list, tuple or str) An iterable of characters to strip from the surrounding line. line.strip(...) is used. Each line in the file is read, stripped of surrounding whitespace and returned iteratively. Blank lines are ignored. If they keyword argument encoding is provided and is not None each line in the input strema will be decoded using the given encoding, if None will disable unicode decoding. streamio.csvstream(filename, encoding= utf-8, stripchars= \r\n ) Stream every line in the given file interpreting each line as CSV. filename (str, py._path.local.localpath or file.) A str filename, A py._path.local.localpath instance or open file instnace. encoding (str) A str indicating the charset/encoding to use. stripchars (list, tuple or str) An iterable of characters to strip from the surrounding line. line.strip(...) is used. This is a wrapper around stream where the stream is treated as CSV. streamio.jsonstream(filename, encoding= utf-8 ) Stream every line in the given file interpreting each line as JSON. 8 Chapter 2. Documentation

13 filename (str, py._path.local.localpath or file.) A str filename, A py._path.local.localpath instance or open file instnace. encoding (str) A str indicating the charset/encoding to use. stripchars (list, tuple or str) An iterable of characters to strip from the surrounding line. line.strip(...) is used. This is a wrappedaround stream except that it wraps each line in a dumps call essentially treating each line as a piece of valid JSON. streamio.csvdictstream(filename, encoding= utf-8, fields=none, stripchars= \r\n ) Stream every line in the given file interpreting each line as a dictionary of fields to items. filename (str, py._path.local.localpath or file.) A str filename, A py._path.local.localpath instance or open file instnace. encoding (str) A str indicating the charset/encoding to use. stripchars (list, tuple or str) An iterable of characters to strip from the surrounding line. line.strip(...) is used. This is a wrapper around csvstream where the stream is treated as dict of field(s) to item(s). streamio.compress(iterable, level=9, encoding= utf-8 ) Compress the given iterable of bytes using zlib compressin iterable (An iterable of bytes (If str will be encoded)) An iterable of bytes to compress using zlib (ZIP) level (int (Default: 9)) An optional Compression Level encoding (str (Default: utf-8)) An optional encoding to use when dealing with an iterable of str Returns An iterable compressed with zlib Return type iterable stream of bytes 2.2 TODO Nothing planned at this stage. See also: Road Map No immediate future plans at this stage... Feel free to Create an Issue TODO 9

14 2.4 Changes streamio dev streamio ( ) Bumped py > streamio ( ) Fixed Unicode support for csvstream adding unicodecsv as a new dependency streamio ( ) Forgot to include required README.rst and CHANGES.rst streamio ( ) Don t include fabfile and tests (for now) in the resulting egg Make mergesort show progress optionally via progress=true streamio ( ) Added encoding parameter support to *stream() function(s) streamio ( ) Added streamio.stream.compress function for compressing an iterable using zlib compression. Loosended requirements on py and progress streamio ( ) Fixed broken link to the API Docs streamio ( ) Added some examples Fixed a few typos streamio ( ) Initial Public Release 10 Chapter 2. Documentation

15 CHAPTER 3 Indices and tables genindex modindex search 11

16 12 Chapter 3. Indices and tables

17 Python Module Index s streamio, 7 streamio.sort, 5 streamio.stat, 6 streamio.stream, 6 streamio.version, 7 13

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

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

solrq Documentation Release Michał Jaworski

solrq Documentation Release Michał Jaworski solrq Documentation Release 1.1.1 Michał Jaworski Mar 27, 2017 Contents 1 solrq 1 2 usage 3 2.1 quick reference.............................................. 4 3 contributing 7 4 testing 9 5 Detailed

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

Release Clearcode < and associates (see AUTHORS)

Release Clearcode <  and associates (see AUTHORS) pytest s aucedocumentation Release 0.3.3 Clearcode and associates (see AUTHORS) July 14, 2014 Contents 1 Contents 3 1.1 Usage................................................... 3

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

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

maya-cmds-help Documentation

maya-cmds-help Documentation maya-cmds-help Documentation Release Andres Weber May 28, 2017 Contents 1 1.1 Synopsis 3 1.1 1.1.1 Features.............................................. 3 2 1.2 Installation 5 2.1 1.2.1 Windows, etc............................................

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

obfuscator Documentation

obfuscator Documentation obfuscator Documentation Release 1.1.5 Timothy McFadden July 17, 2015 Contents 1 Introduction 3 2 Install 5 3 Usage 7 4 Auto Generated API Documentation 9 4.1 obfuscator.file..............................................

More information

Pypeline Documentation

Pypeline Documentation Pypeline Documentation Release 0.2 Kyle Corbitt May 09, 2014 Contents 1 Contents 3 1.1 Installation................................................ 3 1.2 Quick Start................................................

More information

doit Documentation Release

doit Documentation Release doit Documentation Release 0.30.3 Jan Vlčinský Oct 26, 2017 Table of Contents 1 tasks => {doit + shell + python} => done 1 1.1 Use Cases................................................. 1 1.2 Quick Start................................................

More information

tappy Documentation Release 2.5 Matt Layman and contributors

tappy Documentation Release 2.5 Matt Layman and contributors tappy Documentation Release 2.5 Matt Layman and contributors Sep 15, 2018 Contents 1 Installation 3 2 Documentation 5 2.1 TAP Producers.............................................. 5 2.2 TAP Consumers.............................................

More information

pybdg Documentation Release 1.0.dev2 Outernet Inc

pybdg Documentation Release 1.0.dev2 Outernet Inc pybdg Documentation Release 1.0.dev2 Outernet Inc April 17, 2016 Contents 1 Source code 3 2 License 5 3 Documentation 7 Python Module Index 15 i ii Bitloads, or bit payloads, are compact payloads containing

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

Dogeon Documentation. Release Lin Ju

Dogeon Documentation. Release Lin Ju Dogeon Documentation Release 1.0.0 Lin Ju June 07, 2014 Contents 1 Indices and tables 7 Python Module Index 9 i ii DSON (Doge Serialized Object Notation) is a data-interchange format,

More information

Privacy and Security in Online Social Networks Department of Computer Science and Engineering Indian Institute of Technology, Madras

Privacy and Security in Online Social Networks Department of Computer Science and Engineering Indian Institute of Technology, Madras Privacy and Security in Online Social Networks Department of Computer Science and Engineering Indian Institute of Technology, Madras Lecture 12 Tutorial 3 Part 1 Twitter API In this tutorial, we will learn

More information

Release Manu Phatak

Release Manu Phatak cache r equestsdocumentation Release 4.0.0 Manu Phatak December 26, 2015 Contents 1 Contents: 1 1.1 cache_requests.............................................. 1 1.2 Installation................................................

More information

redis-lua Documentation

redis-lua Documentation redis-lua Documentation Release 2.0.8 Julien Kauffmann October 12, 2016 Contents 1 Quick start 3 1.1 Step-by-step analysis........................................... 3 2 What s the magic at play here?

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

databuild Documentation

databuild Documentation databuild Documentation Release 0.0.10 Flavio Curella May 15, 2015 Contents 1 Contents 3 1.1 Installation................................................ 3 1.2 Quickstart................................................

More information

pyprika Documentation

pyprika Documentation pyprika Documentation Release 1.0.0 Paul Kilgo February 16, 2014 Contents i ii Pyprika is a Python library for parsing and managing recipes. Its major features are: Support for recognizing a human-friendly

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

Gearthonic Documentation

Gearthonic Documentation Gearthonic Documentation Release 0.2.0 Timo Steidle August 11, 2016 Contents 1 Quickstart 3 2 Contents: 5 2.1 Usage................................................... 5 2.2 API....................................................

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

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

freeze Documentation Release 0.7.0alpha Jean-Louis Fuchs

freeze Documentation Release 0.7.0alpha Jean-Louis Fuchs freeze Documentation Release 0.7.0alpha Jean-Louis Fuchs April 10, 2014 Contents i ii freeze.freeze(data_structure) Freeze tries to convert any data-structure in a hierarchy of tuples. freeze.object_to_items(data_structure)

More information

Python wrapper for Viscosity.app Documentation

Python wrapper for Viscosity.app Documentation Python wrapper for Viscosity.app Documentation Release Paul Kremer March 08, 2014 Contents 1 Python wrapper for Viscosity.app 3 1.1 Features.................................................. 3 2 Installation

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

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

driver Documentation

driver Documentation driver2200087 Documentation Release 0.6 Chintalagiri Shashank August 19, 2015 Contents 1 driver2200087 1 1.1 Installation................................................ 1 1.2 Usage...................................................

More information

fastparquet Documentation

fastparquet Documentation fastparquet Documentation Release 0.1.5 Continuum Analytics Jul 12, 2018 Contents 1 Introduction 3 2 Highlights 5 3 Caveats, Known Issues 7 4 Relation to Other Projects 9 5 Index 11 5.1 Installation................................................

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

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

Clique. Release 1.3.1

Clique. Release 1.3.1 Clique Release 1.3.1 Jul 23, 2017 Contents 1 Guide 3 1.1 Introduction............................................... 3 1.2 Installation................................................ 4 1.3 Tutorial..................................................

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

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

DNS Zone Test Documentation

DNS Zone Test Documentation DNS Zone Test Documentation Release 1.1.3 Maarten Diemel Dec 02, 2017 Contents 1 DNS Zone Test 3 1.1 Features.................................................. 3 1.2 Credits..................................................

More information

nidm Documentation Release 1.0 NIDASH Working Group

nidm Documentation Release 1.0 NIDASH Working Group nidm Documentation Release 1.0 NIDASH Working Group November 05, 2015 Contents 1 Why do I want to use this? 3 2 Under Development 5 2.1 Installation................................................ 5 2.2

More information

Python STL. Release dev

Python STL. Release dev Python STL Release dev Nov 05, 2017 Contents 1 Reading STL Files 3 2 Writing STL Files 5 3 Data Types 7 4 Indices and tables 9 i ii Python STL, Release dev stl is a Python library for reading and writing

More information

Piexif Documentation. Release 1.0.X. hmatoba

Piexif Documentation. Release 1.0.X. hmatoba Piexif Documentation Release 1.0.X hmatoba Oct 06, 2017 Contents 1 About Piexif 3 1.1 What for?................................................. 3 1.2 How to Use................................................

More information

pyautocad Documentation

pyautocad Documentation pyautocad Documentation Release 0.1.2 Roman Haritonov December 30, 2012 CONTENTS i ii pyautocad - library aimed to simplify writing ActiveX Automation scripts for AutoCAD with Python CONTENTS 1 2 CONTENTS

More information

SQLAlchemy-ORM-tree Documentation

SQLAlchemy-ORM-tree Documentation SQLAlchemy-ORM-tree Documentation Release 0.2.0 RokuSigma Inc. and contributors July 05, 2016 Contents 1 Installation 3 2 API 5 2.1 Managers................................................. 5 2.2 ORM

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

BanzaiDB Documentation

BanzaiDB Documentation BanzaiDB Documentation Release 0.3.0 Mitchell Stanton-Cook Jul 19, 2017 Contents 1 BanzaiDB documentation contents 3 2 Indices and tables 11 i ii BanzaiDB is a tool for pairing Microbial Genomics Next

More information

Archan. Release 2.0.1

Archan. Release 2.0.1 Archan Release 2.0.1 Jul 30, 2018 Contents 1 Archan 1 1.1 Features.................................................. 1 1.2 Installation................................................ 1 1.3 Documentation..............................................

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

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

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

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

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

pydrill Documentation

pydrill Documentation pydrill Documentation Release 0.3.4 Wojciech Nowak Apr 24, 2018 Contents 1 pydrill 3 1.1 Features.................................................. 3 1.2 Installation................................................

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

Python Project Documentation

Python Project Documentation Python Project Documentation Release 1.0 Tim Diels Jan 10, 2018 Contents 1 Simple project structure 3 1.1 Code repository usage.......................................... 3 1.2 Versioning................................................

More information

Torndb Release 0.3 Aug 30, 2017

Torndb Release 0.3 Aug 30, 2017 Torndb Release 0.3 Aug 30, 2017 Contents 1 Release history 3 1.1 Version 0.3, Jul 25 2014......................................... 3 1.2 Version 0.2, Dec 22 2013........................................

More information

dicompyler-core Documentation

dicompyler-core Documentation dicompyler-core Documentation Release 0.5.3 Aditya Panchal Nov 08, 2017 Contents 1 dicompyler-core 3 1.1 Other information............................................ 3 1.2 Dependencies...............................................

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

Requests Mock Documentation

Requests Mock Documentation Requests Mock Documentation Release 1.5.1.dev4 Jamie Lennox Jun 16, 2018 Contents 1 Overview 3 2 Using the Mocker 5 2.1 Activation................................................ 5 2.2 Class Decorator.............................................

More information

Airoscript-ng Documentation

Airoscript-ng Documentation Airoscript-ng Documentation Release 0.0.4 David Francos Cuartero January 22, 2015 Contents 1 Airoscript-ng 3 1.1 Features.................................................. 3 1.2 TODO..................................................

More information

Kaiso Documentation. Release 0.1-dev. onefinestay

Kaiso Documentation. Release 0.1-dev. onefinestay Kaiso Documentation Release 0.1-dev onefinestay Sep 27, 2017 Contents 1 Neo4j visualization style 3 2 Contents 5 2.1 API Reference.............................................. 5 3 Indices and tables

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

MyVariant.py Documentation

MyVariant.py Documentation MyVariant.py Documentation Release v0.3.1 Chunlei Wu Jul 11, 2017 Contents 1 Requirements 3 2 Optional dependencies 5 3 Installation 7 4 Version history 9 5 Tutorial 11 6 API 13 7 Indices and tables 19

More information

pglib Documentation Release Michael Kleehammer

pglib Documentation Release Michael Kleehammer pglib Documentation Release 2.4.0 Michael Kleehammer Dec 26, 2017 Contents 1 Quick Start 3 1.1 Connecting................................................ 3 1.2 Basic Selecting..............................................

More information

python-unrar Documentation

python-unrar Documentation python-unrar Documentation Release 0.3 Matias Bordese August 18, 2016 Contents 1 rarfile Work with RAR archives 3 1.1 RarFile Objects.............................................. 3 1.2 RarInfo Objects.............................................

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

flake8 Documentation Release Tarek Ziade

flake8 Documentation Release Tarek Ziade flake8 Documentation Release 2.5.5 Tarek Ziade June 14, 2016 Contents 1 QuickStart 3 2 Frequently Asked Questions 5 2.1 Why does flake8 pin the version of pep8?................................ 5 2.2 Is

More information

Watson - DB. Release 2.7.0

Watson - DB. Release 2.7.0 Watson - DB Release 2.7.0 Jan 15, 2018 Contents 1 Build Status 3 2 Dependencies 5 3 Installation 7 4 Testing 9 5 Contributing 11 6 Table of Contents 13 6.1 Usage...................................................

More information

Piexif Documentation. Release 1.0.X. hmatoba

Piexif Documentation. Release 1.0.X. hmatoba Piexif Documentation Release 1.0.X hmatoba January 29, 2017 Contents 1 About Piexif 3 1.1 What for?................................................. 3 1.2 How to Use................................................

More information

pvl Documentation Release William Trevor Olson

pvl Documentation Release William Trevor Olson pvl Documentation Release 0.2.0 William Trevor Olson May 29, 2017 Contents 1 pvl 1 1.1 Installation................................................ 1 1.2 Basic Usage...............................................

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

df2gspread Documentation

df2gspread Documentation df2gspread Documentation Release Eduard Trott Apr 05, 2017 Contents 1 df2gspread 3 1.1 Description................................................ 3 1.2 Status...................................................

More information

TH IRD EDITION. Python Cookbook. David Beazley and Brian K. Jones. O'REILLY. Beijing Cambridge Farnham Köln Sebastopol Tokyo

TH IRD EDITION. Python Cookbook. David Beazley and Brian K. Jones. O'REILLY. Beijing Cambridge Farnham Köln Sebastopol Tokyo TH IRD EDITION Python Cookbook David Beazley and Brian K. Jones O'REILLY. Beijing Cambridge Farnham Köln Sebastopol Tokyo Table of Contents Preface xi 1. Data Structures and Algorithms 1 1.1. Unpacking

More information

xmljson Documentation

xmljson Documentation xmljson Documentation Release 0.1.9 S Anand Aug 01, 2017 Contents 1 About 3 2 Convert data to XML 5 3 Convert XML to data 7 4 Conventions 9 5 Options 11 6 Installation 13 7 Roadmap 15 8 More information

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

PrettyPandas Documentation

PrettyPandas Documentation PrettyPandas Documentation Release 0.0.4 Henry Hammond Mar 26, 2018 Contents 1 Features 3 2 Installation 5 3 Contributing 7 4 Contents 9 4.1 Quick Start................................................

More information

DynamiX Documentation

DynamiX Documentation DynamiX Documentation Release 0.1 Pascal Held May 13, 2015 Contents 1 Introduction 3 1.1 Resources................................................. 3 1.2 Requirements...............................................

More information

File Operations. Working with files in Python. Files are persistent data storage. File Extensions. CS111 Computer Programming

File Operations. Working with files in Python. Files are persistent data storage. File Extensions. CS111 Computer Programming File Operations Files are persistent data storage titanicdata.txt in PS06 Persistent vs. volatile memory. The bit as the unit of information. Persistent = data that is not dependent on a program (exists

More information

Python simple arp table reader Documentation

Python simple arp table reader Documentation Python simple arp table reader Documentation Release 0.0.1 David Francos Nov 17, 2017 Contents 1 Python simple arp table reader 3 1.1 Features.................................................. 3 1.2 Usage...................................................

More information

pymemcache Documentation

pymemcache Documentation pymemcache Documentation Release 2.1.0 Charles Gordon, Nicholas Charriere, Jon Parise, Joe Gordon Jan 08, 2019 Contents 1 Getting started! 3 1.1 Basic Usage...............................................

More information

Python Tutorial. Day 1

Python Tutorial. Day 1 Python Tutorial Day 1 1 Why Python high level language interpreted and interactive real data structures (structures, objects) object oriented all the way down rich library support 2 The First Program #!/usr/bin/env

More information

MongoTor Documentation

MongoTor Documentation MongoTor Documentation Release 0.1.0 Marcel Nicolat June 11, 2014 Contents 1 Features 3 2 Contents: 5 2.1 Installation................................................ 5 2.2 Tutorial..................................................

More information

Bitdock. Release 0.1.0

Bitdock. Release 0.1.0 Bitdock Release 0.1.0 August 07, 2014 Contents 1 Installation 3 1.1 Building from source........................................... 3 1.2 Dependencies............................................... 3

More information

tolerance Documentation

tolerance Documentation tolerance Documentation Release Alisue Apr 1, 217 Contents 1 tolerance 1 1.1 Features.................................................. 1 1.2 Installation................................................

More information

File Operations. Working with files in Python. Files are persistent data storage. File Extensions. CS111 Computer Programming

File Operations. Working with files in Python. Files are persistent data storage. File Extensions. CS111 Computer Programming File Operations Files are persistent data storage titanicdata.txt in PS07 Persistent vs. volatile memory. The bit as the unit of information. Persistent = data that is not dependent on a running program

More information

mol2vec Documentation

mol2vec Documentation mol2vec Documentation Release 0.1 Samo Turk, Sabrina Jaeger, Simone Fulle Jun 23, 2018 Contents: 1 Installation 3 2 Usage 5 3 How to cite? 7 4 API documentation 9 5 Indices and tables 15 i ii Mol2vec

More information

utidylib Documentation Release 0.4

utidylib Documentation Release 0.4 utidylib Documentation Release 0.4 Michal Čihař Nov 01, 2018 Contents 1 Installing 3 2 Contributing 5 3 Running testsuite 7 4 Building documentation 9 5 License 11 6 Changes 13 6.1 0.5....................................................

More information

spacetrack Documentation

spacetrack Documentation spacetrack Documentation Release 0.13.1 Frazer McLean Feb 03, 2018 Contents 1 Installation 3 1.1 pip.................................................. 3 1.2 Git..................................................

More information

Pymixup Documentation

Pymixup Documentation Pymixup Documentation Release 1.0.2 Richard DeVost June 09, 2016 Contents 1 Why Obfuscate? 3 2 What pymixup Does 5 3 Contents 7 3.1 Installation................................................ 7 3.2 Program

More information

g-pypi Documentation Release 0.3 Domen Kožar

g-pypi Documentation Release 0.3 Domen Kožar g-pypi Documentation Release 0.3 Domen Kožar January 20, 2014 Contents i ii Author Domen Kožar Source code Github.com source browser Bug tracker Github.com issues Generated January 20,

More information

ejpiaj Documentation Release Marek Wywiał

ejpiaj Documentation Release Marek Wywiał ejpiaj Documentation Release 0.4.0 Marek Wywiał Mar 06, 2018 Contents 1 ejpiaj 3 1.1 License.................................................. 3 1.2 Features..................................................

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

mincss Documentation Release 0.1 Peter Bengtsson

mincss Documentation Release 0.1 Peter Bengtsson mincss Documentation Release 0.1 Peter Bengtsson Sep 27, 2017 Contents 1 Getting started 3 2 Supported Features and Limitations 5 3 API 7 4 Changelog 9 4.1 v0.8.1 (2013-04-05)...........................................

More information

diceware Documentation

diceware Documentation diceware Documentation Release 0.1 Uli Fouquet March 28, 2015 Contents 1 Install 3 2 Usage 5 3 What is it good for? 7 4 Is it secure? 9 5 Developer Install 11 5.1 Documentation Install..........................................

More information

RiotWatcher Documentation

RiotWatcher Documentation RiotWatcher Documentation Release 2.5.0 pseudonym117 Jan 29, 2019 Contents 1 To Start... 3 2 Using it... 5 3 Main API and other topics 7 4 Indices and tables 15 Python Module Index 17 i ii RiotWatcher

More information

Data Science with Python Course Catalog

Data Science with Python Course Catalog Enhance Your Contribution to the Business, Earn Industry-recognized Accreditations, and Develop Skills that Help You Advance in Your Career March 2018 www.iotintercon.com Table of Contents Syllabus Overview

More information

scrapekit Documentation

scrapekit Documentation scrapekit Documentation Release 0.1 Friedrich Lindenberg July 06, 2015 Contents 1 Example 3 2 Reporting 5 3 Contents 7 3.1 Installation Guide............................................ 7 3.2 Quickstart................................................

More information

collective.jsonify Release 1.1.dev0

collective.jsonify Release 1.1.dev0 collective.jsonify Release 1.1.dev0 May 15, 2015 Contents 1 How to install it 3 2 How to use it 5 3 Using the exporter 7 4 How to extend it 9 5 Code 11 6 Changelog 13 6.1 1.1 (unreleased).............................................

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

python-hl7 Documentation

python-hl7 Documentation python-hl7 Documentation Release 0.2.4 John Paulett August 18, 2014 Contents 1 Usage 3 2 MLLP network client - mllp_send 5 3 Contents 7 3.1 python-hl7 API..............................................

More information

py-couchdb Documentation

py-couchdb Documentation py-couchdb Documentation Release 1.12 Andrey Antukh May 15, 2015 Contents 1 Advantages of py-couchdb 3 2 User guide 5 2.1 Installation................................................ 5 2.2 Quickstart................................................

More information