Paul Martin

Results 36 comments of Paul Martin

Version 2.0.9 up on pypi now with added servers for Doge and Dash. Your example is working now @maxclax. ```shell python -m pip install --upgrade cryptos ``` ```python >>> api.get_balances(addr)...

What's a sweep Tx compared with a regular transaction? There is a calculate_fee method on each coin class.

A lot of the code for wallet management was in the original library by Vitalik, so it was carried over to the fork and honestly I can't really remember how...

This is a basic start to retrieving the data: ``` python import StringIO import gzip self.navigationurl = 'https://api.betfair.com/exchange/betting/rest/v1/en/navigation/menu.json' def downloadNavigationData(self): request = urllib2.Request(self.navigationurl) request.add_header('Accept-encoding', 'gzip') request.add_header("X-Application", self.app_key) request.add_header("X-Authentication", self.session_token) opener...

This is expected behaviour. The username passed to authenticate is the actual username. If you are using email as the username field it must be passed separately. You can see...

I think there should be a list of problematic countries for which country area validation is not applied (any value accepted). Perhaps over time we can fix the individual issues...