importasyncioimporthttpximportpandasaspd# API endpointendpoint_url="https://sciglass.uni-jena.de/api/author"headers={"Accept":"application/json","Content-type":"application/json","Authorization":"Bearer $SCIGLASS_NEXT_API_KEY"}asyncdefexample():asyncwithhttpx.AsyncClient(timeout=None)asclient:r=awaitclient.get(endpoint_url,headers=headers)ifr.status_code==200:data=r.json()print(data)# Define the desired column ordercolumns=["author","ref_ids"]# in the web UI, ref_ids column is invisible# Convert JSON to DataFrame with specified column orderdf=pd.DataFrame(data,columns=columns)# Display the DataFrameprint(df)# Export the result to CSVdf.to_csv('out.csv',index=False)# Below is optional with query parameter# Find ref_ids for author "Williams A.E." for examplerow=df[df['author']=='Williams A.E.']ifnotrow.empty:ref_ids=[int(ref_id.strip())forref_idinrow.iloc[0]['ref_ids'].split('')ifref_id.strip()]print(f"Reference IDs: {ref_ids}")params={"ref_id":ref_ids}r=awaitclient.get(endpoint_url,headers=headers,params=params)ifr.status_code==200:data=r.json()print(data)else:print(f"Request failed with status code: {r.status_code}")print("Response text:",r.text)returnelse:print(f"Request failed with status code: {r.status_code}")print("Response text:",r.text)asyncio.run(example())
[{'table_id':461,'ref_id':175,'reference':'Surface tension of various molten glasses. Badger A.E., Parmelee C.W. and Williams A.E., J.Am.Ceram.Soc., 1937, vol. 20, No. 10, p. 325.'},{'table_id':462,'ref_id':175,'reference':'Surface tension of various molten glasses. Badger A.E., Parmelee C.W. and Williams A.E., J.Am.Ceram.Soc., 1937, vol. 20, No. 10, p. 325.'},{'table_id':35260,'ref_id':32959,'reference':'Notes on barium glasses. Williams A.E. and Cox S.F., Trans.Amer.Cer.Soc., 1916, vol. 18, p. 315.'},{'table_id':460,'ref_id':175,'reference':'Surface tension of various molten glasses. Badger A.E., Parmelee C.W. and Williams A.E., J.Am.Ceram.Soc., 1937, vol. 20, No. 10, p. 325.'},{'table_id':457,'ref_id':175,'reference':'Surface tension of various molten glasses. Badger A.E., Parmelee C.W. and Williams A.E., J.Am.Ceram.Soc., 1937, vol. 20, No. 10, p. 325.'},{'table_id':459,'ref_id':175,'reference':'Surface tension of various molten glasses. Badger A.E., Parmelee C.W. and Williams A.E., J.Am.Ceram.Soc., 1937, vol. 20, No. 10, p. 325.'},{'table_id':458,'ref_id':175,'reference':'Surface tension of various molten glasses. Badger A.E., Parmelee C.W. and Williams A.E., J.Am.Ceram.Soc., 1937, vol. 20, No. 10, p. 325.'}]