{"id":28952163,"url":"https://github.com/legorooj/sloth","last_synced_at":"2026-06-29T17:01:03.468Z","repository":{"id":57468446,"uuid":"243950662","full_name":"Legorooj/sloth","owner":"Legorooj","description":"The best python speedtesting library and command line speedtesting tool","archived":false,"fork":false,"pushed_at":"2020-06-16T07:43:57.000Z","size":254,"stargazers_count":8,"open_issues_count":3,"forks_count":1,"subscribers_count":1,"default_branch":"dev","last_synced_at":"2026-01-23T13:33:05.377Z","etag":null,"topics":["api","python","python3","speedtest","timing"],"latest_commit_sha":null,"homepage":"https://sloth.fluffykoalas.org","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/Legorooj.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.rst","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":"2020-02-29T10:45:39.000Z","updated_at":"2024-06-14T12:55:00.000Z","dependencies_parsed_at":"2022-09-19T09:31:40.176Z","dependency_job_id":null,"html_url":"https://github.com/Legorooj/sloth","commit_stats":null,"previous_names":["fluffykoalas/sloth"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/Legorooj/sloth","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Legorooj%2Fsloth","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Legorooj%2Fsloth/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Legorooj%2Fsloth/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Legorooj%2Fsloth/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Legorooj","download_url":"https://codeload.github.com/Legorooj/sloth/tar.gz/refs/heads/dev","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Legorooj%2Fsloth/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34935530,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-29T02:00:05.398Z","response_time":58,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["api","python","python3","speedtest","timing"],"created_at":"2025-06-23T16:14:17.879Z","updated_at":"2026-06-29T17:01:03.406Z","avatar_url":"https://github.com/Legorooj.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# `sloth`\n\n#### *The* python speedtesting library and command line tool\n\n[![codecov](https://codecov.io/gh/fluffykoalas/sloth/branch/dev/graph/badge.svg)](https://codecov.io/gh/fluffykoalas/sloth)\n[![Build Status](https://dev.azure.com/FluffyKoalas/Sloth/_apis/build/status/fluffykoalas.sloth?branchName=dev)](https://dev.azure.com/FluffyKoalas/Sloth/_build/latest?definitionId=2\u0026branchName=dev)\n[![Codacy Badge](https://api.codacy.com/project/badge/Grade/3f46b1c00c674ce4b614be082c17ef5b)](https://www.codacy.com/gh/fluffykoalas/sloth?utm_source=github.com\u0026amp;utm_medium=referral\u0026amp;utm_content=fluffykoalas/sloth\u0026amp;utm_campaign=Badge_Grade)\n[![License: MIT](https://img.shields.io/badge/License-MIT-brightgreen.svg)](https://choosealicense.com/licenses/mit/)\n[![Contributors](https://img.shields.io/github/contributors/fluffykoalas/sloth.svg)](https://github.com/fluffykoalas/sloth/pulse)\n[![Last Commit](https://img.shields.io/github/last-commit/fluffykoalas/sloth.svg)](https://github.com/fluffykoalas/sloth/commits)\n[![Documentation Status](https://readthedocs.org/projects/sloth-speedtest/badge/?version=latest)](https://sloth.fluffykoalas.org/en/latest/?badge=latest)\n\n`sloth` is a Python package for speedtesting python code and functions with as little code as necessary.\nIt's easy to use and, unlike many projects, has decent documentation.\n\nThe idea behind this API is:\n\n```python\n\u003e\u003e\u003e from sloth import compare_sloth\n\u003e\u003e\u003e import timeit\n\u003e\u003e\u003e compare_sloth(timeit)\n'sloth is loads better than timeit!'\n```\n\nSee? described in 3 lines. *Everything* that `timeit` can do, `sloth` can do better - or will soon. And *alot* of things \n`timeit` *can't* do `sloth` can do anyway.\n\n## A Quick Example\n\n```python\n\u003e\u003e\u003e from sloth.simple import time_callable\n\u003e\u003e\u003e import time\n\u003e\u003e\u003e def my_func(a, b, c):\n...     time.sleep(1)\n...     print(a, b, c)\n\u003e\u003e\u003e time_callable(my_func, 2, 'a', 'b', 'c')\na b c\n1.000063419342041\n```\n\n\n## Installation\n\nYou can install sloth with pip:\n\n```\npip install sloth-speedtest\n```\n\nPlease see the docs for more info.\n\n## Links\n\n* [PyPI](https://pypi.org/project/sloth-speedtest)\n* [Documentation](https://sloth.fluffykoalas.org)\n* [GitHub](https://github.com/fluffykoalas/sloth)\n\n\nNote that this library is unrelated and mutually exclusive to \nthe one that can be found at https://sloth.readthedocs.io\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flegorooj%2Fsloth","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flegorooj%2Fsloth","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flegorooj%2Fsloth/lists"}