maya-cmds-help Documentation

Size: px
Start display at page:

Download "maya-cmds-help Documentation"

Transcription

1 maya-cmds-help Documentation Release Andres Weber May 28, 2017

2

3 Contents Synopsis Features Installation Windows, etc Usage Bash Python Package Usage Class Documentation Version Support 11 Python Module Index 13 i

4 ii

5 maya-cmds-help Documentation, Release Online Documentation (ReadTheDocs) Contents 1 Maya Command Signature Scraper: For people who just really want to check their maya.cmds signatures 1.1 Synopsis * Features 1.2 Installation * Windows, etc. 1.3 Usage * Bash * Python Package Usage 1.4 Class Documentation 1.5 Version Support Contents 1

6 maya-cmds-help Documentation, Release 2 Contents

7 CHAPTER Synopsis If you re looking into this tool, you re looking for a programmatic way of getting Maya function signatures. The current version of the tool has unfiltered prints as status logs...so that might be a deterrent... I personally built it so that I could compare my maya command calls against kwargs/args Maya expects to reduce errors. Hope you ll find it useful! Once you install you will now have a CLI tool called mayasig Features Caching Up to date with online help docs Temp file generator JSON file output CLI access Dict output 3

8 maya-cmds-help Documentation, Release 4 Chapter Synopsis

9 CHAPTER Installation Windows, etc. A universal installation method (that works on Windows, Mac OS X, Linux,..., and always provides the latest version) is to use pip: # Make sure we have an up-to-date version of pip and setuptools: $ pip install --upgrade pip setuptools $ pip install mayasigscraper-cli (If pip installation fails for some reason, you can try easy_install mayasigscraper-cli as a fallback.) 5

10 maya-cmds-help Documentation, Release 6 Chapter Installation

11 CHAPTER Usage Bash mayasig Usage: mayasig [-m --mayaversion VERSION] [-d --depth DEPTH] (MAYA_CMDS...) mayasig (-h --help) mayasig (--version) Options: -h --help Show this screen. --version Show version. -m VERSION --mayaversion VERSION If you want to override which Maya docs we query (tested with 2015/2016/2017) [default: 2017] -d DEPTH --depth DEPTH The depth verbosity of the return dictionary [default: 1] MAYA_CMDS Maya commands to query/scrape from the help and return signatures for Examples: mayasig group Help: For help using this tool, please open an issue on the Github repository: Python Package Usage Feel free to access from the package instead via the two package-level convenience functions: 7

12 maya-cmds-help Documentation, Release maya_signatures.cache maya_signatures.query In order to access full functionality from the scraper class you can access a package level instance of maya_signatures.commands.scrape.scraper using: maya_signatures.scraper import maya_signatures maya_signatures.query('ls') # Result: # storing args ('ls',) storing kwargs {} # Successfully loaded json data, loading into cache... # Retrieving cached value for input Maya-Tech-Docs/CommandsPython/ls.html # wrote out tmp file C:\Users\andre\dev\maya_signature_builder\scrape.json maya_signatures.scraper.build_command_stub('ls') # Result: def ls(*args, textures=bool, selection=bool, defaultnodes=bool, templated=bool, visible=bool, references=bool, flatten=bool, nodetypes=bool, persistentnodes=bool, intermediateobjects=bool, long=bool, leaf=bool, recursive=bool, objectsonly=bool, lockednodes=bool, cameras=bool, tail=int, absolutename=bool, lights=bool, live=bool, rendersetups=bool, containertype=str, preselecthilite=bool, type=str, containers=bool, shortnames=bool, renderresolutions=bool, head=int, showtype=bool, dependencynodes=bool, orderedselection=bool, renderqualities=bool, readonly=bool, referencednodes=bool, shownamespace=bool, invisible=bool, hilite=bool, untemplated=bool, partitions=bool, ghost=bool, uuid=bool, sets=bool, geometry=bool, assemblies=bool, nointermediate=bool, modified=bool, allpaths=bool, shapes=bool, materials=bool, excludetype=str, planes=bool, exacttype=str, renderglobals=bool, undeletable=bool, dagobjects=bool, transforms=bool): # pass maya_signatures.query('group') # Result: storing args ('group',) storing kwargs {} # Successfully loaded json data, loading into cache... # Could not find key CommandsPython/group.html in cached values...retrieving... # Trying to find command for web page: # group.html # wrote out tmp file C:\Users\andre\dev\maya_signature_builder\scrape.json maya_signatures.scraper.get_command_flags('group') # Result: [('name', 'n'), ('parent', 'p'), ('relative', 'r'), ('useasgroup', 'uag'), ('world', 'w'), ('empty', 'em'), ('absolute', 'a')] 8 Chapter Usage

