Metadata-Version: 1.0
Name: campbx
Version: 1.0.5
Summary: CampBX API Bindings
Home-page: https://github.com/glenbot/campbx
Author: Glen Zangirolami
Author-email: glenbot@gmail.com
License: MIT
Download-URL: https://github.com/glenbot/campbx
Description: 
        ======
        CampBX
        ======
        
        About
        =====
        
        This library provides python bindings for the `CampBX bitcoin trading platform <http://campbx.com>`_.
        To obtain API access please `see the documenation at CampBX <https://campbx.com/api.php>`_.
        
        Note::
          
          All endpoints that require authentication are using HTTPS.
        
        Installation
        ============
        
        ``pip install campbx``
        
        Documentation
        =============
        
        Read the full documentation on `ReadTheDocs <http://campbx.readthedocs.org/>`_.
        
        Quick Usage
        ===========
        
        The API does not require a username and password, however you will have limited access
        to only the public endpoints.
        
        Initializing the API::
        
            from campbx import CampBX
            c = CampBX('username', 'password')
        
        Getting market ticker::
        
            c.xticker()
        
            {'Best Ask': '5.17', 'Best Bid': '5.07', 'Last Trade': '5.07'}
        
        Check your account balance::
        
            c.my_funds()
        
            {'Liquid BTC': '0.00000000',
             'Liquid USD': '2.19',
             'Margin Account BTC': '0.00000000',
             'Margin Account USD': '0.00',
             'Total BTC': '15.00000000',
             'Total USD': '74.58'}
        
        Check your open orders::
        
            c.my_orders()
        
            {'Buy': [{'Dark Pool': 'No',
               'Fill Type': 'Incremental',
               'Margin Percent': 'None',
               'Order Entered': '2012-04-10 08:59:51',
               'Order Expiry': '2012-05-11 00:00:00',
               'Order ID': '239801',
               'Order Type': 'Quick Buy',
               'Price': '4.50',
               'Quantity': '16.00000000',
               'Stop-loss': 'No'}],
             'Sell': [{'Dark Pool': 'No',
               'Fill Type': 'Incr',
               'Margin Percent': 'None',
               'Order Entered': '2012-04-05 22:07:05',
               'Order Expiry': '2012-05-06 00:00:00',
               'Order ID': '215603',
               'Order Type': 'Quick Sell',
               'Price': '5.20',
               'Quantity': '15.00000000',
               'Stop-loss': 'No'}]}
        
        License
        =======
        
        `MIT License <http://www.opensource.org/licenses/mit-license.php>`_
        
        Copyright (c) 2011 Glen Zangirolami
        
        Permission is hereby granted, free of charge, to any person obtaining a copy of this software and 
        associated documentation files (the "Software"), to deal in the Software without restriction, including 
        without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 
        sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject 
        to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all copies or substantial 
        portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT 
        NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 
        IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 
        WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 
        SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
        
Platform: Linux
Platform: Windows
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries
