TPS Documentation. Release Thomas Roten

Similar documents
Roman Numeral Converter Documentation

Python wrapper for Viscosity.app Documentation

chatterbot-weather Documentation

Python simple arp table reader Documentation

Python Project Example Documentation

PyCRC Documentation. Release 1.0

I2C LCD Documentation

Aircrack-ng python bindings Documentation

Simple libtorrent streaming module Documentation

sainsmart Documentation

Release Nicholas A. Del Grosso

django-idioticon Documentation

Poulpe Documentation. Release Edouard Klein

Pykemon Documentation

google-search Documentation

django-reinhardt Documentation

Simple Binary Search Tree Documentation

DNS Zone Test Documentation

Redis Timeseries Documentation

Django Wordpress API Documentation

Release Fulfil.IO Inc.

smartfilesorter Documentation

OpenUpgrade Library Documentation

django CMS Export Objects Documentation

Poetaster. Release 0.1.1

Python Schema Generator Documentation

Google Domain Shared Contacts Client Documentation

django-cas Documentation

gunny Documentation Release David Blewett

Game Server Manager Documentation

doconv Documentation Release Jacob Mourelos

Frontier Documentation

dj-libcloud Documentation

pydrill Documentation

Python State Machine Documentation

withenv Documentation

pyldavis Documentation

Python AMT Tools Documentation

e24paymentpipe Documentation

django-users2 Documentation

Release Ralph Offinger

Mantis STIX Importer Documentation

open-helpdesk Documentation

Python AutoTask Web Services Documentation

eventbrite-sdk-python Documentation

django-telegram-bot Documentation

AnyDo API Python Documentation

Aldryn Installer Documentation

API Wrapper Documentation

Python Finite State Machine. Release 0.1.5

Python State Machine Documentation

dublincore Documentation

django-responsive2 Documentation

ejpiaj Documentation Release Marek Wywiał

gpib-ctypes Documentation

lazy-object-proxy Release 1.3.1

Python data pipelines similar to R Documentation

xmljson Documentation

yardstick Documentation

PyZillow Documentation

PyCon APAC 2014 Documentation

smsghussd Documentation

Dragon Mapper Documentation

django-composite-foreignkey Documentation

invenio-groups Documentation

syslog-ng Apache Kafka destination

pvl Documentation Release William Trevor Olson

django-private-chat Documentation

django-stored-messages Documentation

cwmon-mysql Release 0.5.0

django-composite-foreignkey Documentation

nacelle Documentation

xmodels Documentation

dicompyler-core Documentation

Job Submitter Documentation

CID Documentation. Release Francis Reyes

OTX to MISP. Release 1.4.2

pytest-benchmark Release 2.5.0

Airoscript-ng Documentation

invenio-formatter Documentation

Infoblox Client Documentation

Microlab Instruments Documentation

ProxySQL Tools Documentation

Gearthonic Documentation

django-bootstrap3 Documentation

Connexion Sqlalchemy Utils Documentation

Durga Documentation. Release dev2. transcode

Archan. Release 2.0.1

Release Manu Phatak

MT940 Documentation. Release Rick van Hattem (wolph)

redis-lock Release 3.2.0

timegate Documentation

otree Virtual Machine Manager Documentation

python-hologram-api Documentation

Face Recognition Documentation

Lazarus Documentation

Regressors Documentation

ouimeaux Documentation

MyAnimeList Scraper. Release 0.3.0

mlpy Documentation Release Astrid Jackson

Transcription:

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.......................................... 7 3.2 Get Started!................................................ 8 3.3 Pull Request Guidelines......................................... 9 4 Credits 11 4.1 Author and Maintainer.......................................... 11 4.2 Contributors............................................... 11 5 History 13 5.1 0.1.0 (2016-08-21)............................................ 13 6 Indices and tables 15 i

ii

TPS Documentation, Release 0.1.0 Contents: Contents 1

TPS Documentation, Release 0.1.0 2 Contents

CHAPTER 1 TPS: TargetProcess in Python! Python wrapper for the TargetProcess API GitHub: https://github.com/tsroten/tps Free software: BSD license 3

TPS Documentation, Release 0.1.0 4 Chapter 1. TPS: TargetProcess in Python!

CHAPTER 2 Installation Install TPS using pip: $ pip install tps Or, if you have virtualenvwrapper installed: $ mkvirtualenv tps $ pip install tps 5

TPS Documentation, Release 0.1.0 6 Chapter 2. Installation

CHAPTER 3 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: Types of Contributions Report Bugs Report bugs at https://github.com/tsroten/tps/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. Fix Bugs Look through the GitHub issues for bugs. Anything tagged with bug is open to whoever wants to implement it. Implement Features Look through the GitHub issues for features. Anything tagged with feature is open to whoever wants to implement it. 7

TPS Documentation, Release 0.1.0 Write Documentation TPS could always use more documentation, whether as part of the official TPS docs, in docstrings, or even on the web in blog posts, articles, and such. Submit Feedback The best way to send feedback is to file an issue at https://github.com/tsroten/tps/issues. If you are proposing a feature: 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 :) Get Started! Ready to contribute? Here s how to set up tps for local development. 1. Fork the tps repo on GitHub. 2. Clone your fork locally: $ git clone git@github.com:your_name_here/tps.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 tps $ cd tps/ $ 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 tps 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. 8 Chapter 3. Contributing

TPS Documentation, Release 0.1.0 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. 3. The pull request should work for Python 2.7/3.5 and for PyPy. Check https://travis-ci.org/tsroten/tps/pull_ requests and make sure that the tests pass for all supported Python versions. 4. If you want to receive credit, add your name to AUTHORS.rst. 3.3. Pull Request Guidelines 9

TPS Documentation, Release 0.1.0 10 Chapter 3. Contributing

CHAPTER 4 Credits Author and Maintainer Thomas Roten <https://github.com/tsroten> Contributors None yet. Why not be the first? 11

TPS Documentation, Release 0.1.0 12 Chapter 4. Credits

CHAPTER 5 History 0.1.0 (2016-08-21) First release on PyPI. 13

TPS Documentation, Release 0.1.0 14 Chapter 5. History

CHAPTER 6 Indices and tables genindex modindex search 15