13 CHAPTER Class Documentation The maya online help command signature scraping command. class maya_signatures.commands.scrape.scrape(*args, **kwargs) Bases: maya_signatures.commands.base.base Class responsible for handling Maya help doc command queries and returns function signatures. BASEURL = build_command_stub(command, shortname=false, combined=false) Build a Python stub for the given command. parameters, types, return:: cache_file Provide the cache file path param command str, valid maya command param shortname bool, whether or not we want to use the shortname of the flags param combined bool, whether we use both short name and long name of flags (will invalidate stub...) return str, Python formatted function stub for the given command parameters, types, return:: return str cached Provide the raw cache with urls as the dictionary keys parameters, types, return:: return dict get_command_flags(command) Return only the flags for the given command. parameters, types, return:: 9

14 maya-cmds-help Documentation, Release param command str, maya command return list(list(str, str)), list of lists of flags in format: [<long name>, <short name>] query(commands) Build URLs then stores all queried commands within the instance. :param commands: list(str) or str, valid maya command(s) :return: None reset_cache() Clear the cache file of contents. parameters, types, return:: return None run() CLI interface command runner. parameters, types, return:: return dict, command signatures dictionary sorted the commands as the keys stored_commands Provide a list of commands that are currently stored. parameters, types, return:: return list 10 Chapter Class Documentation

15 CHAPTER Version Support This package supports the Maya 2015, 2016 and 2017 help docs so far so please be aware. I might back port a couple versions of the maya online help, but this is totally dependent on time. genindex modindex search 11

16 maya-cmds-help Documentation, Release 12 Chapter Version Support

17 Python Module Index m maya_signatures.commands.scrape, 9 13

18 maya-cmds-help Documentation, Release 14 Python Module Index

19 Index B BASEURL (maya_signatures.commands.scrape.scrape attribute), 9 build_command_stub() (maya_signatures.commands.scrape.scrape method), 9 C cache_file (maya_signatures.commands.scrape.scrape attribute), 9 cached (maya_signatures.commands.scrape.scrape attribute), 9 G get_command_flags() (maya_signatures.commands.scrape.scrape method), 9 M maya_signatures.commands.scrape (module), 9 Q query() (maya_signatures.commands.scrape.scrape method), 10 R reset_cache() (maya_signatures.commands.scrape.scrape method), 10 run() (maya_signatures.commands.scrape.scrape method), 10 S Scrape (class in maya_signatures.commands.scrape), 9 stored_commands (maya_signatures.commands.scrape.scrape attribute), 10 15

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

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

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

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

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

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

Django-Select2 Documentation. Nirupam Biswas

Django-Select2 Documentation. Nirupam Biswas Nirupam Biswas Mar 07, 2018 Contents 1 Get Started 3 1.1 Overview................................................. 3 1.2 Installation................................................ 3 1.3 External Dependencies..........................................

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

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

cursesmenu Documentation

cursesmenu Documentation cursesmenu Documentation Release 0.5.0 Author March 04, 2016 Contents 1 Installation 3 2 Usage 5 2.1 Getting a selection............................................ 6 3 API Reference 7 3.1 CursesMenu

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

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

FriendlyShell Documentation

FriendlyShell Documentation FriendlyShell Documentation Release 0.0.0.dev0 Kevin S. Phillips Nov 15, 2018 Contents: 1 friendlyshell 3 1.1 friendlyshell package........................................... 3 2 Overview 9 3 Indices

More information

django-subdomains Documentation

django-subdomains Documentation django-subdomains Documentation Release 2.1.0 ted kaemming April 29, 2016 Contents 1 Installation 3 2 Quick Start 5 2.1 Example Configuration.......................................... 5 3 Basic Usage

More information

django-auditlog Documentation

django-auditlog Documentation django-auditlog Documentation Release 0.4.3 Jan-Jelle Kester Jul 05, 2017 Contents 1 Contents 3 1.1 Installation................................................ 3 1.2 Usage...................................................

More information

feed2toot Documentation

