0

I am trying to replace pandas with Orca in my project for a better performance. But I don't know How to load data from a DolphinDB DFS table, which I have already created and imported data into on DolphinDB Server.

I load the table in this way in DolphinDB:

tb=loadTable("dfs://tickData", "tick1")

How to load a DolphinDB DFS table into Python client using Orca?

Irene
  • 9
  • 3

1 Answers1

0
import dolphindb.orca as orca
orca.read_table("dfs://tickData", "tick1")
dovish618
  • 156
  • 5