LICENSE
MANIFEST.in
README.md
requirements.txt
setup.py
codehem/__init__.py
codehem/cli.py
codehem.egg-info/PKG-INFO
codehem.egg-info/SOURCES.txt
codehem.egg-info/dependency_links.txt
codehem.egg-info/entry_points.txt
codehem.egg-info/requires.txt
codehem.egg-info/top_level.txt
core/__init__.py
core/ast_handler.py
core/languages.py
core/models.py
core/query_builder.py
core/caching/__init__.py
core/caching/cache_manager.py
core/finder/__init__.py
core/finder/base.py
core/finder/factory.py
core/finder/lang/__init__.py
core/finder/lang/python_code_finder.py
core/finder/lang/typescript_code_finder.py
core/formatting/__init__.py
core/formatting/formatter.py
core/formatting/python_formatter.py
core/formatting/typescript_formatter.py
core/manipulator/__init__.py
core/manipulator/abstract.py
core/manipulator/base.py
core/manipulator/factory.py
core/manipulator/lang/__init__.py
core/manipulator/lang/python_manipulator.py
core/manipulator/lang/typescript_manipulator.py
core/services/__init__.py
core/services/extraction_service.py
core/services/python_indentation_service.py
core/strategies/__init__.py
core/strategies/language_strategy.py
core/strategies/python_strategy.py
core/strategies/typescript_strategy.py
core/utils/__init__.py
core/utils/logs.py
tests/__init__.py
tests/test_extract_code.py
tests/test_filter_method.py
tests/test_language_detection.py
tests/test_parser_robustness.py
tests/helpers/__init__.py
tests/helpers/code_examples.py
tests/python/__init__.py
tests/python/finder/__init__.py
tests/python/finder/test_code_styles.py
tests/python/finder/test_find_class.py
tests/python/finder/test_find_function.py
tests/python/finder/test_find_imports_section.py
tests/python/finder/test_find_method.py
tests/python/finder/test_find_module_for_class.py
tests/python/finder/test_find_parent_classes.py
tests/python/finder/test_find_properties_section.py
tests/python/finder/test_find_property.py
tests/python/finder/test_find_property_and_setter.py
tests/python/finder/test_find_property_edge_cases.py
tests/python/finder/test_find_property_setter.py
tests/python/finder/test_get_class_decorators.py
tests/python/finder/test_get_classes_methods.py
tests/python/finder/test_get_decorators.py
tests/python/finder/test_nested_structures.py
tests/python/finder/test_property_helper.py
tests/python/manipulator/__init__.py
tests/python/manipulator/test_complex_indentation.py
tests/python/manipulator/test_decorator_edge_cases.py
tests/python/manipulator/test_fix_class_method_xpath.py
tests/python/manipulator/test_python_indentation_service.py
tests/python/manipulator/test_remove_method_from_class.py
tests/python/manipulator/test_replace_class.py
tests/python/manipulator/test_replace_function.py
tests/python/manipulator/test_replace_imports_section.py
tests/python/manipulator/test_replace_lines.py
tests/python/manipulator/test_replace_lines_range.py
tests/python/manipulator/test_replace_properties_section.py
tests/python/manipulator/test_replace_property.py
tests/python/manipulator/test_round_trip_manipulations.py
tests/python/manipulator/test_similar_named_elements.py
tests/typescript/__init__.py