feed2toot Documentation feed2toot Documentation Release 0.10 Carl Chenet Oct 15, 2018 Contents 1 Guide 3 1.1 How to install Feed2toot......................................... 3 1.2 Configure Feed2toot...........................................

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

calyptos Documentation

calyptos Documentation calyptos Documentation Release 1.0.0 Eucalyptus Quality Team Nov 08, 2017 Contents 1 Contents 3 1.1 Quick Start................................................ 3 1.1.1 Pre-requisites..........................................

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

Flask-Cors Documentation

Flask-Cors Documentation Flask-Cors Documentation Release 3.0.4 Cory Dolphin Apr 26, 2018 Contents 1 Installation 3 2 Usage 5 2.1 Simple Usage............................................... 5 3 Documentation 7 4 Troubleshooting

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

django-conduit Documentation

django-conduit Documentation django-conduit Documentation Release 0.0.1 Alec Koumjian Apr 24, 2017 Contents 1 Why Use Django-Conduit? 3 2 Table of Contents 5 2.1 Filtering and Ordering.......................................... 5

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

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

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

requests-cache Documentation

requests-cache Documentation requests-cache Documentation Release 0.4.13 Roman Haritonov Nov 09, 2017 Contents 1 User guide 3 1.1 Installation................................................ 3 1.2 Usage...................................................

More information

Custom Actions for argparse Documentation

Custom Actions for argparse Documentation Custom Actions for argparse Documentation Release 0.4 Hai Vu October 26, 2015 Contents 1 Introduction 1 2 Information 3 2.1 Folder Actions.............................................. 3 2.2 IP Actions................................................

More information

Python Type Checking Guide Documentation

Python Type Checking Guide Documentation Python Type Checking Guide Documentation Release 1.0 Chad Dombrova Mar 03, 2017 Contents 1 Background 3 1.1 Why Should I Care?........................................... 3 1.2 Enter PEP 484..............................................

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

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

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

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

f5-icontrol-rest Documentation

f5-icontrol-rest Documentation f5-icontrol-rest Documentation Release 1.3.10 F5 Networks Aug 04, 2018 Contents 1 Overview 1 2 Installation 3 2.1 Using Pip................................................. 3 2.2 GitHub..................................................

More information

Wifiphisher Documentation

Wifiphisher Documentation Wifiphisher Documentation Release 1.2 George Chatzisofroniou Jan 13, 2018 Contents 1 Table Of Contents 1 1.1 Getting Started.............................................. 1 1.2 User s guide...............................................

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

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

Traits CLI Documentation

Traits CLI Documentation Traits CLI Documentation Release 0.1.0 Takafumi Arakaki March 22, 2013 CONTENTS 1 Links 3 2 Installation 5 3 Dependencies 7 4 Sample 9 5 CLI base class 11 6 Utility functions 19 7 Change log 21 7.1 v0.1....................................................

More information

viki-fabric-helpers Documentation

viki-fabric-helpers Documentation viki-fabric-helpers Documentation Release 0.0.5 Viki Inc. July 04, 2014 Contents 1 Installation 3 1.1 Installation................................................ 3 2 Configuration 5 2.1 Configuration...............................................

More information

Archer Documentation. Release 0.1. Praekelt Dev

Archer Documentation. Release 0.1. Praekelt Dev Archer Documentation Release 0.1 Praekelt Dev February 12, 2014 Contents 1 User Service 3 1.1 Installation................................................ 3 1.2 API....................................................

More information

dirt Documentation Release 0.6 Andy Mastbaum

dirt Documentation Release 0.6 Andy Mastbaum dirt Documentation Release 0.6 Andy Mastbaum Sep 27, 2017 Contents 1 Quick Start Guide 3 2 Installation 5 3 Documentation 7 3.1 Introduction............................................... 7 3.2 Basic

More information

Baron Documentation. Release 0.6. Laurent Peuch

Baron Documentation. Release 0.6. Laurent Peuch Baron Documentation Release 0.6 Laurent Peuch Sep 23, 2018 Contents 1 Introduction 1 2 Github (code, bug tracker, etc.) 3 3 Installation 5 4 RedBaron 7 5 Basic usage 9 6 Table of content 11 6.1 Basic

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

GitHub-Flask Documentation

GitHub-Flask Documentation GitHub-Flask Documentation Release 3.2.0 Cenk Altı Jul 01, 2018 Contents 1 Installation 3 2 Configuration 5 3 Authenticating / Authorizing Users 7 4 Invoking Remote Methods 9 5 Full Example 11 6 API Reference

