{"id":28438622,"url":"https://github.com/smdlabtech/poetry-py-template","last_synced_at":"2026-04-29T13:35:31.986Z","repository":{"id":294219338,"uuid":"986288025","full_name":"smdlabtech/poetry-py-template","owner":"smdlabtech","description":"🌍Poetry Python Template","archived":false,"fork":false,"pushed_at":"2025-05-19T11:49:49.000Z","size":56,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-28T17:43:13.270Z","etag":null,"topics":["free","notebooks","open","peotry","pyproject","pyproject-toml","python","template"],"latest_commit_sha":null,"homepage":"","language":"Jupyter Notebook","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/smdlabtech.png","metadata":{"files":{"readme":"README.md","changelog":null,"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}},"created_at":"2025-05-19T11:40:10.000Z","updated_at":"2025-06-03T14:44:12.000Z","dependencies_parsed_at":"2025-05-19T12:55:15.294Z","dependency_job_id":null,"html_url":"https://github.com/smdlabtech/poetry-py-template","commit_stats":null,"previous_names":["smdlabtech/poetry-py-template"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/smdlabtech/poetry-py-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smdlabtech%2Fpoetry-py-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smdlabtech%2Fpoetry-py-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smdlabtech%2Fpoetry-py-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smdlabtech%2Fpoetry-py-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/smdlabtech","download_url":"https://codeload.github.com/smdlabtech/poetry-py-template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smdlabtech%2Fpoetry-py-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32427813,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T13:34:34.882Z","status":"ssl_error","status_checked_at":"2026-04-29T13:34:29.830Z","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":["free","notebooks","open","peotry","pyproject","pyproject-toml","python","template"],"created_at":"2025-06-06T01:08:16.905Z","updated_at":"2026-04-29T13:35:31.971Z","avatar_url":"https://github.com/smdlabtech.png","language":"Jupyter Notebook","funding_links":[],"categories":[],"sub_categories":[],"readme":"# poetry-py-template\n\n## Description\n\nThis is a minimal project template for Python projects that uses Poetry for dependency virtual environment management.\n\n## Setup\n\n### Prerequisites\n1. (Optional) [Download](https://asdf-vm.com/guide/getting-started.html#_2-download-asdf) and [install](https://asdf-vm.com/guide/getting-started.html#_3-install-asdf) [asdf](https://asdf-vm.com/) on your machine to manage the version of Python and Poetry used in this project. Once done, run `asdf install` to install the versions specified in `.tool-versions`. Alternatively, install them manually as described below:\n2. [Install Poetry](https://python-poetry.org/docs/#installation) on your machine\n3. [Install Python 3](https://www.python.org/downloads/) on your machine\n4. Create a virtual environment for your project using the command `poetry install`. This will install all the basic dependencies specified in your `pyproject.toml` file.\n\n### Add Dependencies\n1. You can use the following command to add dependencies to your Poetry env:\n    ```shell\n    poetry add \u003cpackage\u003e\n    ```\n2. You can also add dev dependencies by running:\n    ```shell\n    poetry add \u003cpackage\u003e --group dev\n    ```\n### General\n1. Update the `LICENSE` file\n2. Update the `README.md` file\n3. Change the project name, description, version, and authors in `pyproject.toml`\n4. Finally, once you get to this point, you might want to delete the `poetry.lock` file and re-run the following command to update your virtual environment with your new changes:\n    ```shell\n    poetry install\n    ```\n\n## Usage\n1. Add your own scripts and modules in `src/`\n2. Add your own notebooks in `notebooks/`\n3. Add your own examples of environment variables used in `.env.example`\n4. Add your own unit tests in `tests/`\n5. Double check that you have set up your virtual env correctly by running \n    ```shell\n    poetry env info\n    ```\n6. To open a shell inside your virtual env, run\n   ```shell\n    poetry shell\n    ```\n7. To run a command within your virtual env, prepend it with `poetry run`. For example:\n   ```shell\n   poetry run echo \"hello from poetry env\"\n   ```\n8. If at any point you have added more dependencies and you want it to reflect in your `poetry.lock` file, you can run \n   ```shell\n   poetry update\n   ```\n9. To run your tests, run:\n    ```shell\n    poetry run pytest .\n    ```\n\n---\nAuthor : [ruankie](https://github.com/ruankie/poetry-py-template/tree/main)  \nFind on GitHub  : https://github.com  ","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsmdlabtech%2Fpoetry-py-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsmdlabtech%2Fpoetry-py-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsmdlabtech%2Fpoetry-py-template/lists"}