{"id":16314808,"url":"https://github.com/smarie/python-spawny","last_synced_at":"2025-12-14T06:20:39.369Z","repository":{"id":57469674,"uuid":"97923861","full_name":"smarie/python-spawny","owner":"smarie","description":"Tiny utility to launch a script in a separate process, possibly using another python executable/environment. The script may be accessed from the main process through a proxy. This project relies on the default multiprocessing module, therefore the child environment does not require any particular package to be present (not even this package).","archived":false,"fork":false,"pushed_at":"2020-04-26T14:31:33.000Z","size":1505,"stargazers_count":4,"open_issues_count":5,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-10-13T18:09:04.610Z","etag":null,"topics":["daemon","distribute","object","process","proxy","python","rpc","spawn"],"latest_commit_sha":null,"homepage":"https://smarie.github.io/python-spawny/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/smarie.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}},"created_at":"2017-07-21T08:17:32.000Z","updated_at":"2022-05-18T05:42:03.000Z","dependencies_parsed_at":"2022-09-19T14:00:24.693Z","dependency_job_id":null,"html_url":"https://github.com/smarie/python-spawny","commit_stats":null,"previous_names":["smarie/python-object-as-daemon"],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smarie%2Fpython-spawny","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smarie%2Fpython-spawny/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smarie%2Fpython-spawny/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smarie%2Fpython-spawny/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/smarie","download_url":"https://codeload.github.com/smarie/python-spawny/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":221839454,"owners_count":16889620,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["daemon","distribute","object","process","proxy","python","rpc","spawn"],"created_at":"2024-10-10T21:55:19.428Z","updated_at":"2025-12-14T06:20:39.303Z","avatar_url":"https://github.com/smarie.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# spawny\n\n*Spawn python code in a separate python interpreter and communicate with it easily.*\n\n[![Python versions](https://img.shields.io/pypi/pyversions/spawny.svg)](https://pypi.python.org/pypi/spawny/) [![Build Status](https://travis-ci.org/smarie/python-spawny.svg?branch=master)](https://travis-ci.org/smarie/python-spawny) [![Tests Status](https://smarie.github.io/python-spawny/junit/junit-badge.svg?dummy=8484744)](https://smarie.github.io/python-spawny/junit/report.html) [![codecov](https://codecov.io/gh/smarie/python-spawny/branch/master/graph/badge.svg)](https://codecov.io/gh/smarie/python-spawny)\n\n[![Documentation](https://img.shields.io/badge/doc-latest-blue.svg)](https://smarie.github.io/python-spawny/) [![PyPI](https://img.shields.io/pypi/v/spawny.svg)](https://pypi.python.org/pypi/spawny/) [![Downloads](https://pepy.tech/badge/spawny)](https://pepy.tech/project/spawny) [![Downloads per week](https://pepy.tech/badge/spawny/week)](https://pepy.tech/project/spawny) [![GitHub stars](https://img.shields.io/github/stars/smarie/python-spawny.svg)](https://github.com/smarie/python-spawny/stargazers)\n\n**This is the readme for developers.** The documentation for users is available here: [https://smarie.github.io/python-spawny/](https://smarie.github.io/python-spawny/)\n\n## Want to contribute ?\n\nContributions are welcome ! Simply fork this project on github, commit your contributions, and create pull requests.\n\nHere is a non-exhaustive list of interesting open topics: [https://github.com/smarie/python-spawny/issues](https://github.com/smarie/python-spawny/issues)\n\n## Running the tests\n\nThis project uses `pytest`.\n\n```bash\npytest -v spawny/tests/\n```\n\nYou may need to install requirements for setup beforehand, using \n\n```bash\npip install -r ci_tools/requirements-test.txt\n```\n\n## Packaging\n\nThis project uses `setuptools_scm` to synchronise the version number. Therefore the following command should be used for development snapshots as well as official releases: \n\n```bash\npython setup.py egg_info bdist_wheel rotate -m.whl -k3\n```\n\nYou may need to install requirements for setup beforehand, using \n\n```bash\npip install -r ci_tools/requirements-setup.txt\n```\n\n## Generating the documentation page\n\nThis project uses `mkdocs` to generate its documentation page. Therefore building a local copy of the doc page may be done using:\n\n```bash\nmkdocs build -f docs/mkdocs.yml\n```\n\nYou may need to install requirements for doc beforehand, using \n\n```bash\npip install -r ci_tools/requirements-doc.txt\n```\n\n## Generating the test reports\n\nThe following commands generate the html test report and the associated badge. \n\n```bash\npytest --junitxml=junit.xml -v spawny/tests/\nant -f ci_tools/generate-junit-html.xml\npython ci_tools/generate-junit-badge.py\n```\n\n### PyPI Releasing memo\n\nThis project is now automatically deployed to PyPI when a tag is created. Anyway, for manual deployment we can use:\n\n```bash\ntwine upload dist/* -r pypitest\ntwine upload dist/*\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsmarie%2Fpython-spawny","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsmarie%2Fpython-spawny","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsmarie%2Fpython-spawny/lists"}