{"id":23141799,"url":"https://github.com/allaman/darlehenpy","last_synced_at":"2026-02-02T05:38:31.383Z","repository":{"id":204871415,"uuid":"712882694","full_name":"Allaman/darlehenpy","owner":"Allaman","description":"Paket mit Funktionen zur Berechnung eines Darlehens","archived":false,"fork":false,"pushed_at":"2024-06-25T13:35:47.000Z","size":23,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-08T02:25:53.530Z","etag":null,"topics":["darlehen","financial","finanzen","loan","module","package","python"],"latest_commit_sha":null,"homepage":"","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/Allaman.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":"2023-11-01T11:57:30.000Z","updated_at":"2024-06-25T13:35:51.000Z","dependencies_parsed_at":"2024-06-25T15:14:46.880Z","dependency_job_id":null,"html_url":"https://github.com/Allaman/darlehenpy","commit_stats":null,"previous_names":["allaman/darlehenpy"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/Allaman/darlehenpy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Allaman%2Fdarlehenpy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Allaman%2Fdarlehenpy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Allaman%2Fdarlehenpy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Allaman%2Fdarlehenpy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Allaman","download_url":"https://codeload.github.com/Allaman/darlehenpy/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Allaman%2Fdarlehenpy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29006171,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-02T04:25:24.522Z","status":"ssl_error","status_checked_at":"2026-02-02T04:24:51.069Z","response_time":58,"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":["darlehen","financial","finanzen","loan","module","package","python"],"created_at":"2024-12-17T14:14:29.080Z","updated_at":"2026-02-02T05:38:31.368Z","avatar_url":"https://github.com/Allaman.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003edarlehenpy\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\n\u003ca href=\"https://github.com/allaman/darlehenpy/actions\"\u003e\u003cimg alt=\"Test Status\" src=\"https://github.com/allaman/darlehenpy/workflows/Test/badge.svg\"\u003e\u003c/a\u003e\n\u003ca href=\"https://github.com/allaman/darlehenspy/blob/main/LICENSE\"\u003e\u003cimg alt=\"License: MIT\" src=\"https://black.readthedocs.io/en/stable/_static/license.svg\"\u003e\u003c/a\u003e\n\u003ca href=\"https://pypi.org/project/darlehen.py/\"\u003e\u003cimg alt=\"PyPI\" src=\"https://img.shields.io/pypi/v/darlehen.py\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\nEin kleines Paket zur Berechnung von Darlehen. Bei weitem (noch 😉) nicht so mächtig wie z.B. der [Hypothekenrechner](https://www.zinsen-berechnen.de/hypothekenrechner.php).\n\nEs wird zwischen der Berechnung basierend auf der Monatsrate oder basierend auf der anfänglichen Tilgungsrate unterschieden. Die Angabe einer jährlichen Sondertilgung ist auch möglich.\n\n[Projekt auf PyPI](https://pypi.org/project/darlehen.py/)\n\n## Quickstart\n\n```\npip install darlehen.py\nimport darlehenpy.darlehen as darlehen\ndarlehen.berechne_mit_monatsrate(...)\ndarlehen.berechne_mit_tilgungsrate(...)\n```\n\n**Achtung!** Punkt als Dezimaltrennzeichen!\n\n## Beispiel\n\nCode in [beispiel.py](https://github.com/Allaman/darlehenpy/blob/main/beispiel.py).\n\nAusgabe:\n\n```\n❯ python beispiel.py\nDarlehensumme: 100000 €\nZinssatz (p.a.): 4.1 %\nLaufzeit: 10 Jahre\nSondertilung (p.a.): 5000 €\n\nMonatsrate: 500 €\nAnfängliche Tilgungsrate: 1.9 %\nRestschuld nach 10 Jahren: 16033.91 €\nGesamtaufwand: 126033.91 €\n\nAnfängliche Tilgungsrate: 5.5 %\nMonatsrate: 800.0 €\nRestschuld nach 10 Jahren: 0.0 €\nGesamtaufwand: 118474.63 €\nAbbezahlt im 3. Monat des 9. Jahres\n```\n\nMan kann sich damit natürlich viele Werte auf einmal berechnen lassen und vergleichen. Z.B. mit einer CSV mit folgenden Spalten als Input:\n\n```csv\nP,i,M,n,S,\n```\n\nbzw.\n\n```\nP,i,t0,n,S,\n```\n\n## Tests\n\nEine Testmatrix mit Werten ermittelt durch den [Hypothekenrechner](https://www.zinsen-berechnen.de/hypothekenrechner.php) auf [zinsen-berechnen.de](https://www.zinsen-berechnen.de) testet die berechneten Ergebnisse.\n\n**Es kann keine Gewährleistung für die von diesem Paket berechneten Ergebnisse übernommen werden**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fallaman%2Fdarlehenpy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fallaman%2Fdarlehenpy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fallaman%2Fdarlehenpy/lists"}