KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
python-sdk
★ 18
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
tdcfloripa2025-dapr-conversation
:
Palestra realizada no evento The Developers Conference TDC 2025 em Florianópolis na trilha de API e Microservices sobre a integração do Dapr com Large Language Models
proselyte-keycloak-course
:
No description available.
E3-RL4LLMs
:
[ EMNLP 2025 Main ] Enhancing Efficiency and Exploration in Reinforcement Learning for LLMs
Techcareer.Microservice.Egitimi
:
No description available.
pigment
:
A library for creating interactive command-line applications.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
python-sdk
?
Download (.md)
# Pacifica API Examples This repository contains examples of using the REST and Websocket APIs to obtain market data, monitor account information and place or cancel orders on Pacifica. ## Prerequisites ```bash pip3 install -r requirements.txt ``` ## REST API Examples The folder `rest` contains examples of using the REST API. To run an example: 1. Modify the `PRIVATE_KEY` in the desired example file (e.g., `rest/create_market_order.py`) 2. Run the example using Python's module execution mode: ```bash python3 -m rest.create_market_order ``` ## Websocket Examples The folder `ws` contains examples of using the Websocket API. To run an example: 1. Modify the `PRIVATE_KEY` in the desired example file (e.g., `ws/create_market_order.py`) 2. Run the example using Python's module execution mode: ```bash python3 -m ws.create_market_order ```