More information

argcomplete Documentation Andrey Kislyuk

argcomplete Documentation Andrey Kislyuk Andrey Kislyuk May 08, 2018 Contents 1 Installation 3 2 Synopsis 5 2.1 argcomplete.autocomplete(parser).................................... 5 3 Specifying completers 7 3.1 Readline-style completers........................................

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

PyZabbixObj Documentation

PyZabbixObj Documentation PyZabbixObj Documentation Release 0.1 Fabio Toscano Aug 26, 2017 Contents Python Module Index 3 i ii PyZabbixObj Documentation, Release 0.1 PyZabbixObj is a Python module for working with Zabbix API,

More information

argcomplete Documentation

argcomplete Documentation argcomplete Documentation Release Andrey Kislyuk Nov 21, 2017 Contents 1 Installation 3 2 Synopsis 5 2.1 argcomplete.autocomplete(parser).................................... 5 3 Specifying completers

More information

DCLI User's Guide. Data Center Command-Line Interface

DCLI User's Guide. Data Center Command-Line Interface Data Center Command-Line Interface 2.10.2 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about this documentation, submit

More information

doubles Documentation

doubles Documentation doubles Documentation Release 1.1.0 Jimmy Cuadra August 23, 2015 Contents 1 Installation 3 2 Integration with test frameworks 5 2.1 Pytest................................................... 5 2.2 Nose...................................................

More information

python-idex Documentation

python-idex Documentation python-idex Documentation Release 0.2.0 Sam McHardy Aug 08, 2018 Contents 1 Features 3 2 Quick Start 5 3 Synchronous Examples 7 4 Async Examples for Python 3.5+ 9 5 TODO 11 6 Donate 13 7 Other Exchanges

More information

treelib Documentation

treelib Documentation treelib Documentation Release 1.3.0 Xiaming Chen Jul 08, 2018 Contents 1 Install 3 2 Useful APIs 5 2.1 Node Objects.............................................. 5 2.2 Tree Objects..............................................

More information

django-embed-video Documentation

django-embed-video Documentation django-embed-video Documentation Release 0.6.stable Juda Kaleta October 04, 2013 CONTENTS i ii Django app for easy embeding YouTube and Vimeo videos and music from SoundCloud. Repository is located on

More information

Django PAM Documentation

Django PAM Documentation Django PAM Documentation Release 1.4.1 Carl J. Nobile Aug 01, 2018 Contents 1 Contents 3 1.1 Installation................................................ 3 1.2 Configuration...............................................

More information

MyGeotab Python SDK Documentation

MyGeotab Python SDK Documentation MyGeotab Python SDK Documentation Release 0.8.0 Aaron Toth Dec 13, 2018 Contents 1 Features 3 2 Usage 5 3 Installation 7 4 Documentation 9 5 Changes 11 5.1 0.8.0 (2018-06-18)............................................

More information

API Wrapper Documentation

API Wrapper Documentation API Wrapper Documentation Release 0.1.7 Ardy Dedase February 09, 2017 Contents 1 API Wrapper 3 1.1 Overview................................................. 3 1.2 Installation................................................

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

treacle Documentation

treacle Documentation treacle Documentation Release 0.1.2 Caramel April 02, 2014 Contents 1 Installing treacle 3 1.1 Installing stable version with pip.................................... 3 1.2 Installing development version

More information

Durga Documentation. Release dev2. transcode

Durga Documentation. Release dev2. transcode Durga Documentation Release 0.2.0.dev2 transcode June 30, 2015 Contents 1 Features 3 2 Contents 5 2.1 Installation................................................ 5 2.2 Usage...................................................

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

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

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

pygenbank Documentation

pygenbank Documentation pygenbank Documentation Release 0.0.1 Matthieu Bruneaux February 06, 2017 Contents 1 Description 1 2 Contents 3 2.1 Installation................................................ 3 2.2 genbank module.............................................

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

turbo-hipster Documentation

turbo-hipster Documentation turbo-hipster Documentation Release 0.1 Joshua Hesketh October 07, 2015 Contents 1 Turbo-hipster 3 1.1 Turbo-hipster and Zuul.......................................... 3 1.2 Typical workflow diagram........................................

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

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

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

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

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

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

Set of python scripts to work with GnuCash books Documentation

