Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoSign in
Socket

databento

Package Overview
Dependencies
Maintainers
1
Versions
96
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

databento - pypi Package Compare versions

Comparing version
0.69.0
to
0.70.0
+1
-2
databento/common/dbnstore.py

@@ -1531,4 +1531,3 @@ from __future__ import annotations

df[px_fields] = (
df[px_fields].replace(UNDEF_PRICE, np.nan).applymap(decimal.Decimal)
/ FIXED_PRICE_SCALE
df[px_fields].replace(UNDEF_PRICE, np.nan).map(decimal.Decimal) / FIXED_PRICE_SCALE
)

@@ -1535,0 +1534,0 @@ elif price_type == PriceType.FLOAT:

@@ -138,2 +138,4 @@ from __future__ import annotations

The output symbology type to resolve to.
Must be a valid symbology combination with `stype_in`.
See `symbology combinations`. https://www.databento.com/standards-and-conventions/symbology#supported-symbology-combinations
limit : int, optional

@@ -140,0 +142,0 @@ The maximum number of records to return. If `None` then no limit.

@@ -53,2 +53,4 @@ from __future__ import annotations

The output symbology type to resolve to.
Must be a valid symbology combination with `stype_in`.
See `symbology combinations`. https://www.databento.com/standards-and-conventions/symbology#supported-symbology-combinations
start_date : date or str

@@ -55,0 +57,0 @@ The inclusive UTC start date of the request range.

@@ -83,2 +83,4 @@ from __future__ import annotations

The output symbology type to resolve to.
Must be a valid symbology combination with `stype_in`.
See `symbology combinations`. https://www.databento.com/standards-and-conventions/symbology#supported-symbology-combinations
limit : int, optional

@@ -182,2 +184,4 @@ The maximum number of records to return. If `None` then no limit.

The output symbology type to resolve to.
Must be a valid symbology combination with `stype_in`.
See `symbology combinations`. https://www.databento.com/standards-and-conventions/symbology#supported-symbology-combinations
limit : int, optional

@@ -184,0 +188,0 @@ The maximum number of records to return. If `None` then no limit.

@@ -14,2 +14,3 @@ from __future__ import annotations

from databento_dbn import SType
from databento_dbn import SystemCode
from databento_dbn import VersionUpgradePolicy

@@ -392,3 +393,8 @@

else:
logger.info(
if record.code == SystemCode.END_OF_INTERVAL:
system_msg_level = logging.DEBUG
else:
system_msg_level = logging.INFO
logger.log(
system_msg_level,
"system message code=%s msg='%s'",

@@ -395,0 +401,0 @@ record.code,

@@ -1,1 +0,1 @@

__version__ = "0.69.0"
__version__ = "0.70.0"
Metadata-Version: 2.4
Name: databento
Version: 0.69.0
Version: 0.70.0
Summary: Official Python client library for Databento

@@ -24,6 +24,6 @@ License-Expression: Apache-2.0

Requires-Dist: aiohttp (>=3.9.0,<4.0.0) ; python_version >= "3.12"
Requires-Dist: databento-dbn (>=0.46.0,<0.47.0)
Requires-Dist: databento-dbn (>=0.48.0,<0.49.0)
Requires-Dist: numpy (>=1.23.5) ; python_version < "3.12"
Requires-Dist: numpy (>=1.26.0) ; python_version >= "3.12"
Requires-Dist: pandas (>=1.5.3)
Requires-Dist: pandas (>=1.5.3,<4.0.0)
Requires-Dist: pip-system-certs (>=4.0) ; platform_system == "Windows"

@@ -73,3 +73,3 @@ Requires-Dist: pyarrow (>=13.0.0)

- aiohttp = "^3.8.3"
- databento-dbn = "~0.46.0"
- databento-dbn = "~0.48.0"
- numpy = ">=1.23.5"

@@ -76,0 +76,0 @@ - pandas = ">=1.5.3"

[project]
name = "databento"
version = "0.69.0"
version = "0.70.0"
description = "Official Python client library for Databento"

@@ -13,6 +13,6 @@ readme = "README.md"

"aiohttp>=3.9.0,<4.0.0; python_version >= '3.12'",
"databento-dbn~=0.46.0",
"databento-dbn~=0.48.0",
"numpy>=1.23.5; python_version < '3.12'",
"numpy>=1.26.0; python_version >= '3.12'",
"pandas>=1.5.3",
"pandas>=1.5.3,<4.0.0",
"pip-system-certs>=4.0; platform_system == 'Windows'",

@@ -53,8 +53,6 @@ "pyarrow>=13.0.0",

pytest-asyncio = "==0.21.1"
ruff = "^0.0.291"
ruff = "^0.14.0"
tomli = "^2.0.1"
types-requests = "^2.30.0.0"
tomli = "^2.0.1"
teamcity-messages = "^1.32"
types-pytz = "^2024.1.0.20240203"
types-aiofiles = "^23.2.0.20240403"

@@ -61,0 +59,0 @@ [build-system]

@@ -35,3 +35,3 @@ # databento-python

- aiohttp = "^3.8.3"
- databento-dbn = "~0.46.0"
- databento-dbn = "~0.48.0"
- numpy = ">=1.23.5"

@@ -38,0 +38,0 @@ - pandas = ">=1.5.3"

Sorry, the diff of this file is too big to display