-
Notifications
You must be signed in to change notification settings - Fork 1
/
rave-tutorial-sync-job.py
45 lines (37 loc) · 976 Bytes
/
rave-tutorial-sync-job.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from pkg_resources import parse_version
import requests
import pyvo as vo
import pandas as pd
#
# Verify the version of pyvo
#
if parse_version(vo.__version__) < parse_version('1.0'):
raise ImportError('pyvo version must larger than 1.0')
print('\npyvo version {version} \n'.format(version=vo.__version__))
#
# Setup tap_service
#
service_name = 'rave-survey.org'
url = "https://www.rave-survey.org/tap"
token = 'Token <your-token>'
print('TAP service {} \n'.format(service_name))
# Setup authorization
tap_session = requests.Session()
tap_session.headers['Authorization'] = token
tap_service = vo.dal.TAPService(url, session=tap_session)
#
# Submit the query as an asyn job
#
lang = 'PostgreSQL'
query = '''
SELECT raveid, radeg, dedeg
FROM "ravedr4"."rave_dr4"
LIMIT 100;
'''
tap_results = tap_service.run_sync(query, language=lang)
print('...DONE\n')
#
# Convert to a pandas.DataFrame
#
results = tap_results.to_table().to_pandas()
print(results.head())