piker/piker/__init__.py

28 lines
933 B
Python
Raw Normal View History

2020-06-16 03:13:37 +00:00
# piker: trading gear for hackers.
# 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
"""
2020-06-16 03:13:37 +00:00
piker: trading gear for hackers.
"""
2020-07-03 22:32:40 +00:00
import msgpack # noqa
2021-05-12 12:58:04 +00:00
# TODO: remove this now right?
2020-07-03 22:32:40 +00:00
import msgpack_numpy
# patch msgpack for numpy arrays
msgpack_numpy.patch()