Python wrapper for Viscosity.app Documentation

Similar documents
Roman Numeral Converter Documentation

TPS Documentation. Release Thomas Roten

Python Project Example Documentation

Python simple arp table reader Documentation

chatterbot-weather Documentation

PyCRC Documentation. Release 1.0

Aircrack-ng python bindings Documentation

Simple libtorrent streaming module Documentation

I2C LCD Documentation

sainsmart Documentation

django-idioticon Documentation

Release Nicholas A. Del Grosso

Simple Binary Search Tree Documentation

Poulpe Documentation. Release Edouard Klein

google-search Documentation

Pykemon Documentation

django-reinhardt Documentation

Release Fulfil.IO Inc.

Django Wordpress API Documentation

smartfilesorter Documentation

DNS Zone Test Documentation

OpenUpgrade Library Documentation

Python Schema Generator Documentation

Redis Timeseries Documentation

django-cas Documentation

gunny Documentation Release David Blewett

Google Domain Shared Contacts Client Documentation

Frontier Documentation

Python AMT Tools Documentation

dj-libcloud Documentation

doconv Documentation Release Jacob Mourelos

Game Server Manager Documentation

django CMS Export Objects Documentation

pydrill Documentation

withenv Documentation

django-users2 Documentation

Python State Machine Documentation

Mantis STIX Importer Documentation

open-helpdesk Documentation

eventbrite-sdk-python Documentation

AnyDo API Python Documentation

Poetaster. Release 0.1.1

Python AutoTask Web Services Documentation

pyldavis Documentation

e24paymentpipe Documentation

smsghussd Documentation

API Wrapper Documentation

Aldryn Installer Documentation

yardstick Documentation

Release Ralph Offinger

django-telegram-bot Documentation

Python State Machine Documentation

django-responsive2 Documentation

PyCon APAC 2014 Documentation

django-private-chat Documentation

Python data pipelines similar to R Documentation

PyZillow Documentation

Job Submitter Documentation

gpib-ctypes Documentation

ejpiaj Documentation Release Marek Wywiał

xmljson Documentation

dublincore Documentation

syslog-ng Apache Kafka destination

django-composite-foreignkey Documentation

xmodels Documentation

Python Finite State Machine. Release 0.1.5

Airoscript-ng Documentation

nacelle Documentation

django-stored-messages Documentation

lazy-object-proxy Release 1.3.1

dicompyler-core Documentation

django-composite-foreignkey Documentation

Dragon Mapper Documentation

pvl Documentation Release William Trevor Olson

Microlab Instruments Documentation

django-bootstrap3 Documentation

CID Documentation. Release Francis Reyes

Infoblox Client Documentation

invenio-groups Documentation

cwmon-mysql Release 0.5.0

Gearthonic Documentation

pytest-benchmark Release 2.5.0

invenio-formatter Documentation

OTX to MISP. Release 1.4.2

Connexion Sqlalchemy Utils Documentation

ProxySQL Tools Documentation

Durga Documentation. Release dev2. transcode

Release Manu Phatak

Archan. Release 2.0.1

MT940 Documentation. Release Rick van Hattem (wolph)

Regressors Documentation

Face Recognition Documentation

redis-lock Release 3.2.0

otree Virtual Machine Manager Documentation

Lazarus Documentation

mlpy Documentation Release Astrid Jackson

python-hologram-api Documentation

timegate Documentation

django mail admin Documentation

ouimeaux Documentation

Transcription:

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 5 3 Usage 7 4 Contributing 9 4.1 Types of Contributions.......................................... 9 4.2 Get Started!................................................ 10 4.3 Pull Request Guidelines......................................... 10 4.4 Tips.................................................... 11 5 Credits 13 5.1 Initial author............................................... 13 5.2 Contributors............................................... 13 6 History 15 6.1 0.1.0 (??)................................................. 15 7 Indices and tables 17 i

ii

Python wrapper for Viscosity.app Documentation, Release Contents: Contents 1

Python wrapper for Viscosity.app Documentation, Release 2 Contents

