{"id":19021858,"url":"https://github.com/helltraitor/numeric-methods","last_synced_at":"2025-06-23T02:05:13.181Z","repository":{"id":57673812,"uuid":"479970744","full_name":"helltraitor/numeric-methods","owner":"helltraitor","description":"Tools for analyze functions via numeric methods","archived":false,"fork":false,"pushed_at":"2022-05-21T19:05:53.000Z","size":54,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-23T02:04:07.325Z","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":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/helltraitor.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":"2022-04-10T09:30:23.000Z","updated_at":"2022-04-10T14:34:42.000Z","dependencies_parsed_at":"2022-08-31T13:11:20.240Z","dependency_job_id":null,"html_url":"https://github.com/helltraitor/numeric-methods","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/helltraitor/numeric-methods","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helltraitor%2Fnumeric-methods","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helltraitor%2Fnumeric-methods/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helltraitor%2Fnumeric-methods/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helltraitor%2Fnumeric-methods/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/helltraitor","download_url":"https://codeload.github.com/helltraitor/numeric-methods/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helltraitor%2Fnumeric-methods/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261397372,"owners_count":23152487,"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":[],"created_at":"2024-11-08T20:23:50.404Z","updated_at":"2025-06-23T02:05:08.161Z","avatar_url":"https://github.com/helltraitor.png","language":"Python","readme":"# Numeric methods\n Numeric methods is a package of tools for analyze functions via numeric methods\n\n## Features\nFor now this project supports these features:\n* One variable methods in `one_variable` module:\n  * `half_method`: half division method for equation root searching\n\n## Installation\nFor installing this package you can use `pip`:\n```commandline\npy -m pip install numeric-methods\n```\n\n## Changing language\nThis project supports several languages. You can also add yours. For now supports English and Russian. You can set language by using `settings.set_language`:\n```Python\nfrom numeric_methods import settings\n\n\nsettings.set_language(\"en\" or \"EN\" or \"english\" or \"ENGLISH\")\n# ^^^ Returns True\n```\nPlease note that the default language is English and errors have no translation.\n\n## Example of using\n### Half method\n```Python\nfrom numeric_methods.one_variable import half_method\n\n\nfor line in half_method(lambda x: x ** 5 - 2, 1, 2, 0.001):\n    print(line)\n\n# Prints vvv\n#\n# (1, 1.0, 2.0, 1.5, 5.59375)\n# (2, 1.0, 1.5, 1.25, 1.0517578125)\n# (3, 1.0, 1.25, 1.125, -0.197967529296875)\n# (4, 1.125, 1.25, 1.1875, 0.3613920211791992)\n# (5, 1.125, 1.1875, 1.15625, 0.06661096215248108)\n# (6, 1.125, 1.15625, 1.140625, -0.06930162664502859)\n# (7, 1.140625, 1.15625, 1.1484375, -0.002269843505928293)\n# (8, 1.1484375, 1.15625, 1.15234375, 0.03193706909132743)\n# (9, 1.1484375, 1.15234375, 1.150390625, 0.014775536791518107)\n# 1.150390625\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhelltraitor%2Fnumeric-methods","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhelltraitor%2Fnumeric-methods","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhelltraitor%2Fnumeric-methods/lists"}