Skip to content

Whalepool/BitfinexPulse

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bitfinex Pulse API Client

Extension of bitfinex-api-py to support the Bitfinex Pulse news feed

Supports the write, del, and hist methods

Installation

clone it

pip3 install -r requirements.txt
python3 setup.py install

Quickstart

from bfx_pulse import BfxPulseClient
import asyncio

client = BfxPulseClient(
  API_KEY=''
  API_SECRET=''
)

response = await client.write('your first message title', 'message content')
t = asyncio.ensure_future(run())
asyncio.get_event_loop().run_until_complete(t)

Releases

No releases published

Packages

No packages published

Languages