Skip to content

Repository for the project of M1 data science students

Notifications You must be signed in to change notification settings

astrodeepnet/students-project-2024

Repository files navigation

students-project-2024

Repository for the project of M1 data science students

Setup

Install the required packages

pip install -r requirements.txt

Download the data

Download from the official_APOGEE website the files:

  • allStarLite-dr17-synspec_rev1.fits

Paste the file in the data folder.

Install postgresql

Go to the official website and follow the instructions to install postgresql on your machine.

Create a connection to the database

Edit or create src/database/connection.py file with the following content:

password = "XXXXXXX;"
username = "YYYYYYY" # default is "postgres"
database = "ZZZZZZZ" # default is "postgres"
host = "localhost"
port = 5432

DATABASE_URL = f"postgresql+psycopg2://{username}:{password}@{host}:{port}/{database}"

Run the pipeline

python src/main.py

About

Repository for the project of M1 data science students

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •