Skip to content

Commit 22c905c

Browse files
committed
final structure
1 parent 6b95718 commit 22c905c

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ The general convention used in all functions (both REST and websockets), is that
6262

6363
The API key and secret are required for private calls and optional for public calls. The access window and debugging parameter are optional for all calls. The access window is used to determine whether the request arrived within time, the value is specified in milliseconds. You can use the [time](https://github.com/bitvavo/python-bitvavo-api#get-time) function to synchronize your time to our server time if errors arise. Debugging should be set to true when you want to log additional information and full responses. Any parameter can be omitted, private functions will return an error when the api key and secret have not been set.
6464
```python
65-
from pythonBitvavoApi.bitvavo import Bitvavo
65+
from python_bitvavo_api.bitvavo import Bitvavo
6666
bitvavo = Bitvavo({
6767
'APIKEY': "<APIKEY>",
6868
'APISECRET': "<APISECRET>",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from pythonBitvavoApi.bitvavo import Bitvavo
1+
from python_bitvavo_api.bitvavo import Bitvavo
22
import sys
33
import signal
44
import time

0 commit comments

Comments
 (0)