File tree 15 files changed +16
-16
lines changed
15 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -220,8 +220,8 @@ But if working in a fresh environment (for example after cloning the source code
220
220
221
221
* [ krakenex] [ python3-krakenex ] is licensed under the LGPLv3 license.
222
222
* [ arrow] [ arrow-license ] is licensed under the Apache License, Version 2.0.
223
- * [ tabulate] [ tabulate-license ] is licensed under the MIT Licence .
224
- * [ colorlog] [ colorlog-license ] is licensed under the MIT Licence .
223
+ * [ tabulate] [ tabulate-license ] is licensed under the MIT License .
224
+ * [ colorlog] [ colorlog-license ] is licensed under the MIT License .
225
225
226
226
### Development dependencies
227
227
Original file line number Diff line number Diff line change 6
6
This module contains various functions related to interacting
7
7
with or processing data from Kraken's API.
8
8
9
- Licensed under the Apache License, Version 2.0. See the LICENCE file.
9
+ Licensed under the Apache License, Version 2.0. See the LICENSE file.
10
10
"""
11
11
12
12
import http
Original file line number Diff line number Diff line change 6
6
This module queries the CancelOrder method of Kraken's API
7
7
and outputs the results in a tabular format.
8
8
9
- Licensed under the Apache License, Version 2.0. See the LICENCE file.
9
+ Licensed under the Apache License, Version 2.0. See the LICENSE file.
10
10
"""
11
11
12
12
from clikraken .api .api_utils import query_api
Original file line number Diff line number Diff line change 6
6
This module queries the Balance method of Kraken's API
7
7
and outputs the results in a tabular format.
8
8
9
- Licensed under the Apache License, Version 2.0. See the LICENCE file.
9
+ Licensed under the Apache License, Version 2.0. See the LICENSE file.
10
10
"""
11
11
12
12
from collections import OrderedDict
Original file line number Diff line number Diff line change 6
6
This module queries the ClosedOrders method of Kraken's API
7
7
and outputs the results in a tabular format.
8
8
9
- Licensed under the Apache License, Version 2.0. See the LICENCE file.
9
+ Licensed under the Apache License, Version 2.0. See the LICENSE file.
10
10
"""
11
11
12
12
from decimal import Decimal
Original file line number Diff line number Diff line change 6
6
This module queries the OpenOrders method of Kraken's API
7
7
and outputs the results in a tabular format.
8
8
9
- Licensed under the Apache License, Version 2.0. See the LICENCE file.
9
+ Licensed under the Apache License, Version 2.0. See the LICENSE file.
10
10
"""
11
11
12
12
from decimal import Decimal
Original file line number Diff line number Diff line change 6
6
This module queries the AddOrder method of Kraken's API
7
7
and outputs the results in a tabular format.
8
8
9
- Licensed under the Apache License, Version 2.0. See the LICENCE file.
9
+ Licensed under the Apache License, Version 2.0. See the LICENSE file.
10
10
"""
11
11
12
12
import clikraken .global_vars as gv
Original file line number Diff line number Diff line change 6
6
This module queries the Depth method of Kraken's API
7
7
and outputs the results in a tabular format.
8
8
9
- Licensed under the Apache License, Version 2.0. See the LICENCE file.
9
+ Licensed under the Apache License, Version 2.0. See the LICENSE file.
10
10
"""
11
11
12
12
from collections import OrderedDict
Original file line number Diff line number Diff line change 6
6
This module queries the Trades method of Kraken's API
7
7
and outputs the results in a tabular format.
8
8
9
- Licensed under the Apache License, Version 2.0. See the LICENCE file.
9
+ Licensed under the Apache License, Version 2.0. See the LICENSE file.
10
10
"""
11
11
12
12
from collections import OrderedDict
Original file line number Diff line number Diff line change 6
6
This module queries the Ticker method of Kraken's API
7
7
and outputs the results in a tabular format.
8
8
9
- Licensed under the Apache License, Version 2.0. See the LICENCE file.
9
+ Licensed under the Apache License, Version 2.0. See the LICENSE file.
10
10
"""
11
11
12
12
from collections import OrderedDict
Original file line number Diff line number Diff line change 6
6
7
7
Command line client for the Kraken exchange
8
8
9
- Licensed under the Apache License, Version 2.0. See the LICENCE file.
9
+ Licensed under the Apache License, Version 2.0. See the LICENSE file.
10
10
"""
11
11
12
12
from clikraken .api .api_utils import load_api_keyfile
Original file line number Diff line number Diff line change 7
7
and associates the different subcommands with the corresponding
8
8
function to be called.
9
9
10
- Licensed under the Apache License, Version 2.0. See the LICENCE file.
10
+ Licensed under the Apache License, Version 2.0. See the LICENSE file.
11
11
"""
12
12
13
13
import argparse
Original file line number Diff line number Diff line change 6
6
This module contains various functions that are used throughout
7
7
clikraken's modules.
8
8
9
- Licensed under the Apache License, Version 2.0. See the LICENCE file.
9
+ Licensed under the Apache License, Version 2.0. See the LICENSE file.
10
10
"""
11
11
12
12
import arrow
Original file line number Diff line number Diff line change 5
5
6
6
This module serves as a container for global variables.
7
7
8
- Licensed under the Apache License, Version 2.0. See the LICENCE file.
8
+ Licensed under the Apache License, Version 2.0. See the LICENSE file.
9
9
"""
10
10
11
11
import os
Original file line number Diff line number Diff line change 5
5
6
6
This module sets the logger object up for use throughout clikraken's modules.
7
7
8
- Licensed under the Apache License, Version 2.0. See the LICENCE file.
8
+ Licensed under the Apache License, Version 2.0. See the LICENSE file.
9
9
"""
10
10
11
11
import logging
You can’t perform that action at this time.
0 commit comments