CHAPTER 1 Python wrapper for Viscosity.app This package is a relatively minimal wrapper around the AppleScript interface of Viscosity.app from http://www.sparklabs.com/viscosity/. Free software: MIT license Documentation: http://viscosity-app.rtfd.org. 1.1 Features TODO 3

Python wrapper for Viscosity.app Documentation, Release 4 Chapter 1. Python wrapper for Viscosity.app

CHAPTER 2 Installation At the command line: $ easy_install python-viscosity-app Or, if you have virtualenvwrapper installed: $ mkvirtualenv python-viscosity-app $ pip install python-viscosity-app 5

Python wrapper for Viscosity.app Documentation, Release 6 Chapter 2. Installation

CHAPTER 3 Usage To use Python wrapper for Viscosity.app in a project: import viscosity_app 7

Python wrapper for Viscosity.app Documentation, Release 8 Chapter 3. Usage

CHAPTER 4 Contributing Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given. You can contribute in many ways: 4.1 Types of Contributions 4.1.1 Report Bugs Report bugs at https://github.com/infothrill/python-viscosity-app/issues. If you are reporting a bug, please include: Your operating system name and version. Any details about your local setup that might be helpful in troubleshooting. Detailed steps to reproduce the bug. 4.1.2 Fix Bugs Look through the GitHub issues for bugs. Anything tagged with bug is open to whoever wants to implement it. 4.1.3 Implement Features Look through the GitHub issues for features. Anything tagged with feature is open to whoever wants to implement it. 4.1.4 Write Documentation Python wrapper for Viscosity.app could always use more documentation, whether as part of the official Python wrapper for Viscosity.app docs, in docstrings, or even on the web in blog posts, articles, and such. 4.1.5 Submit Feedback The best way to send feedback is to file an issue at https://github.com/infothrill/python-viscosity-app/issues. If you are proposing a feature: 9

Python wrapper for Viscosity.app Documentation, Release Explain in detail how it would work. Keep the scope as narrow as possible, to make it easier to implement. Remember that this is a volunteer-driven project, and that contributions are welcome :) 4.2 Get Started! Ready to contribute? Here s how to set up python-viscosity-app for local development. 1. Fork the python-viscosity-app repo on GitHub. 2. Clone your fork locally: $ git clone git@github.com:your_name_here/python-viscosity-app.git 3. Install your local copy into a virtualenv. Assuming you have virtualenvwrapper installed, this is how you set up your fork for local development: $ mkvirtualenv python-viscosity-app $ cd python-viscosity-app/ $ python setup.py develop 4. Create a branch for local development: $ git checkout -b name-of-your-bugfix-or-feature Now you can make your changes locally. 5. When you re done making changes, check that your changes pass flake8 and the tests, including testing other Python versions with tox: $ flake8 python-viscosity-app tests $ python setup.py test $ tox To get flake8 and tox, just pip install them into your virtualenv. 6. Commit your changes and push your branch to GitHub: $ git add. $ git commit -m "Your detailed description of your changes." $ git push origin name-of-your-bugfix-or-feature 7. Submit a pull request through the GitHub website. 4.3 Pull Request Guidelines Before you submit a pull request, check that it meets these guidelines: 1. The pull request should include tests. 2. If the pull request adds functionality, the docs should be updated. Put your new functionality into a function with a docstring, and add the feature to the list in README.rst. 3. The pull request should work for Python 2.6, 2.7, 3.2 and 3.3, and for PyPy. Check https://travisci.org/infothrill/python-viscosity-app/pull_requests and make sure that the tests pass for all supported Python versions. 10 Chapter 4. Contributing

Python wrapper for Viscosity.app Documentation, Release 4.4 Tips To run a subset of tests: $ python -m unittest tests.test_viscosity_app 4.4. Tips 11

Python wrapper for Viscosity.app Documentation, Release 12 Chapter 4. Contributing

CHAPTER 5 Credits 5.1 Initial author Paul Kremer 5.2 Contributors None yet. Why not be the first? 13

Python wrapper for Viscosity.app Documentation, Release 14 Chapter 5. Credits

CHAPTER 6 History 6.1 0.1.0 (??) Initial code release. 15

Python wrapper for Viscosity.app Documentation, Release 16 Chapter 6. History

CHAPTER 7 Indices and tables genindex modindex search 17