{"id":28468463,"url":"https://github.com/cemsbv/py-pilecore","last_synced_at":"2026-04-13T12:01:11.430Z","repository":{"id":200485607,"uuid":"705589054","full_name":"cemsbv/py-pilecore","owner":"cemsbv","description":"Public python SDK for the CEMS PileCore web-API","archived":false,"fork":false,"pushed_at":"2026-04-10T15:09:07.000Z","size":42930,"stargazers_count":4,"open_issues_count":33,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-10T17:05:31.093Z","etag":null,"topics":["pthon","sdk-python"],"latest_commit_sha":null,"homepage":"https://cemsbv.github.io/py-pilecore/","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/cemsbv.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-10-16T10:02:20.000Z","updated_at":"2026-04-10T15:07:23.000Z","dependencies_parsed_at":"2026-04-10T17:01:58.014Z","dependency_job_id":null,"html_url":"https://github.com/cemsbv/py-pilecore","commit_stats":null,"previous_names":["cemsbv/py-pilecore"],"tags_count":50,"template":false,"template_full_name":null,"purl":"pkg:github/cemsbv/py-pilecore","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cemsbv%2Fpy-pilecore","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cemsbv%2Fpy-pilecore/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cemsbv%2Fpy-pilecore/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cemsbv%2Fpy-pilecore/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cemsbv","download_url":"https://codeload.github.com/cemsbv/py-pilecore/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cemsbv%2Fpy-pilecore/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31751705,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T09:16:15.125Z","status":"ssl_error","status_checked_at":"2026-04-13T09:16:05.023Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["pthon","sdk-python"],"created_at":"2025-06-07T08:07:36.862Z","updated_at":"2026-04-13T12:01:11.392Z","avatar_url":"https://github.com/cemsbv.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# py-pilecore\nPublic python SDK for the CEMS PileCore web-API\n\n[![Checked with mypy](https://www.mypy-lang.org/static/mypy_badge.svg)](http://mypy-lang.org/)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n[![Imports: isort](https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat\u0026labelColor=ef8336)](https://pycqa.github.io/isort/)\n[![Coverage Status](https://coveralls.io/repos/github/cemsbv/py-pilecore/badge.svg)](https://coveralls.io/github/cemsbv/py-pilecore)\n\n\nThis repository is created by [CEMS BV](https://cemsbv.nl/) and is a public python wrapper around the CEMS [PileCore web-API](https://nuclei.cemsbv.io/#/pilecore/api).\n\n# Installation\n\nTo install a package in this repository run:\n\n`$ pip install py-pilecore`\n\n\n## ENV VARS\n\nTo use `py-pilecore` add the follow ENV vars to your environment. Or provide them when asked.\n\n```\n* NUCLEI_TOKEN\n    - Your NUCLEI user token\n```\n\nYou can obtain your `NUCLEI_TOKEN` on [NUCLEI](https://nuclei.cemsbv.io/#/). \nGo to `personal-access-tokens` and create a new user token.\n\n# Contribution\n\n## Environment\n\nWe recommend developing in Python3.11 with a clean virtual environment (using `virtualenv` or `conda`), installing the requirements from the requirements.txt file:\n\nExample using `virtualenv` and `pip` to install the dependencies in a new environment .env on Linux:\n\n```bash\npython -m venv .env\nsource .env/bin/activate\npython -m pip install --upgrade pip setuptools\npip install -r requirements.txt\npip install -e .\n```\n\n## Documentation\n\nBuild the docs:\n\n```bash\npython -m pip install --upgrade pip setuptools\npip install -r requirements.txt\npip install .\n\nsphinx-build -b html docs public\n```\n\n## Format\n\nWe format our code with black and isort.\n\n```bash\nblack --config \"pyproject.toml\" src/pypilecore tests notebooks\nisort --settings-path \"pyproject.toml\" src/pypilecore tests notebooks\n```\n\n## Lint\n\nTo maintain code quality we use the GitHub super-linter.\n\nTo run the linters locally, run the `run_super_linters.sh` bash script from the root directory.\n\n## UnitTest\n\nTest the software with the use of coverage:\n\n```bash\npython -m pip install --upgrade pip setuptools\npip install -r requirements.txt\npip install -e .\ncoverage run -m pytest\n```\n\n## Requirements\n\nRequirements are autogenerated by the `pip-compile` command with python 3.11\n\nInstall pip-tools with:\n\n```bash\npip install pip-tools\n```\n\nGenerate requirements.txt file with:\n\n```bash\npip-compile --extra=test --extra=lint --extra=docs --output-file=requirements.txt pyproject.toml\n```\n\nUpdate the requirements within the defined ranges with:\n\n```bash\npip-compile --upgrade --extra=test --extra=lint --extra=docs --output-file=requirements.txt pyproject.toml\n```\n\nNote that `pip-compile` might run from your global path. You can also invoke the compile\ncommand from the `piptools` module on a specific python installation (e.g. within a virtualenv):\n\n```bash\npython -m piptools compile","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcemsbv%2Fpy-pilecore","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcemsbv%2Fpy-pilecore","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcemsbv%2Fpy-pilecore/lists"}