Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
rochi88 committed Mar 4, 2024
1 parent 670a3bb commit 8bdd8d5
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change log

## [1.0.0] - 2024-03-09
## [1.0.0] - 2024-03-04

### Added
- Updated docs
Expand Down
9 changes: 7 additions & 2 deletions bdshare/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@
"""
from bdshare.stock.market import (get_market_inf, get_latest_pe, get_market_inf_more_data, get_market_depth_data)

from bdshare.util.store import Store

from bdshare.util.upass import (get_token, set_token)
"""
Utility helpers
"""
from bdshare.util.store import Store
from bdshare.util.tickers import Tickers
from bdshare.util.upass import (get_token, set_token)
from bdshare.util.session import (get_session, set_session)
15 changes: 15 additions & 0 deletions bdshare/util/tickers.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# -*- coding:utf-8 -*-

"""
Created on 2024/03/04
@author: Raisul Islam
@group : bdshare.xyz
@contact: [email protected]
"""

class Tickers(object):
def __init__(self):
pass

def ticker_data(self, ticker=None):
pass

0 comments on commit 8bdd8d5

Please sign in to comment.