Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/linea-it/pzserver/build-documentation.yml?label=docs)
![GitHub](https://img.shields.io/github/license/linea-it/pzserver)

A Python library to access data and services from the LSST [Photo-z Server](https://pz-server-dev.linea.org.br/).
A Python library to access data and services from the LSST [Photo-z Server](https://pz-server.linea.org.br/).

The Photo-z (PZ) Server is an online service based on software developed and delivered as part of the in-kind contribution program BRA-LIN, from LIneA to the Legacy Survey of Space and Time (LSST) caried out by the [Rubin Observatory](https://rubinobservatory.org/). The PZ Server is an open source project. The source code is available on the GitHub repository [linea-it/pzserver_app](https://github.com/linea-it/pzserver_app).

Expand Down Expand Up @@ -45,12 +45,12 @@ Step-by-step procedure to test a new feature or bug fix from a particular branch
3. Create a new Conda environment free from `pzserver` old version installation. Delete any existing one with the same same, if necessary.

```
conda remove --name pzserver-dev --all
conda create -n pzserver-dev python=3.12
conda activate pzserver-dev
conda remove --name pzserver --all
conda create -n pzserver python=3.12
conda activate pzserver
conda install pip
python -m pip install -e '.[dev]'
python -m ipykernel install --user --name pzserver-dev --display-name "Python (pzserver-dev)"
python -m ipykernel install --user --name pzserver --display-name "Python (pzserver)"
```
</p>

Expand All @@ -59,8 +59,7 @@ Step-by-step procedure to test a new feature or bug fix from a particular branch
```
from pzserver import PzServer
token = "****" # your toker
host = "pz-dev" # or "localhost" if testing pipeline back-end locally
pz = PzServer(token, host)
pz = PzServer(token)
```

---