Skip to content

Commit 3d582b3

Browse files
Update naming
1 parent f9912d4 commit 3d582b3

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

CITATION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ authors:
77
title: "python-kraken-sdk"
88
doi: 10.5281/zenodo.7653259
99
url: "https://github.com/btschwertfeger/python-kraken-sdk"
10-
keywords: ["Python", "Kraken", "cryptocurrency", "exchange", "API", "SDK"]
10+
keywords: ["Python", "Kraken", "Crypto", "Exchange", "API", "SDK"]

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<h1 align="center">Futures and Spot REST and Websocket API Python SDK for the Kraken Cryptocurrency Exchange 🐙</h1>
1+
<h1 align="center">Futures and Spot REST and Websocket API Python SDK for the Kraken Crypto Asset Exchange 🐙</h1>
22

33
<div align="center">
44

@@ -23,7 +23,7 @@
2323
</div>
2424

2525
> ⚠️ This is an unofficial collection of REST and websocket clients for Spot and
26-
> Futures trading on the Kraken cryptocurrency exchange using Python. Payward
26+
> Futures trading on the Kraken Crypto Asset Exchange using Python. Payward
2727
> Ltd. and Kraken are in no way associated with the authors of this package and
2828
> documentation.
2929
>
@@ -160,7 +160,7 @@ kraken futures --api-key=<api-key> --secret-key=<secret-key> https://futures.kra
160160
# 📍 Spot Clients
161161
162162
The python-kraken-sdk provides lots of functions to easily access most of the
163-
REST and websocket endpoints of the Kraken Cryptocurrency Exchange API. Since
163+
REST and websocket endpoints of the Kraken Crypto Asset Exchange API. Since
164164
these endpoints and their parameters may change, all implemented endpoints are
165165
tested on a regular basis.
166166

doc/examples/rest_example_usage.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Usage Examples
2222
==============
2323

2424
The python-kraken-sdk provides lots of functions to easily access most of the
25-
REST and websocket endpoints of the Kraken Cryptocurrency Exchange API. Since
25+
REST and websocket endpoints of the Kraken Crypto Asset Exchange API. Since
2626
these endpoints and their parameters may change, all implemented endpoints are
2727
tested on a regular basis.
2828

doc/examples/trading_bot_templates/futures_bot_template.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Futures Trading Bot Template
2020
----------------------------
2121

2222
The template presented below serves as a starting point for the development of
23-
a trading algorithm for trading futures contracts on the cryptocurrency exchange
23+
a trading algorithm for trading futures contracts on the crypto asset exchange
2424
`Kraken`_ using the `python-kraken-sdk`_.
2525

2626
The trading strategy can be implemented in the ``TradingBot`` class. This class

doc/examples/trading_bot_templates/spot_bot_templates.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Spot Trading Bot Templates
2020
--------------------------
2121

2222
The templates presented below serve as starting points for the development of
23-
a trading algorithms for Spot trading on the cryptocurrency exchange `Kraken`_
23+
a trading algorithms for Spot trading on the crypto asset exchange `Kraken`_
2424
using the `python-kraken-sdk`_.
2525

2626
The trading strategy can be implemented using the ``TradingBot`` class. This

doc/introduction.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ python-kraken-sdk
2626

2727

2828
**This is the documentation of the unofficial Python SDK to interact with the
29-
Kraken cryptocurrency exchange.**
29+
Kraken Crypto Asset Exchange.**
3030

3131
*Payward Ltd. and Kraken are in no way associated with the authors of this
3232
package and documentation. Please note that this project is independent and not
@@ -36,7 +36,7 @@ any issues, losses, or risks associated with its usage.*
3636

3737
This documentation refers to the `python-kraken-sdk`_ and serves to simplify the
3838
application of trading strategies, in which as far as possible all interaction
39-
possibilities with the cryptocurrency exchange Kraken are implemented, tested
39+
possibilities with the crypto asset exchange Kraken are implemented, tested
4040
and documented.
4141

4242
- Gladly open an issue on GitHub on make if something is incorrect or missing

src/kraken/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def print_version(ctx: Context, param: Any, value: Any) -> None: # noqa: ANN401
8989
)
9090
@pass_context
9191
def cli(ctx: Context, **kwargs: dict) -> None:
92-
"""Command-line tool to access the Kraken Cryptocurrency Exchange API"""
92+
"""Command-line tool to access the Kraken Crypto Asset Exchange API"""
9393
ctx.obj = kwargs
9494

9595
logging.basicConfig(

src/kraken/spot/orderbook.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class SpotOrderBookClient(SpotWSClient):
4343
**This client is using the Kraken Websocket API v2**
4444
4545
The orderbook client can be used for instantiation and maintaining one or
46-
multiple order books for Spot trading on the Kraken cryptocurrency exchange.
46+
multiple order books for Spot trading on the Kraken Crypto Asset Exchange.
4747
It uses websockets to subscribe to book feeds and receives book updates,
4848
calculates the checksum and will publish the raw message to the
4949
:func:`on_book_update` function or to the specified callback function.

0 commit comments

Comments
 (0)