Skip to content

woc-hack/oscar.py

This branch is 4 commits ahead of, 114 commits behind ssc-oscar/oscar.py:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

12c0792 · Nov 29, 2020
Jul 20, 2018
Apr 16, 2018
Jan 19, 2019
May 11, 2019
Apr 16, 2018
Jan 19, 2019
Jul 19, 2020
May 13, 2019
Nov 29, 2020
Jul 17, 2020
Jan 19, 2019
Jun 15, 2020
May 29, 2019
May 19, 2020

Repository files navigation

Python interface for OSCAR data

This is a convenience library to access OSCAR dataset. Since everything is stored in local files it won't work unless you have access to one of OSCAR servers.

IMPORTANT: all servers have access to each other's data through NFS, which is subject to network delays and failures. So, for faster access this module assumes you're working on da4, where all the files are stored.

Installation

# pip is not available on OSCAR servers
easy_install --user --upgrade oscar

Reference

Please see https://ssc-oscar.github.io/oscar.py for the reference.

How to contribute - read carefully

master is for releases only. Development happens on feature branches, which stem from dev branch and merge back. Once in a while dev is merged to master, producing a new release. This rule is mostly because of the server layout preventing us from running unit tests automatically.

We use conventional commits message convention. This means that you MUST prepend commit messages with one of:

  • fix: in case the change fixes a problem without changing any interfaces. Example commit message: fix: missing clickhouse-driver dependency (closes #123).
  • feat: the change implements a new feature, without affecting existing interfaces. Example: feat: implement author timeline.
  • chore: the change does not affect functionality, e.g. PEP8 fixes. E.g.: chore: PEP8 fixes
  • docs:: similar to chore: but explicitly related to documentation. E.g.: docs: add timeline usage examples
  • refactor: similar to chore:

In case of breaking changes (i.e. if any interfaces were changed, breaking backward compatibility), commit message should contain BREAKING CHANGE in the footer.

Commit messages will be used to automatically bump version. fix, chore, docs will produce patch versions, feat will result in a minor version bump, and in case of breaking changes the major version will be incremented. As a consequence, you must never change version number manually.

Not following these procedures might take your pull request extra time to review and in some cases will require rewriting the commit history.

About

Python interface for OSCAR data

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 97.6%
  • Makefile 2.0%
  • Dockerfile 0.4%