Skip to content

Instantly share code, notes, and snippets.

View cesarpinto's full-sized avatar

César Pinto cesarpinto

View GitHub Profile
@xombra
xombra / bancos
Last active July 15, 2024 17:05
Codigo y Bancos correspondientes de Venezuela
Banco:
<select name="banco">
<option value=""></option>
<option value="0156">100%BANCO</option>
<option value="0196">ABN AMRO BANK</option>
<option value="0172">BANCAMIGA BANCO MICROFINANCIERO, C.A.</option>
<option value="0171">BANCO ACTIVO BANCO COMERCIAL, C.A.</option>
<option value="0166">BANCO AGRICOLA</option>
<option value="0175">BANCO BICENTENARIO</option>
<option value="0128">BANCO CARONI, C.A. BANCO UNIVERSAL</option>
#!/usr/bin/python3
"""
Author: Leo Vidarte <http://nerdlabs.com.ar>
This is free software,
you can redistribute it and/or modify it
under the terms of the GPL version 3
as published by the Free Software Foundation.
# -*- coding: utf-8 -*-
import requests
from datetime import datetime
def coin_detail(coin):
base_url = 'https://api.bitfinex.com/v1/pubticker/'
url = '{}{}'.format(base_url, coin)
response = requests.get(url)
msg = message(response.json())