Replies: 1 comment 2 replies
-
need help |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
hi when im trying to pull the data from quickbase it is giving me report too large
what to do
%python
import pyqb
from pyspark.sql import *
import pandas as pd
qbc = pyqb.Client(url='https://jcm.quickbase.com/',user_token='b5zj8k,database='bq2ma8j'))
result = qbc.doquery(qid=34,database='bq2ma8j')
samp = result['record']
spark = SparkSession.builder.getOrCreate()
df = pd.DataFrame(samp)
df.createOrReplaceTempView('table1')
Beta Was this translation helpful? Give feedback.
All reactions