├── .gitignore ├── LICENSE ├── README.md ├── example └── lite_tracer_example.py ├── lite_tracer ├── __init__.py ├── exceptions.py ├── lite_trace.py └── tracker.py ├── logos ├── Litetracer-Logo-Full-DB.png └── Litetracer-Logo-Full-LB.png ├── pytest.ini ├── setup.py └── tests ├── helper.py ├── test_dest.py ├── test_flags.py ├── test_lite_tracer.py └── test_search.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BorealisAI/lite_tracer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BorealisAI/lite_tracer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BorealisAI/lite_tracer/HEAD/README.md -------------------------------------------------------------------------------- /example/lite_tracer_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BorealisAI/lite_tracer/HEAD/example/lite_tracer_example.py -------------------------------------------------------------------------------- /lite_tracer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BorealisAI/lite_tracer/HEAD/lite_tracer/__init__.py -------------------------------------------------------------------------------- /lite_tracer/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BorealisAI/lite_tracer/HEAD/lite_tracer/exceptions.py -------------------------------------------------------------------------------- /lite_tracer/lite_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BorealisAI/lite_tracer/HEAD/lite_tracer/lite_trace.py -------------------------------------------------------------------------------- /lite_tracer/tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BorealisAI/lite_tracer/HEAD/lite_tracer/tracker.py -------------------------------------------------------------------------------- /logos/Litetracer-Logo-Full-DB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BorealisAI/lite_tracer/HEAD/logos/Litetracer-Logo-Full-DB.png -------------------------------------------------------------------------------- /logos/Litetracer-Logo-Full-LB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BorealisAI/lite_tracer/HEAD/logos/Litetracer-Logo-Full-LB.png -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | norecursedirs = lt_records 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BorealisAI/lite_tracer/HEAD/setup.py -------------------------------------------------------------------------------- /tests/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BorealisAI/lite_tracer/HEAD/tests/helper.py -------------------------------------------------------------------------------- /tests/test_dest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BorealisAI/lite_tracer/HEAD/tests/test_dest.py -------------------------------------------------------------------------------- /tests/test_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BorealisAI/lite_tracer/HEAD/tests/test_flags.py -------------------------------------------------------------------------------- /tests/test_lite_tracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BorealisAI/lite_tracer/HEAD/tests/test_lite_tracer.py -------------------------------------------------------------------------------- /tests/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BorealisAI/lite_tracer/HEAD/tests/test_search.py --------------------------------------------------------------------------------