1
Technical Support / Re: Handshake status 429 Too Many Request
« on: September 07, 2018, 07:47:09 pm »
i use the python library and i call the account orders
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
wallet.deposit_keys[exchange_name][index]
:param str node: Node to connect to *(optional)*
:param str rpcuser: RPC user *(optional)*
:param str rpcpassword: RPC password *(optional)*
FROM python:3
RUN apt update && apt install -y \
libffi-dev \
libssl-dev \
python-dev \
python3-dev \
git
RUN pip3 install bitshares
RUN pip3 install bitshares --user --upgrade
RUN git clone https://github.com/xeroc/python-graphenelib/
WORKDIR ./python-graphenelib
RUN make install
#RUN pip3 install graphenelib
#RUN pip3 install graphenelib --user --upgrade
RUN mkdir /opt/workspace
WORKDIR /opt/workspace
ADD Bitshares.py .
CMD [ "python", "./Bitshares.py" ]
#docker build -t python-bitshares .