# Kolo Trace and visualize your Python code. Generate working tests. [![downloads](https://img.shields.io/pypi/dm/kolo)](https://pypi.org/project/kolo/) [![Chat on Discord](https://img.shields.io/discord/899363528660635738?label=Chat%20on%20Discord)](https://discord.com/invite/FsTVcFwYUn) [![PyPI version](https://img.shields.io/pypi/v/kolo?label=python%20package)](https://pypi.org/project/kolo/) [![supported python versions](https://img.shields.io/pypi/pyversions/kolo)](https://pypi.org/project/kolo/) image
Screenshot of Kolo from the Todo Demo app
## Quickstart Getting started with Kolo only takes a couple of minutes. The fastest way to understand what Kolo does and how it can be helpful is by trying it out on a codebase you work on. But if you're in a hurry or can't try Kolo on your own codebase, you can preview some functionality in our [playground](https://play.kolo.app). ### Trace a Django request *Trace a Django request for inspection, visualization, and debugging purposes.* 1. Install kolo using `pip install kolo` 2. Add `"kolo.middleware.KoloMiddleware"` to the top of your MIDDLEWARE list in settings.py 3. Start your Django server using `python manage.py runserver` and make a request to any page. 4. Browse to `localhost:8000/_kolo/` to view your traced request. It should look similar to the screenshot at the top of the page 🚀 (For a more in-depth version of this tutorial see [How to: Trace Django requests](howto/trace-django-requests.md)) ### Generate a test from your trace *Now that we have a trace recorded, we can generate a working integration test from that trace.* 1. Navigate from the "Trace" page to the "Test" page. image 2. You'll see a page similar to the screenshot above, with your integration test waiting for you 🥳 3. Save the test file to your desired location or copy/paste it manually. 4. Then run the test in the same way you normally would to check that it's working. Make any edits as desired. #### Customizing test generation Every codebase has different testing requirements and code style. You can customize Kolo's test generation to suit your needs. Learn more about how to do this in [How to: Customize test generation](howto/customize-testgen.md) #### How does test generation work? Based on the data captured in the trace, Kolo first generate a test plan which includes the various "steps" it intends to include in the integration test. Each step in the plan is derived from some information in the trace itself. Then, based on the plan, Kolo then generates the test code on the left of the page. Learn more about how Kolo test generation works in [this blog post](https://blog.kolo.app/tests-no-joy.html) ## Support If you have any questions or trouble getting set up with Kolo, please get in touch with us. We're here to help and would love any feedback! * [Talk to us on Discord](https://discord.com/invite/FsTVcFwYUn) * [Create an issue](https://github.com/kolofordjango/kolo/issues/new/choose) * [Email us](mailto:support@kolo.app) * [Schedule a meeting with us to help get Kolo set up](https://calendly.com/wilhelmklopp) ## Screenshots What Kolo looks like when used with a real world Django application ([Simple Poll](https://simplepoll.rocks)) #### Viewing a trace image #### Exploring a trace image #### Viewing an SQL query image #### Viewing a function call image #### Generating an integration test image ```{toctree} :maxdepth: 2 :hidden: Quickstart ``` ```{toctree} :maxdepth: 2 :hidden: :caption: How to howto/trace-django-requests How to: Generate tests How to: Customize test generation How to: Trace a function or script How to: Set up VSCode ``` ```{toctree} :maxdepth: 2 :hidden: :caption: Reference reference/config reference/cli reference/steps ``` ```{toctree} :hidden: :caption: Misc changelog/index.md Playground misc/docker misc/share-traces misc/plugins ```