{"id":13585744,"url":"https://github.com/zalando-incubator/transformer","last_synced_at":"2025-04-10T01:16:23.120Z","repository":{"id":34064680,"uuid":"168133429","full_name":"zalando-incubator/transformer","owner":"zalando-incubator","description":"A tool to transform/convert web browser sessions (HAR files) into Locust load testing scenarios (locustfile).","archived":false,"fork":false,"pushed_at":"2023-03-15T13:56:31.000Z","size":4287,"stargazers_count":102,"open_issues_count":17,"forks_count":14,"subscribers_count":11,"default_branch":"master","last_synced_at":"2025-04-10T01:16:17.341Z","etag":null,"topics":["load-testing","locust","testing"],"latest_commit_sha":null,"homepage":"https://transformer.readthedocs.io/","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/zalando-incubator.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2019-01-29T10:08:53.000Z","updated_at":"2025-03-21T14:32:57.000Z","dependencies_parsed_at":"2024-01-07T16:32:27.756Z","dependency_job_id":"0b496ba5-7b9e-4efb-9b6e-0c594fbdb4d7","html_url":"https://github.com/zalando-incubator/transformer","commit_stats":{"total_commits":228,"total_committers":13,"mean_commits":17.53846153846154,"dds":"0.33333333333333337","last_synced_commit":"fa68c50cda12384aa4ef4009057b56035f1f3412"},"previous_names":[],"tags_count":22,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zalando-incubator%2Ftransformer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zalando-incubator%2Ftransformer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zalando-incubator%2Ftransformer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zalando-incubator%2Ftransformer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zalando-incubator","download_url":"https://codeload.github.com/zalando-incubator/transformer/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248137891,"owners_count":21053775,"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":["load-testing","locust","testing"],"created_at":"2024-08-01T15:05:07.324Z","updated_at":"2025-04-10T01:16:23.100Z","avatar_url":"https://github.com/zalando-incubator.png","language":"Python","funding_links":[],"categories":["Python","Tools \u0026 Integrations"],"sub_categories":["Converters"],"readme":"\n.. image:: docs/_static/transformer.png\n   :alt: Transformer logo\n   :align: center\n\n|\n\n.. image:: https://travis-ci.org/zalando-incubator/Transformer.svg?branch=master\n   :alt: travis-ci status badge\n   :target: https://travis-ci.org/zalando-incubator/Transformer\n\n.. image:: https://badgen.net/pypi/v/har-transformer\n   :alt: pypi version badge\n   :target: https://pypi.org/project/har-transformer\n\n.. image:: https://api.codacy.com/project/badge/Grade/10b3feb4e4814429bf288b87443a6c72\n   :alt: code quality badge\n   :target: https://www.codacy.com/app/thilp/Transformer\n\n.. image:: https://api.codacy.com/project/badge/Coverage/10b3feb4e4814429bf288b87443a6c72\n   :alt: test coverage badge\n   :target: https://www.codacy.com/app/thilp/Transformer\n\n.. image:: https://badgen.net/badge/code%20style/black/000\n   :alt: Code style: Black\n   :target: https://github.com/ambv/black\n\n\nTransformer\n***********\n\nA **command-line tool** and **Python library** to convert web browser sessions\n(`HAR`_ files) into Locust_ load test scenarios (\"locustfiles\").\n\n.. _HAR: https://en.wikipedia.org/wiki/.har\n.. _Locust: https://locust.io/\n\nUse it to **replay HAR files** (storing recordings of interactions with your\nwebsite) **in load tests** with Locust_.\n\n.. contents::\n   :local:\n\nInstallation\n============\n\nInstall from PyPI::\n\n   pip install har-transformer\n\nInstall Locust to run your locustfiles::\n\n   pip install locust\n\nUsage\n=====\n\nExample HAR files are included in the ``examples/`` directory, try them\nout.\n\nCommand-line\n------------\n\n.. code:: bash\n\n   transformer my_har_files_directory/ \u003elocustfile.py\n\nLibrary\n-------\n\n.. code:: python\n\n   import transformer\n\n   with open(\"locustfile.py\", \"w\") as f:\n       transformer.dump(f, [\"my_har_files_directory/\"])\n\nDocumentation\n=============\n\nTake a look at our documentation_ for more details, including how to **generate\nHAR files**, **customize your scenarios**, use or write **plugins**, etc.\n\n.. _documentation: https://transformer.readthedocs.io/\n\nAuthors\n=======\n\n- **Serhii Cherniavskyi** — `@scherniavsky \u003chttps://github.com/scherniavsky\u003e`_\n\n- **Thibaut Le Page** — `@thilp \u003chttps://github.com/thilp\u003e`_\n\n- **Brian Maher** — `@bmaher \u003chttps://github.com/bmaher\u003e`_\n\n- **Oliwia Zaremba** — `@tortila \u003chttps://github.com/tortila\u003e`_\n\nSee also the list of contributors_ to this project.\n\n.. _contributors: https://transformer.readthedocs.io/en/latest/Contributors.html\n\nLicense\n=======\n\nThis project is licensed under the MIT license — see the LICENSE.md_ file for\ndetails.\n\n.. _LICENSE.md: https://github.com/zalando-incubator/Transformer/blob/master\n   /LICENSE.md\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzalando-incubator%2Ftransformer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzalando-incubator%2Ftransformer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzalando-incubator%2Ftransformer/lists"}