in the brokers init file, at this point the feed is working, to check
the tables use vd tool.
venues for deribit
fix syms for venues.
little refactor in get_config, and created get_fh_config for cryptofeed.
add class Pair in venues, PAIRTYPES for future uses
minor fixes in venues
Necessary imports
add get_market_info
Necessary imports
modify self_pairs type to ChainMap
created exch_info in api class
formatting
get_assets refactor
add get_mkt_pairs method
search_symbols output type fix
symbol_info refactor
stream_quotes now using FeedInit
Minor refactor in open_symbol_search
Add necessary classes in init file for deribit
data._web_bs: try to raise jsonrpc errors in parent task
Fixed pair instrument name in search_symbols endpoint.
Fixed instrument in bars endpoint, for options in deribits bs_mktid instead bs_fqme.
Fixed the id is in msg.
bs_mktid instead bs_fqme for deribits options
No longer needed
Added expiry property for OptionPair
Fix bs_fqme using venue and expiry
now using exch_info in search_symbols
get_assets now uses public endpoint
It's better if the data is available through a public endpoint.
Added options symbols to get_assets
move object classes to venue
json_rpc_auth_wrapper
cache_symbols refactor
get_mkt_info cleanup
name formatting fixes
refactor redundant code
move constants to venue
config refactor
only one get_config method for api class and cryptofeed feed handler
Code base is already ported for `Qt6` so this removes the pyqt5 dep,
adds latest pyqt6 as well as buncha other updates:
- add `xonsh` and ptk as dev deps for those of us using wacky shells ;P
- bump compiled deps as needed for python 3.12 (`numpy`, `numba`)
- add `httpx` and drop `asks` since the latter is zombied and not compat
with other libs on 3.12.
- add `ruff` linting ignore rules for the new `.ui.qt` shim mod layer.
- few other deps updates to latest versions.
- add in the `keywords` and `classifiers` sections from the old
`setup.py`.
Since `poetry` doesn't seem to actually mark optional group deps as such
in the lock file (!?) manually generate a `poetry.lock` with the
optional groups commented out in the `pyproject.toml`; this is all in
an attempt at trying to make `poetry2nix` build without any UI components
which seem to be the source of much frustration without hacking on p2n
and/or nixpkgs repos..
Further drop all the old build system files including the
setup.py and requirements.txt files.
Since we eventually want to allow users to minimally deploy `pikerd`
service-tree (aka distributed cross host) installs, we need to offer
a "headless" deps group. Really this is just the core dep set minus Qt
and some aux search related libs (for now).
The new `.dev` group is for adding hacking and testing tools including
`xonsh` since that will eventually be our REPL of choice more then
likely B)
Oh, and fix the namespace path (was a typo) for the `ledger` CLI and
of course bump the lock file.
Makes it easier to pass the overrides to multiple p2n functions (like
hopefully `.mkPoetryEnv`). Also, add some commented attempts at using
`mkPoetryEnv` and todo list for "why", remove the `poetry` CLI main
point from the pyproject.toml, bump the poetry lock file.
NB: for now this is linking to a presumed local clone of the
`poetry2nix` repo since part of fixing what was adjusted here needs to
be patched upstream, which means hackin on the p2n repo in tandem B)
Since there's some dependency build issues we need
to tweak the following to get baseline `nix develop` working:
- drop `python-levenshtein` (required by `fuzzywuzzy[speedup]`) for now
since the overlay and/or wheel install needs to be properly figured
out.
- build `pyqt5` from src for the moment (since `preferWheel` doesn't
seem to be workin?) despite it taking forever XD
- add in the `flake.lock` file.