A client to the ASI-SSDC's SED Builder API.
Project description
sedbuilder
The sedbuilder package implements a Python interface to the ASI Space Science Data Center's SED Builder REST API.
Overview
This package provides programmatic access to multi-wavelength spectral energy distribution (SED) data from catalogs, surveys, and archival observations across the electromagnetic spectrum. It is based on SED Builder, a software developed at the ASI-SSDC to produce and display the SED data over the web.
Installation
pip install ssdc-sedbuilder
Quick Start
You can fetch data querying a source name or its coordinates.
from sedbuilder import get_data
# By coordinates
response = get_data(ra=244.9795, dec=-15.64022)
# By name
response = get_data(name="Sco X-1")
# Access data in different formats
table = response.to_astropy() # Astropy Table
data_dict = response.to_dict() # Python dictionary
jt = response.to_jetset(z=0.034) # Jetset table
json_str = response.to_json() # JSON string
df = response.to_pandas() # Pandas DataFrame (requires pandas)
# Gets references to the dataset catalog and papers
refs = response.sources()
When calling get_data by name, resolve_name queries the SSDC server — which checks SSDC, SIMBAD, and NED — falling back to the CDS Sesame resolver via astropy if no match is found.
from sedbuilder import resolve_name
(ra, dec), db = resolve_name("Crab Nebula")
Resolving a source name takes time. We suggest querying on coordinates when available.
Development
# install with development dependencies
git clone https://github.com/peppedilillo/sedbuilder.git
cd sedbuilder
pip install -e ".[dev]"
# routes queries to test server (requires internal network)
source dev.env
# install linter pre-commit hooks
pre-commit install
# runs tests
pytest
# serve and build documentation
mkdocs serve
mkdocs build
For more, see documentation.
Requests
Need a new feature? Don't hesitate to ask in our discussion section.
Documentation
Check out our API reference.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ssdc_sedbuilder-1.1.2.tar.gz.
File metadata
- Download URL: ssdc_sedbuilder-1.1.2.tar.gz
- Upload date:
- Size: 387.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Hatch/1.16.5 cpython/3.11.15 HTTPX/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
acb01f983ac6f171dc7e951e04a3cbf483d535f67d77b7537dd875e87bb1cc19
|
|
| MD5 |
f912e2824369c2b0638fe5ea07ed5676
|
|
| BLAKE2b-256 |
0454234cf3bcc701d390b2ee20202f3acf5c20ca5a9975d7ab5e1a864ffcfb18
|
File details
Details for the file ssdc_sedbuilder-1.1.2-py3-none-any.whl.
File metadata
- Download URL: ssdc_sedbuilder-1.1.2-py3-none-any.whl
- Upload date:
- Size: 37.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: Hatch/1.16.5 cpython/3.11.15 HTTPX/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9556651231f522526bcbe2b2900e39b5f38b470c84fa418badafeda097c5a64
|
|
| MD5 |
7160f0e1ca52547b3add1097e0e001e7
|
|
| BLAKE2b-256 |
2dd4cc1caec9fdca1a667c9c7d81f28510453c5d504bb6980ad45c0288202b3a
|