{"id":27370230,"url":"https://github.com/flexcompute/flow360","last_synced_at":"2026-02-11T01:10:32.344Z","repository":{"id":58299926,"uuid":"527487753","full_name":"flexcompute/Flow360","owner":"flexcompute","description":null,"archived":false,"fork":false,"pushed_at":"2026-02-04T21:26:24.000Z","size":44081,"stargazers_count":20,"open_issues_count":12,"forks_count":9,"subscribers_count":6,"default_branch":"main","last_synced_at":"2026-02-05T01:48:06.713Z","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":"lgpl-2.1","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/flexcompute.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":"2022-08-22T09:05:19.000Z","updated_at":"2026-02-04T21:26:27.000Z","dependencies_parsed_at":"2025-12-18T09:06:46.419Z","dependency_job_id":null,"html_url":"https://github.com/flexcompute/Flow360","commit_stats":null,"previous_names":[],"tags_count":102,"template":false,"template_full_name":null,"purl":"pkg:github/flexcompute/Flow360","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flexcompute%2FFlow360","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flexcompute%2FFlow360/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flexcompute%2FFlow360/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flexcompute%2FFlow360/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/flexcompute","download_url":"https://codeload.github.com/flexcompute/Flow360/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flexcompute%2FFlow360/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29323983,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T00:34:26.354Z","status":"ssl_error","status_checked_at":"2026-02-11T00:34:09.494Z","response_time":65,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":[],"created_at":"2025-04-13T08:48:24.649Z","updated_at":"2026-02-11T01:10:32.337Z","avatar_url":"https://github.com/flexcompute.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Flow360\n\n![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/flexcompute/Flow360/pypi-publish.yml)\n![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/flexcompute/flow360/test.yml?label=tests)\n[![PyPI version shields.io](https://img.shields.io/pypi/v/Flow360)](https://pypi.python.org/pypi/flow360/)\n\n![](https://raw.githubusercontent.com/flexcompute/Flow360/main/img/Flow360-logo.svg)\n\n\n# How to use Flow360 python client\n\n## install\n### Using pip (recommended)\n``pip install flow360``\n\n### install pre-release version\n``pip install -U flow360 --pre``\n\n\n\n## client config api-key\nGet your *api-key* from [flow360.simulation.cloud](https://flow360.simulation.cloud)\n\n\u003cimg src=\"https://user-images.githubusercontent.com/83596707/231739277-0f863e5a-b8b7-4f45-bd9b-6bfa32b8bdcb.gif\" width=\"60%\"\u003e\n\nYou can set your *api-key* by ONE of the following methods:\n1. Set globaly for your acount: ``flow360 configure`` will store *api-key* in ~/.flow360\n2. In shell: \n    * Bash/Zsh shell (Linux or Mac): ``export FLOW360_APIKEY=\"my api-key\"``\n    * Powershell (Windows): ``$Env:FLOW360_APIKEY=\"my api-key\"``\n3. In python script: ``os.environ[\"FLOW360_APIKEY\"] = \"my api-key\"`` before or after `import flow360`\n\n\n---\n**NOTE**\n\nEnvironment ``FLOW360_APIKEY`` variable takes precedence before Flow360 configure file generated by ``flow360 configure``\n\n---\n\n## run examples:\n1. Get examples from this repository:\n    1. ``git clone https://github.com/flexcompute/Flow360.git``\n    2. ``cd Flow360/examples``\n2. run ``python case_results.py``\n\n\n# Development\n## setup\n0. clone repo\n1. Install poetry ``pip install poetry``\n2. ``poetry env activate`` gives you the command to activate the virtual environment, copy paste and run the command to enter the virtual environment. Or you can just prepend `poetry run` on all the python related commands.\n3. Install dependencies: ``poetry install``\n\n## run examples\n- ``python examples/case_results.py``\n- You can also run examples without activating shell:\n``poetry run python examples/case_results.py``\n\n## check in\n1. ``black .`` - performs auto-formatting\n2. ``isort .`` - sorts imports\n3. ``poetry run pylint $(git ls-files \"flow360/*.py\") --rcfile .pylintrc`` - checks code style\n4. ``poetry run pytest -rA tests/simulation`` - run V2 related tests\n5. ``poetry run pytest -rA --ignore tests/simulation`` - run V1 related tests (cannot be run altogether)\n6. ``pytest -rA tests/simulation --cov-report=html --cov=flow360/component/simulation`` - see test coverage report for V2 client\n7. ``pytest -rA --ignore tests/simulation --cov-report=html --cov=flow360 \u0026\u0026 open htmlcov/index.html`` - see test coverage report for V1+V2 client\n\n## Documentation Requirements\n\nIf you want to install the requirements to locally build the documentation you can run:\n\n```bash\npoetry install -E docs\n```\n\nAlternatively, you can also install the extra in any pip-controlled venv:\n\n```bash\npip install -e .[docs]\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflexcompute%2Fflow360","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflexcompute%2Fflow360","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflexcompute%2Fflow360/lists"}