Skip to content

lunixbochs/mexbtcapi

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

90 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MExBtcAPI

Project Goals

  • provide a set of well developed classes useful in representing concepts like
    • currency
    • money
    • exchange rate
    • currency exchange
    • exchange order
  • promote their use
  • provide API implementations of various bitcoin exchanges using them

Small Demo

import mexbtcapi
from mexbtcapi.concepts.currencies import USD
from mexbtcapi.concepts.currency import Amount


ten_dollars= Amount(10, USD)
for api in mexbtcapi.apis:
    exchange_rate= api.market(USD).getTicker().sell
    print "At %s I can get %s for my %s (that's %s)"%(api.name, exchange_rate.convert( ten_dollars ), ten_dollars, exchange_rate)

At the moment, this code returns this output:

At MtGox I can get 1.25 BTC for my 10.00 USD (that's 12.45 USD/BTC)

Development Status

Pre-alpha. Discussion is in course in order to define the API features and interface.

If you're a potential user of this API - your opinion matters, so feel free to join the discussion. Developers are welcome too, obviously

Obtaining the latest source

https://github.com/goncalopp/mexbtcapi

Adding suport for a new exchange

Please consult the add_market file

About

The Multi-Exchange Bitcoin API offers a proper consistent and OO API access across multiple bitcoin exchanges

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%