Set of python scripts to work with GnuCash books Documentation Set of python scripts to work with GnuCash books Documentation Release 0.1.5 sdementen Nov 13, 2017 Contents 1 What s new 3 2 Documentation 5 3 piecash_utilities 11 4 Indices and tables 15 Python Module

More information

EVE Market Data Structures Documentation

EVE Market Data Structures Documentation EVE Market Data Structures Documentation Release 0.6 Greg Taylor Sep 15, 2017 Contents 1 Documentation 3 1.1 Installation................................................ 3 1.2 Quickstart................................................

More information

django-embed-video Documentation

django-embed-video Documentation django-embed-video Documentation Release 0.7.stable Juda Kaleta December 21, 2013 Contents i ii Django app for easy embeding YouTube and Vimeo videos and music from SoundCloud. Repository is located on

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

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

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

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

Uranium Documentation

Uranium Documentation Uranium Documentation Release 0.1 Yusuke Tsutsumi Jul 26, 2018 Contents 1 What is Uranium? 1 1.1 Installation................................................ 2 1.2 Tutorial..................................................

More information

ers Documentation Release 0.13 ers-devs

ers Documentation Release 0.13 ers-devs ers Documentation Release 0.13 ers-devs November 14, 2013 Contents 1 Installation 3 2 Run as Virtual Machine 5 3 ers Package 7 3.1 ers Package............................................... 7 3.2 daemon

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

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

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

monolith Documentation

monolith Documentation monolith Documentation Release 0.3.3 Łukasz Balcerzak December 16, 2013 Contents 1 Usage 3 1.1 Execution manager............................................ 3 1.2 Creating commands...........................................

More information

treelib Documentation

treelib Documentation treelib Documentation Release 1.4.0 Xiaming Chen Dec 23, 2017 Contents 1 Install 3 2 Useful APIs 5 2.1 Node Objects.............................................. 5 2.2 Tree Objects..............................................

More information

twstock Documentation

twstock Documentation twstock Documentation 1.0.1 Louie Lu 2018 03 26 Contents 1 twstock - 1 1.1 - User s Guide.............................................. 1 1.2 API - API Reference...........................................

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

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

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

Easy-select2 Documentation

Easy-select2 Documentation Easy-select2 Documentation Release 1.2.2 Lobanov Stanislav aka asyncee September 15, 2014 Contents 1 Installation 3 2 Quickstart 5 3 Configuration 7 4 Usage 9 5 Reference 11 5.1 Widgets..................................................

More information

Kivy Designer Documentation

Kivy Designer Documentation Kivy Designer Documentation Release 0.9 Kivy October 02, 2016 Contents 1 Installation 3 1.1 Prerequisites............................................... 3 1.2 Installation................................................

More information

Platform Migrator Technical Report TR

Platform Migrator Technical Report TR Platform Migrator Technical Report TR2018-990 Munir Contractor mmc691@nyu.edu Christophe Pradal christophe.pradal@inria.fr Dennis Shasha shasha@cs.nyu.edu May 12, 2018 CONTENTS: 1 Abstract 4 2 Platform

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

Connexion Documentation

Connexion Documentation Connexion Documentation Release 0.5 Zalando SE Nov 16, 2017 Contents 1 Quickstart 3 1.1 Prerequisites............................................... 3 1.2 Installing It................................................

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

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

CacheControl Documentation

CacheControl Documentation CacheControl Documentation Release 0.12.4 Eric Larson May 01, 2018 Contents 1 Install 3 2 Quick Start 5 3 Tests 7 4 Disclaimers 9 4.1 Using CacheControl........................................... 9 4.2

More information

DCLI User's Guide. Modified on 20 SEP 2018 Data Center Command-Line Interface

DCLI User's Guide. Modified on 20 SEP 2018 Data Center Command-Line Interface Modified on 20 SEP 2018 Data Center Command-Line Interface 2.10.0 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about

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

Release 0.8. Repoze Developers

Release 0.8. Repoze Developers pyramid b eakerdocumentation Release 0.8 Repoze Developers July 04, 2015 Contents 1 Overview 1 2 Installation 3 3 Setup 5 4 Usage 7 4.1 Session management........................................... 7

More information

Connexion Sqlalchemy Utils Documentation

Connexion Sqlalchemy Utils Documentation Connexion Sqlalchemy Utils Documentation Release 0.1.4 Michael Housh Apr 17, 2017 Contents 1 Connexion Sqlalchemy Utils 3 1.1 Features.................................................. 3 1.2 Running example

More information