{"id":37798108,"url":"https://github.com/uncscode/particula-beta","last_synced_at":"2026-01-16T15:22:58.741Z","repository":{"id":272836900,"uuid":"868656582","full_name":"uncscode/particula-beta","owner":"uncscode","description":"Particula-beta development for particula and sister packages.","archived":false,"fork":false,"pushed_at":"2025-09-02T16:45:14.000Z","size":29075,"stargazers_count":0,"open_issues_count":2,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-05T10:48:40.217Z","etag":null,"topics":["aerosol-chambers","aerosol-chemistry","aerosol-modelling","aerosol-science","aerosols","microphysics"],"latest_commit_sha":null,"homepage":"https://uncscode.github.io/particula-beta/","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/uncscode.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"license","code_of_conduct":null,"threat_model":null,"audit":null,"citation":"citation","codeowners":".github/codeowners","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-10-06T23:41:54.000Z","updated_at":"2025-04-09T15:31:49.000Z","dependencies_parsed_at":"2025-02-19T23:20:47.655Z","dependency_job_id":"924a9cde-bce6-4390-a008-97458d006819","html_url":"https://github.com/uncscode/particula-beta","commit_stats":null,"previous_names":["uncscode/particula-beta"],"tags_count":1,"template":false,"template_full_name":"uncscode/template","purl":"pkg:github/uncscode/particula-beta","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uncscode%2Fparticula-beta","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uncscode%2Fparticula-beta/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uncscode%2Fparticula-beta/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uncscode%2Fparticula-beta/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/uncscode","download_url":"https://codeload.github.com/uncscode/particula-beta/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uncscode%2Fparticula-beta/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28479409,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T11:59:17.896Z","status":"ssl_error","status_checked_at":"2026-01-16T11:55:55.838Z","response_time":107,"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":["aerosol-chambers","aerosol-chemistry","aerosol-modelling","aerosol-science","aerosols","microphysics"],"created_at":"2026-01-16T15:22:55.893Z","updated_at":"2026-01-16T15:22:58.730Z","avatar_url":"https://github.com/uncscode.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Overview\n\nParticula-Beta is the development platform for the Particula package.\n\n\n\n---\n\n## Installation\n\nYou can install `particula-beta` directly from GitHub using `pip`. This allows you to get the latest version of the package, even if it is not yet published on PyPI.\n\n### Install the Latest Version\n\nTo install the latest version from the main branch, run:\n\n```bash\npip install git+https://github.com/uncscode/particula-beta.git\n```\n\n### Install a Specific Branch, Tag, or Commit\n\nIf you want to install a specific version of `particula-beta`, you can specify a branch, tag, or commit in the installation command.\n\n- **Install from a specific branch** (e.g., `dev` branch):\n  ```bash\n  pip install git+https://github.com/uncscode/particula-beta.git@dev\n  ```\n\n- **Install a specific release version** (e.g., `v0.1.0`):\n  ```bash\n  pip install git+https://github.com/uncscode/particula-beta.git@v0.1.0\n  ```\n\n- **Install from a specific commit** (replace `commit_hash` with an actual commit hash):\n  ```bash\n  pip install git+https://github.com/uncscode/particula-beta.git@commit_hash\n  ```\n\n### Verifying Installation\n\nAfter installation, you can verify that `particula-beta` is installed correctly by running:\n\n```bash\npython -c \"import particula_beta; print(particula_beta.__version__)\"\n```\n\nIf the package was installed successfully, this command will print the installed version of `particula-beta`.\n\n---\n\n## Upgrading `particula-beta`\n\nTo upgrade to the latest version of `particula-beta`, use:\n\n```bash\npip install --upgrade git+https://github.com/uncscode/particula-beta.git\n```\n\nor\n\n```bash\npip install -U git+https://github.com/uncscode/particula-beta.git\n```\n\nIf you need a specific branch, tag, or commit:\n\n- Upgrade to a specific branch:\n  ```bash\n  pip install -U git+https://github.com/uncscode/particula-beta.git@dev\n  ```\n- Upgrade to a specific release version:\n  ```bash\n  pip install -U git+https://github.com/uncscode/particula-beta.git@v1.0.0\n  ```\n- Upgrade to a specific commit:\n  ```bash\n  pip install -U git+https://github.com/uncscode/particula-beta.git@commit_hash\n  ```\n\nIf the upgrade does not apply correctly, you can force a reinstall:\n\n```bash\npip install --force-reinstall git+https://github.com/uncscode/particula-beta.git\n```\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funcscode%2Fparticula-beta","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Funcscode%2Fparticula-beta","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funcscode%2Fparticula-beta/lists"}