Metadata-Version: 2.0
Name: fbcli
Version: 2.6
Summary: FogBugz command line interface.
Home-page: https://github.com/lbolla/fbcli
Author: Lorenzo Bolla
Author-email: lbolla@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Operating System :: OS Independent
Requires-Dist: fogbugz-bis (>=1.0.3)
Requires-Dist: pyyaml (>=3,<4dev)
Requires-Dist: six
Requires-Dist: tornado (>=4,<5dev)

# FogBugz Command Line Interface

[<img src="https://travis-ci.org/lbolla/fbcli.svg?branch=master">](https://travis-ci.org/lbolla/fbcli)

Install with:

    $> python setup.py install

Run with:

    fb
    fb --logging=debug  # verbose
    fb --help  # for more options

Get help from `fb`:

    >>> help
    >>> help <command>  # for more

# Tutorial

A quick video tutorial is available [here](https://www.youtube.com/watch?v=2tunk7HD0GY).

[![Tutorial](https://j.gifs.com/vJxLDD.gif)](https://www.youtube.com/watch?v=2tunk7HD0GY)

# Development

Run tests with:

    >>> python setup.py test

Run tests for Py27, Py35 and PyPy with:

    >>> pip install tox
    >>> tox

# References

- FogBugzPy: https://developers.fogbugz.com/?W199
- FogBugz XML API:
  - https://developers.fogbugz.com/default.asp?W194
  - http://help.fogcreek.com/8202/xml-api

# Acknowledgements

Ported to Python 3 by Jason R. Coombs.


