{"id":32175678,"url":"https://github.com/sdat2/sithom","last_synced_at":"2026-02-22T14:44:09.944Z","repository":{"id":38799643,"uuid":"496635214","full_name":"sdat2/sithom","owner":"sdat2","description":"A package for shared utility scripts.","archived":false,"fork":false,"pushed_at":"2025-08-23T10:46:56.000Z","size":159,"stargazers_count":5,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-29T23:18:40.811Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sdat2.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.txt","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":"CITATION.cff","codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-05-26T13:40:02.000Z","updated_at":"2025-09-15T12:54:52.000Z","dependencies_parsed_at":"2024-03-26T05:22:52.419Z","dependency_job_id":"cf04fb4b-852c-493f-9ac0-cded701f1a22","html_url":"https://github.com/sdat2/sithom","commit_stats":{"total_commits":98,"total_committers":2,"mean_commits":49.0,"dds":"0.030612244897959218","last_synced_commit":"8eadd854f888bb4e90c046bcf7a55a9e29fe14d1"},"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/sdat2/sithom","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sdat2%2Fsithom","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sdat2%2Fsithom/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sdat2%2Fsithom/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sdat2%2Fsithom/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sdat2","download_url":"https://codeload.github.com/sdat2/sithom/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sdat2%2Fsithom/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29716358,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-22T13:30:57.152Z","status":"ssl_error","status_checked_at":"2026-02-22T13:30:28.561Z","response_time":110,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-10-21T19:45:20.298Z","updated_at":"2026-02-22T14:44:09.937Z","avatar_url":"https://github.com/sdat2.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# sithom README\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)[![Code Style](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)[![Python package](https://github.com/sdat2/sithom/actions/workflows/python-package.yml/badge.svg)](https://github.com/sdat2/sithom/actions/workflows/python-package.yml)[![Documentation Status](https://readthedocs.org/projects/sithom/badge/?version=latest)](https://sithom.readthedocs.io/en/latest/?badge=latest)[![PyPI version](https://badge.fury.io/py/sithom.svg)](https://badge.fury.io/py/sithom)[![DOI](https://zenodo.org/badge/496635214.svg)](https://zenodo.org/badge/latestdoi/496635214)\n\n\n## Description\n\nA package for shared utility scripts that I use in my research projects.\n\nI realised I was copying functionality from project to project. So instead, here it is.\n\n## Install using pip\n\n```bash\npip install sithom\n```\n\n## Install using conda\n\n```bash\nconda install -c conda-forge sithom\n```\n\n## Package structure\n\n```text\n\n├── CHANGELOG.txt      \u003c- List of main changes at each new package version.\n├── CITATION.cff       \u003c- File to allow you to easily cite this repository.\n├── LICENSE            \u003c- MIT Open software license.\n├── Makefile           \u003c- Makefile with commands.\n├── pytest.ini         \u003c- Enable doctest unit-tests.\n├── README.md          \u003c- The top-level README for developers using this project.\n├── setup.py           \u003c- Python setup file for pip install.\n|\n├── sithom             \u003c- Package folder.\n|   |\n│   ├── __init__.py    \u003c- Init file.\n│   ├── _version.py    \u003c- Key package information.\n│   ├── curve.py       \u003c- Curve fitting w. uncertainty propogation.\n│   ├── io.py          \u003c- Input output functions (json).\n│   ├── misc.py        \u003c- Miscellanious utilities.\n│   ├── place.py       \u003c- Place objects.\n│   ├── plot.py        \u003c- Plot utilties.\n│   ├── time.py        \u003c- Time utilties.\n│   ├── unc.py         \u003c- Uncertainties utilties.\n│   └── xr.py          \u003c- Xarray utilties.\n|\n└── tests              \u003c- Test folder.\n\n```\n\n## Requirements\n\n - Python 3.8+\n - `matplotlib`\n - `seaborn`\n - `cmocean`\n - `xarray`\n - `uncertainties`\n - `jupyterthemes`\n ","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsdat2%2Fsithom","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsdat2%2Fsithom","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsdat2%2Fsithom/lists"}