معرفی شرکت ها


agoradesk-py-0.3.1


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Python Interface for Agoradesk.com and LocalMonero.co API
ویژگی مقدار
سیستم عامل -
نام فایل agoradesk-py-0.3.1
نام agoradesk-py
نسخه کتابخانه 0.3.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده marvin8
ایمیل نویسنده marvin8@tuta.io
آدرس صفحه اصلی https://codeberg.org/MarvinsCryptoTools/agoradesk_py
آدرس اینترنتی https://pypi.org/project/agoradesk-py/
مجوز AGPL-3.0-or-later
# agoradesk_py Python interface for [AgoraDesk.com/LocalMonero.co API](https://agoradesk.com/api-docs/v1). This is currently not a complete implementation of the Agoradesk API. The following API calls are currently **not** supported. - Image uploading in chat **I offer no warranty of any kind -- use this at your own risk!** *I am not associated with AgoraDesk.com or LocalMonero.co.* # Requirements: The two main requirements are [httpx](https://www.python-httpx.org/) and [arrow](https://arrow.readthedocs.io/en/latest/). I am using [Poetry](https://python-poetry.org/docs/) with this project to keep track of dependencies / requirements. # Install `pip install agoradesk_py` # How to Use This is an example about how you can use the library ``` #!/usr/bin/env python3 from agoradesk_py.agoradesk import AgoraDesk api_key = <YourAPIKey> api = AgoraDesk(api_key) # Get information about all released trades api_response = api.dashboard_released() if api_response["success"]: trades = api_response["response"]["data"]["contact_list"] for trade in trades: trade_data = trade["data"] print( f"Traded " f"{trade_data['amount_xmr']} XMR with a fee of {trade_data['fee_xmr']} XMR " f"for {trade_data['amount']} {trade_data['currency']} " f"on {trade_data['released_at']}" ) else: print(f"Error: {api_response['response']['error']}") ``` # Running Tests **Please be aware of the unauthenticated API requests limit of 20 req/h** Tests are split into Unit tests and integration tests. To prepare to run any tests: 1) Clone this repository to your computer. 2) Install [Poetry](https://python-poetry.org/docs/) 3) Install all dependencies / requirements for agoradesk_py using the command `poetry install` in the project directory. ## Unit Tests Unit tests do not communicate with LocalMonero / AgoraDesk and are executed entirely locally. Running all unit tests with coverage report is as easy as using the command `poetry run pytest --cov-report term-missing tests/unit/` in the project directory, ## Integration Tests Integration tests communicate with the actual LocalMonero / AgoraDesk production APIs and the tests depend on the two following environment variables being set to the api_keys of two testing accounts at LocalMonero.co. * api_key * api_key2 Please be aware that: * LocalMonero.co or AgoraDesk.com are not currently providing a testing setup and all testes are running in their production environment. * For some tests to run successfully the account for `api_key2` needs to have a balance of currently about 0.1 XMR * The two testing account need to be set to trust each other for all the tests to be successful. To run the integration tests use the command `poetry run pytest tests/integration/` # Contribute Do you have an idea or found a bug in agoradesk_py? Please file an issue and/or submit a pull request! :) Source code is currently on [Codeberg](https://codeberg.org) at https://codeberg.org/MarvinsCryptoTools/agoradesk_py ## Support If you like the API and want to support me you can do so with Monero: 88NszkQU9qsafT9obFaDZSi7RvHSM76exJ1vvgVShTwM4HjvLr7XjJ7jDkFGnxr3UsDXLgT5t569N6uB7Gn4znjAFjUuN1q


نیازمندی

مقدار نام
>=1.2.1,<2.0.0 arrow
>=0.22.0,<0.23.0 httpx


زبان مورد نیاز

مقدار نام
>=3.8,<4.0 Python


نحوه نصب


نصب پکیج whl agoradesk-py-0.3.1:

    pip install agoradesk-py-0.3.1.whl


نصب پکیج tar.gz agoradesk-py-0.3.1:

    pip install agoradesk-py-0.3.1.tar.gz