Skip to content

Commit 8969d3c

Browse files
committed
MOD: Update docs links to new canonical URL
1 parent 3e72b92 commit 8969d3c

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,22 @@
1010
The official Python client library for [Databento](https://databento.com).
1111

1212
Key features include:
13-
- Fast, lightweight access to both live and historical data from [multiple markets](https://docs.databento.com/knowledge-base/new-users/venues-and-publishers?historical=python&live=python).
14-
- [Multiple schemas](https://docs.databento.com/knowledge-base/new-users/market-data-schemas?historical=python&live=python) such as MBO, MBP, top of book, OHLCV, last sale, and more.
15-
- [Fully normalized](https://docs.databento.com/knowledge-base/new-users/normalization?historical=python&live=python), i.e. identical message schemas for both live and historical data, across multiple asset classes.
16-
- Provides mappings between different symbology systems, including [smart symbology](https://docs.databento.com/api-reference-historical/basics/symbology?historical=python&live=python) for futures rollovers.
13+
- Fast, lightweight access to both live and historical data from [multiple markets](https://databento.com/docs/knowledge-base/new-users/venues-and-publishers?historical=python&live=python).
14+
- [Multiple schemas](https://databento.com/docs/knowledge-base/new-users/market-data-schemas?historical=python&live=python) such as MBO, MBP, top of book, OHLCV, last sale, and more.
15+
- [Fully normalized](https://databento.com/docs/knowledge-base/new-users/normalization?historical=python&live=python), i.e. identical message schemas for both live and historical data, across multiple asset classes.
16+
- Provides mappings between different symbology systems, including [smart symbology](https://databento.com/docs/api-reference-historical/basics/symbology?historical=python&live=python) for futures rollovers.
1717
- [Point-in-time]() instrument definitions, free of look-ahead bias and retroactive adjustments.
18-
- Reads and stores market data in an extremely efficient file format using [Databento Binary Encoding](https://docs.databento.com/knowledge-base/new-users/dbn-encoding?historical=python&live=python).
19-
- Event-driven [market replay](https://docs.databento.com/api-reference-historical/helpers/bento-replay?historical=python&live=python), including at high-frequency order book granularity.
20-
- Support for [batch download](https://docs.databento.com/knowledge-base/new-users/stream-vs-batch?historical=python&live=python) of flat files.
18+
- Reads and stores market data in an extremely efficient file format using [Databento Binary Encoding](https://databento.com/docs/knowledge-base/new-users/dbn-encoding?historical=python&live=python).
19+
- Event-driven [market replay](https://databento.com/docs/api-reference-historical/helpers/bento-replay?historical=python&live=python), including at high-frequency order book granularity.
20+
- Support for [batch download](https://databento.com/docs/knowledge-base/new-users/stream-vs-batch?historical=python&live=python) of flat files.
2121
- Support for [pandas](https://pandas.pydata.org/docs/), CSV, and JSON.
2222

2323
## Documentation
24-
The best place to begin is with our [Getting started](https://docs.databento.com/getting-started?historical=python&live=python) guide.
24+
The best place to begin is with our [Getting started](https://databento.com/docs/getting-started?historical=python&live=python) guide.
2525

26-
You can find our full client API reference on the [Historical Reference](https://docs.databento.com/api-reference-historical?historical=python&live=python) and
27-
[Live Reference](https://docs.databento.com/reference-live?historical=python&live=python) sections of our documentation. See also the
28-
[Examples](https://docs.databento.com/examples?historical=python&live=python) section for various tutorials and code samples.
26+
You can find our full client API reference on the [Historical Reference](https://databento.com/docs/api-reference-historical?historical=python&live=python) and
27+
[Live Reference](https://databento.com/docs/reference-live?historical=python&live=python) sections of our documentation. See also the
28+
[Examples](https://databento.com/docs/examples?historical=python&live=python) section for various tutorials and code samples.
2929

3030
## Requirements
3131
The library is fully compatible with the latest distribution of Anaconda 3.8 and above.
@@ -79,7 +79,7 @@ array = data.to_ndarray() # to ndarray
7979
```
8080

8181
Note that the API key was also passed as a parameter, which is
82-
[not recommended for production applications](https://docs.databento.com/knowledge-base/new-users/security-managing-api-keys?historical=python&live=python).
82+
[not recommended for production applications](https://databento.com/docs/knowledge-base/new-users/security-managing-api-keys?historical=python&live=python).
8383
Instead, you can leave out this parameter to pass your API key via the `DATABENTO_API_KEY` environment variable:
8484

8585
```python

databento/common/dbnstore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ class DBNStore:
330330
331331
See Also
332332
--------
333-
https://docs.databento.com/knowledge-base/new-users/dbn-encoding
333+
https://databento.com/docs/knowledge-base/new-users/dbn-encoding
334334
335335
"""
336336

notebooks/quickstart.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
"\n",
2828
"**Note:**\n",
2929
"\n",
30-
"For information on our symbology, refer to https://docs.databento.com/api-reference-historical/basics/symbology. \n",
30+
"For information on our symbology, refer to https://databento.com/docs/api-reference-historical/basics/symbology. \n",
3131
"\n",
32-
"For a more detailed API reference, refer to https://docs.databento.com/api-reference-historical.\n",
32+
"For a more detailed API reference, refer to https://databento.com/docs/api-reference-historical.\n",
3333
"\n",
3434
"This tutorial covers the following:\n",
3535
"- Using the historical client to request metadata\n",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ classifiers = [
1919
"Topic :: Office/Business :: Financial :: Investment",
2020
]
2121
readme = "README.md"
22-
documentation = "https://docs.databento.com"
22+
documentation = "https://databento.com/docs"
2323
homepage = "https://databento.com"
2424
repository = "https://github.com/databento/databento-python"
2525

0 commit comments

Comments
 (0)