Metadata-Version: 2.1
Name: querySDSS
Version: 1.8
Summary: Query for SDSS datarelease 18
Home-page: https://github.com/aCosmicDebugger/querySDSS
Author: aCosmicDebbuger
Author-email: acosmicdebugger@gmail.com
License: MIT
Keywords: example project
Platform: UNKNOWN

QuerySDSS - Retrieve and Analyze SDSS Data
==========================================

QuerySDSS is a Python script that utilizes the Astropy and Astroquery
libraries to retrieve data from the Sloan Digital Sky Survey (SDSS) Data
Release 18 (DR18). This script fetches information about celestial
objects including their nature (galaxy, star, quasar), redshift,
coordinates, positions, and flux values.

Requirements
------------

-  Python 3.x
-  Astroquery
-  Astropy

You can install the required packages using the following command:

.. code:: bash

   pip install astroquery astropy

How to Install
--------------

Clone this repository to your local machine using the following command:

.. code:: bash

   git clone https://github.com/aCosmicDebbuger/querySDSS.git
   cd querySDSS

or you can use pip

.. code:: bash

   pip install querySDSS

Usage:
------

Just opena a terminal where the file is located and run

.. code:: bash

   python3 querySDSS.py

or if you need to import it:

.. code:: python

   from querySDSS.querySDSS.querySDSS import query_sdss_data

   a = query_sdss_data()
   print(a)

You’ll get a table of SDSS data.


