Metadata-Version: 2.0
Name: stockfighter
Version: 0.2.5
Summary: API wrapper for Stockfighter
Home-page: https://github.com/striglia/stockfighter
Author: Scott Triglia
Author-email: scott.triglia@gmail.com
License: ISCL
Keywords: stockfighter
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: ISC License (ISCL)
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: requests
Requires-Dist: six

===============================
Stockfighter
===============================

.. image:: https://img.shields.io/pypi/v/stockfighter.svg
        :target: https://pypi.python.org/pypi/stockfighter

.. image:: https://img.shields.io/travis/striglia/stockfighter.svg
        :target: https://travis-ci.org/striglia/stockfighter

.. image:: https://readthedocs.org/projects/stockfighter/badge/?version=latest
        :target: https://readthedocs.org/projects/stockfighter/?badge=latest
        :alt: Documentation Status


API wrapper for Stockfighter

* Free software: ISC license
* Documentation someday at: https://stockfighter.readthedocs.org.

Get things started
--------------------

Not hard!

.. code-block:: shell

    pip install stockfighter

Using the standard API

.. code-block:: python

    from stockfighter import Stockfighter
    s = Stockfighter(venue='TESTEX', account='EXB123456')
    print(s.venue_stocks())

...and the GM API for managing levels and such

.. code-block:: python

    from stockfighter import GM
    gm = GM()
    print gm.start('first_steps')  # Start the first level programmatically

Features
--------------------

* Calling the core Stockfighter API is pretty important :)
* Includes some rudimentary support for the GM API, such as it is known
* .....get back to me later on what else


=======
History
=======

0.2.5 (2015-12-14)
------------------

* Python3 re-compatibility 
* Fix status_for_all_orders endpoint

0.2.4 (2015-12-12)
------------------

* Fix some outlying GM implementation bugs
* Add test for basic GM client object instantiation

0.2.3 (2015-12-12)
------------------

* Tests now also assert the API is responding w/ good "ok" values, not just HTTP 200s.
* Py 3.5 testing included

0.2.2 (2015-12-12)
------------------

* Fix testing and implementation for place_order

0.2.2 (2015-12-11)
------------------

* Make py2 and py3 compatibility a thing, guaranteed by Tox and Travis.

0.2.1 (2015-12-11)
------------------

* Working README and quick install

0.2.0 (2015-12-11)
------------------

* All API functions implemented and tested

0.1.0 (2015-12-11)
------------------

* First release on PyPI.


