Skip to content

Contributing to Albert Python SDK

Thanks for your interest in contributing to the Albert Python SDK! We aim to make it as easy as possible to get started and see your changes released quickly.


πŸš€ Quickstart

  1. Clone the repository:

    git clone https://github.com/your-username/albert-python.git
    cd albert-python
    
  2. Run the setup script (installs all dependencies and hooks):

    ./setup.sh
    
  3. Create a new branch for your work:

    git checkout -b my-awesome-feature
    
  4. Make your changes, then commit. Pre-commit hooks and linting will run automatically.

  5. Push your branch and open a Pull Request against main.

Your contribution could ship in days or weeks -- welcome aboard! πŸš€

Dynamic Versioning

The package version is defined in the src/albert/__init__.py file and read dynamically when building distributions.

Code Style

This project uses ruff for both formatting and linting. Formatting and linting rules are enforced in the CI process.

To check (or fix) your code formatting, you can run the commands,

# Check
uv run ruff format . --check

# Fix
uv run ruff format .

To check (or fix) your code linting, you can run the commands

# Check
uv run ruff check .

# Fix
uv run ruff check . --fix

For VSCode users, there is also base workspace settings defined in .vscode/settings.json that enable automatic fomatting and import sorting on-save using the Ruff for VSCode extension.

Commit Guidelines

We use the Conventional Commits format:

type(scope)!: summary
  • type: one of feat, fix, refactor, chore, docs, test, style, build, ci, perf, revert
  • scope: optional, a module or feature name (e.g., auth, session)
  • !: optional, indicates a breaking change
  • summary: short and clear β€” think β€œwhen applied, the SDK will…”

Examples

feat(auth): support token refresh
fix!: remove deprecated param handling
docs: clarify local dev setup

This keeps commit history readable and enables changelog automation.

Documentation

Using Numpy-Style Docstrings

All public methods and classes in this repository should follow the Numpy-style docstring format. This ensures consistency and compatibility with mkdocstrings for automated documentation generation.

Example

class Cas:
    """
    Represents a CAS entity.

    Attributes
    ----------
    number : str
        The CAS number.
    name : str, optional
        The name of the CAS.
    """

    def from_string(cls, *, number: str) -> "Cas":
        """
        Creates a Cas object from a string.

        Parameters
        ----------
        number : str
            The CAS number.

        Returns
        -------
        Cas
            The Cas object created from the string.
        """
        return cls(number=number)

When contributing new classes or methods, ensure all public members have properly formatted Numpy-style docstrings.

Adding New Classes

To add coverage for a new microservice, you can add a page by doing the following:

  1. in the docs/ folder make a new markdown file following the pattern of the others. For example:

    # cas.md
    
    ::: albert.collections.cas
    
  2. In mkdocs.yml add a link to the nav section (Alphabetically Sorted) following the existing pattern.

Testing Documentation Locally

Before pushing documentation changes, verify that everything is rendering correctly.

1. Install dependencies (if not already installed)

uv sync

2. Build and serve the documentation locally

uv run mkdocs serve

3. Open http://127.0.0.1:8000/ (or specified address) in your browser and navigate through the docs to confirm that

  • All references and links are resolving correctly.
  • Docstrings are properly formatted.
  • No missing or broken sections exist.

Deploying Documentation

The documentation is automatically built and deployed to GitHub Pages when a pull request is merged into main.

How It Works

  1. A PR is merged into main.
  2. CircleCI runs the deploy_docs job, which:

    • Builds the latest version of the documentation using mkdocs build --clean.
    • Pushes the built docs to the gh-pages branch.
    • GitHub Pages automatically serves the latest docs

Manually Triggering a Docs Deployment

If needed, you can manually re-deploy the docs by running:

git checkout main
git pull origin main
uv run mkdocs build --clean
git push origin gh-pages

Creating a Release

  1. Ensure the version in src/albert/__init__.py is updated to the desired release version
  2. Go to the Releases section of the repository
  3. Click "Draft a new release"
  4. Create a new tag matching the version in __init__.py (e.g., if __init__.py has __version__ = "0.3.0", use tag v0.3.0)
  5. Click "Generate release notes" and review/edit as needed
  6. Publish the release

The release will automatically trigger the CircleCI workflow to:

  • Build and publish the package to PyPI
  • Build and deploy the documentation

Note: Only designated Albert team members have permissions to create releases.