2020-06-16 03:13:37 +00:00
|
|
|
# piker: trading gear for hackers.
|
2020-12-29 15:15:38 +00:00
|
|
|
# Copyright 2020-eternity Tyler Goodlet (in stewardship for piker0)
|
2018-11-12 05:29:43 +00:00
|
|
|
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
2020-06-16 03:13:37 +00:00
|
|
|
# it under the terms of the GNU Affero General Public License as published by
|
2018-11-12 05:29:43 +00:00
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2020-06-16 03:13:37 +00:00
|
|
|
# GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2018-11-12 05:29:43 +00:00
|
|
|
|
2018-02-08 07:18:33 +00:00
|
|
|
"""
|
2020-06-16 03:13:37 +00:00
|
|
|
piker: trading gear for hackers.
|
2020-12-29 15:15:38 +00:00
|
|
|
|
2018-02-08 07:18:33 +00:00
|
|
|
"""
|
2022-11-07 20:38:54 +00:00
|
|
|
from ._daemon import open_piker_runtime
|
|
|
|
from .data.feed import open_feed
|
|
|
|
|
|
|
|
__all__ = [
|
|
|
|
'open_piker_runtime',
|
|
|
|
'open_feed',
|
|
|
|
]
|