bac-py 1.5.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- bac_py-1.5.0/.gitignore +290 -0
- bac_py-1.5.0/CHANGELOG.md +1224 -0
- bac_py-1.5.0/CODE_OF_CONDUCT.md +90 -0
- bac_py-1.5.0/CONTRIBUTING.md +95 -0
- bac_py-1.5.0/LICENSE +21 -0
- bac_py-1.5.0/PKG-INFO +453 -0
- bac_py-1.5.0/README.md +423 -0
- bac_py-1.5.0/SECURITY.md +37 -0
- bac_py-1.5.0/examples/advanced_discovery.py +66 -0
- bac_py-1.5.0/examples/alarm_management.py +85 -0
- bac_py-1.5.0/examples/audit_log.py +58 -0
- bac_py-1.5.0/examples/backup_restore.py +37 -0
- bac_py-1.5.0/examples/cov_property.py +60 -0
- bac_py-1.5.0/examples/device_control.py +64 -0
- bac_py-1.5.0/examples/discover_devices.py +41 -0
- bac_py-1.5.0/examples/extended_discovery.py +52 -0
- bac_py-1.5.0/examples/foreign_device.py +48 -0
- bac_py-1.5.0/examples/interactive_cli.py +329 -0
- bac_py-1.5.0/examples/ip_to_sc_router.py +165 -0
- bac_py-1.5.0/examples/ipv6_client_server.py +47 -0
- bac_py-1.5.0/examples/monitor_cov.py +56 -0
- bac_py-1.5.0/examples/object_management.py +52 -0
- bac_py-1.5.0/examples/read_multiple.py +36 -0
- bac_py-1.5.0/examples/read_value.py +34 -0
- bac_py-1.5.0/examples/router_discovery.py +40 -0
- bac_py-1.5.0/examples/sc_generate_certs.py +322 -0
- bac_py-1.5.0/examples/secure_connect.py +158 -0
- bac_py-1.5.0/examples/secure_connect_hub.py +202 -0
- bac_py-1.5.0/examples/text_message.py +44 -0
- bac_py-1.5.0/examples/write_multiple.py +49 -0
- bac_py-1.5.0/examples/write_value.py +40 -0
- bac_py-1.5.0/pyproject.toml +109 -0
- bac_py-1.5.0/src/bac_py/__init__.py +67 -0
- bac_py-1.5.0/src/bac_py/app/__init__.py +13 -0
- bac_py-1.5.0/src/bac_py/app/_object_type_sets.py +38 -0
- bac_py-1.5.0/src/bac_py/app/application.py +1225 -0
- bac_py-1.5.0/src/bac_py/app/audit.py +200 -0
- bac_py-1.5.0/src/bac_py/app/client.py +2930 -0
- bac_py-1.5.0/src/bac_py/app/cov.py +831 -0
- bac_py-1.5.0/src/bac_py/app/event_engine.py +1484 -0
- bac_py-1.5.0/src/bac_py/app/schedule_engine.py +275 -0
- bac_py-1.5.0/src/bac_py/app/server.py +2183 -0
- bac_py-1.5.0/src/bac_py/app/trendlog_engine.py +312 -0
- bac_py-1.5.0/src/bac_py/app/tsm.py +948 -0
- bac_py-1.5.0/src/bac_py/client.py +1402 -0
- bac_py-1.5.0/src/bac_py/conformance/__init__.py +1 -0
- bac_py-1.5.0/src/bac_py/conformance/bibb.py +366 -0
- bac_py-1.5.0/src/bac_py/conformance/pics.py +184 -0
- bac_py-1.5.0/src/bac_py/encoding/__init__.py +3 -0
- bac_py-1.5.0/src/bac_py/encoding/apdu.py +772 -0
- bac_py-1.5.0/src/bac_py/encoding/primitives.py +1212 -0
- bac_py-1.5.0/src/bac_py/encoding/tags.py +325 -0
- bac_py-1.5.0/src/bac_py/encoding/time_series.py +243 -0
- bac_py-1.5.0/src/bac_py/network/__init__.py +50 -0
- bac_py-1.5.0/src/bac_py/network/address.py +445 -0
- bac_py-1.5.0/src/bac_py/network/layer.py +527 -0
- bac_py-1.5.0/src/bac_py/network/messages.py +424 -0
- bac_py-1.5.0/src/bac_py/network/npdu.py +513 -0
- bac_py-1.5.0/src/bac_py/network/router.py +1472 -0
- bac_py-1.5.0/src/bac_py/objects/__init__.py +47 -0
- bac_py-1.5.0/src/bac_py/objects/access_control.py +650 -0
- bac_py-1.5.0/src/bac_py/objects/accumulator.py +137 -0
- bac_py-1.5.0/src/bac_py/objects/alert_enrollment.py +62 -0
- bac_py-1.5.0/src/bac_py/objects/analog.py +265 -0
- bac_py-1.5.0/src/bac_py/objects/audit_log.py +153 -0
- bac_py-1.5.0/src/bac_py/objects/audit_reporter.py +85 -0
- bac_py-1.5.0/src/bac_py/objects/averaging.py +120 -0
- bac_py-1.5.0/src/bac_py/objects/base.py +971 -0
- bac_py-1.5.0/src/bac_py/objects/binary.py +352 -0
- bac_py-1.5.0/src/bac_py/objects/calendar.py +238 -0
- bac_py-1.5.0/src/bac_py/objects/channel.py +99 -0
- bac_py-1.5.0/src/bac_py/objects/command.py +72 -0
- bac_py-1.5.0/src/bac_py/objects/device.py +265 -0
- bac_py-1.5.0/src/bac_py/objects/event_enrollment.py +117 -0
- bac_py-1.5.0/src/bac_py/objects/event_log.py +126 -0
- bac_py-1.5.0/src/bac_py/objects/file.py +210 -0
- bac_py-1.5.0/src/bac_py/objects/global_group.py +82 -0
- bac_py-1.5.0/src/bac_py/objects/group.py +49 -0
- bac_py-1.5.0/src/bac_py/objects/life_safety.py +263 -0
- bac_py-1.5.0/src/bac_py/objects/lighting.py +241 -0
- bac_py-1.5.0/src/bac_py/objects/load_control.py +117 -0
- bac_py-1.5.0/src/bac_py/objects/loop.py +220 -0
- bac_py-1.5.0/src/bac_py/objects/multistate.py +237 -0
- bac_py-1.5.0/src/bac_py/objects/network_port.py +265 -0
- bac_py-1.5.0/src/bac_py/objects/notification.py +68 -0
- bac_py-1.5.0/src/bac_py/objects/notification_forwarder.py +63 -0
- bac_py-1.5.0/src/bac_py/objects/program.py +79 -0
- bac_py-1.5.0/src/bac_py/objects/pulse_converter.py +129 -0
- bac_py-1.5.0/src/bac_py/objects/schedule.py +99 -0
- bac_py-1.5.0/src/bac_py/objects/staging.py +72 -0
- bac_py-1.5.0/src/bac_py/objects/structured_view.py +62 -0
- bac_py-1.5.0/src/bac_py/objects/timer.py +140 -0
- bac_py-1.5.0/src/bac_py/objects/transportation.py +329 -0
- bac_py-1.5.0/src/bac_py/objects/trendlog.py +170 -0
- bac_py-1.5.0/src/bac_py/objects/trendlog_multiple.py +138 -0
- bac_py-1.5.0/src/bac_py/objects/value_types.py +546 -0
- bac_py-1.5.0/src/bac_py/py.typed +0 -0
- bac_py-1.5.0/src/bac_py/segmentation/__init__.py +31 -0
- bac_py-1.5.0/src/bac_py/segmentation/manager.py +411 -0
- bac_py-1.5.0/src/bac_py/serialization/__init__.py +77 -0
- bac_py-1.5.0/src/bac_py/serialization/json.py +68 -0
- bac_py-1.5.0/src/bac_py/services/__init__.py +9 -0
- bac_py-1.5.0/src/bac_py/services/alarm_summary.py +620 -0
- bac_py-1.5.0/src/bac_py/services/audit.py +352 -0
- bac_py-1.5.0/src/bac_py/services/base.py +102 -0
- bac_py-1.5.0/src/bac_py/services/common.py +119 -0
- bac_py-1.5.0/src/bac_py/services/cov.py +907 -0
- bac_py-1.5.0/src/bac_py/services/device_discovery.py +140 -0
- bac_py-1.5.0/src/bac_py/services/device_mgmt.py +218 -0
- bac_py-1.5.0/src/bac_py/services/errors.py +72 -0
- bac_py-1.5.0/src/bac_py/services/event_notification.py +401 -0
- bac_py-1.5.0/src/bac_py/services/fault_algorithms.py +206 -0
- bac_py-1.5.0/src/bac_py/services/file_access.py +422 -0
- bac_py-1.5.0/src/bac_py/services/list_element.py +124 -0
- bac_py-1.5.0/src/bac_py/services/object_mgmt.py +170 -0
- bac_py-1.5.0/src/bac_py/services/private_transfer.py +155 -0
- bac_py-1.5.0/src/bac_py/services/read_property.py +176 -0
- bac_py-1.5.0/src/bac_py/services/read_property_multiple.py +411 -0
- bac_py-1.5.0/src/bac_py/services/read_range.py +396 -0
- bac_py-1.5.0/src/bac_py/services/text_message.py +131 -0
- bac_py-1.5.0/src/bac_py/services/virtual_terminal.py +213 -0
- bac_py-1.5.0/src/bac_py/services/who_has.py +188 -0
- bac_py-1.5.0/src/bac_py/services/who_is.py +156 -0
- bac_py-1.5.0/src/bac_py/services/write_group.py +144 -0
- bac_py-1.5.0/src/bac_py/services/write_property.py +123 -0
- bac_py-1.5.0/src/bac_py/services/write_property_multiple.py +120 -0
- bac_py-1.5.0/src/bac_py/transport/__init__.py +3 -0
- bac_py-1.5.0/src/bac_py/transport/bbmd.py +698 -0
- bac_py-1.5.0/src/bac_py/transport/bbmd6.py +491 -0
- bac_py-1.5.0/src/bac_py/transport/bip.py +797 -0
- bac_py-1.5.0/src/bac_py/transport/bip6.py +686 -0
- bac_py-1.5.0/src/bac_py/transport/bvll.py +117 -0
- bac_py-1.5.0/src/bac_py/transport/bvll_ipv6.py +187 -0
- bac_py-1.5.0/src/bac_py/transport/ethernet.py +405 -0
- bac_py-1.5.0/src/bac_py/transport/foreign_device.py +213 -0
- bac_py-1.5.0/src/bac_py/transport/foreign_device6.py +213 -0
- bac_py-1.5.0/src/bac_py/transport/port.py +73 -0
- bac_py-1.5.0/src/bac_py/transport/sc/__init__.py +331 -0
- bac_py-1.5.0/src/bac_py/transport/sc/bvlc.py +525 -0
- bac_py-1.5.0/src/bac_py/transport/sc/connection.py +514 -0
- bac_py-1.5.0/src/bac_py/transport/sc/hub_connector.py +298 -0
- bac_py-1.5.0/src/bac_py/transport/sc/hub_function.py +292 -0
- bac_py-1.5.0/src/bac_py/transport/sc/node_switch.py +330 -0
- bac_py-1.5.0/src/bac_py/transport/sc/tls.py +175 -0
- bac_py-1.5.0/src/bac_py/transport/sc/types.py +71 -0
- bac_py-1.5.0/src/bac_py/transport/sc/vmac.py +125 -0
- bac_py-1.5.0/src/bac_py/transport/sc/websocket.py +378 -0
- bac_py-1.5.0/src/bac_py/types/__init__.py +3 -0
- bac_py-1.5.0/src/bac_py/types/audit_types.py +724 -0
- bac_py-1.5.0/src/bac_py/types/constructed.py +1618 -0
- bac_py-1.5.0/src/bac_py/types/enums.py +2121 -0
- bac_py-1.5.0/src/bac_py/types/fault_params.py +700 -0
- bac_py-1.5.0/src/bac_py/types/notification_params.py +1686 -0
- bac_py-1.5.0/src/bac_py/types/parsing.py +303 -0
- bac_py-1.5.0/src/bac_py/types/primitives.py +329 -0
- bac_py-1.5.0/tests/__init__.py +0 -0
- bac_py-1.5.0/tests/app/__init__.py +0 -0
- bac_py-1.5.0/tests/app/test_application.py +2836 -0
- bac_py-1.5.0/tests/app/test_audit.py +656 -0
- bac_py-1.5.0/tests/app/test_backup_restore.py +202 -0
- bac_py-1.5.0/tests/app/test_client.py +3900 -0
- bac_py-1.5.0/tests/app/test_cov.py +2275 -0
- bac_py-1.5.0/tests/app/test_discovery.py +606 -0
- bac_py-1.5.0/tests/app/test_event_algorithms.py +1010 -0
- bac_py-1.5.0/tests/app/test_event_engine.py +3832 -0
- bac_py-1.5.0/tests/app/test_event_state_machine.py +658 -0
- bac_py-1.5.0/tests/app/test_schedule_engine.py +883 -0
- bac_py-1.5.0/tests/app/test_server.py +5858 -0
- bac_py-1.5.0/tests/app/test_trendlog_engine.py +987 -0
- bac_py-1.5.0/tests/app/test_tsm.py +2538 -0
- bac_py-1.5.0/tests/conformance/__init__.py +0 -0
- bac_py-1.5.0/tests/conformance/test_bibb.py +153 -0
- bac_py-1.5.0/tests/conformance/test_pics.py +221 -0
- bac_py-1.5.0/tests/conftest.py +1 -0
- bac_py-1.5.0/tests/encoding/__init__.py +0 -0
- bac_py-1.5.0/tests/encoding/test_apdu.py +578 -0
- bac_py-1.5.0/tests/encoding/test_constructed_encoding.py +592 -0
- bac_py-1.5.0/tests/encoding/test_decode_values.py +210 -0
- bac_py-1.5.0/tests/encoding/test_encode_property_value.py +500 -0
- bac_py-1.5.0/tests/encoding/test_encoding_architecture.py +269 -0
- bac_py-1.5.0/tests/encoding/test_encoding_edge_cases.py +833 -0
- bac_py-1.5.0/tests/encoding/test_primitives.py +728 -0
- bac_py-1.5.0/tests/encoding/test_property_encoding_completeness.py +75 -0
- bac_py-1.5.0/tests/encoding/test_tags.py +412 -0
- bac_py-1.5.0/tests/encoding/test_time_series.py +371 -0
- bac_py-1.5.0/tests/helpers.py +23 -0
- bac_py-1.5.0/tests/integration/__init__.py +0 -0
- bac_py-1.5.0/tests/integration/test_router_bbmd.py +298 -0
- bac_py-1.5.0/tests/network/__init__.py +0 -0
- bac_py-1.5.0/tests/network/conftest.py +35 -0
- bac_py-1.5.0/tests/network/test_address.py +818 -0
- bac_py-1.5.0/tests/network/test_address_ipv6.py +172 -0
- bac_py-1.5.0/tests/network/test_layer.py +1400 -0
- bac_py-1.5.0/tests/network/test_messages.py +705 -0
- bac_py-1.5.0/tests/network/test_npdu.py +576 -0
- bac_py-1.5.0/tests/network/test_parse_address.py +134 -0
- bac_py-1.5.0/tests/network/test_router.py +2671 -0
- bac_py-1.5.0/tests/network/test_routing_table.py +588 -0
- bac_py-1.5.0/tests/objects/__init__.py +0 -0
- bac_py-1.5.0/tests/objects/test_access_control.py +80 -0
- bac_py-1.5.0/tests/objects/test_accumulator.py +109 -0
- bac_py-1.5.0/tests/objects/test_alert_enrollment.py +13 -0
- bac_py-1.5.0/tests/objects/test_analog.py +401 -0
- bac_py-1.5.0/tests/objects/test_audit_log.py +16 -0
- bac_py-1.5.0/tests/objects/test_audit_reporter.py +15 -0
- bac_py-1.5.0/tests/objects/test_averaging.py +26 -0
- bac_py-1.5.0/tests/objects/test_base.py +523 -0
- bac_py-1.5.0/tests/objects/test_behavior_validation.py +411 -0
- bac_py-1.5.0/tests/objects/test_binary.py +501 -0
- bac_py-1.5.0/tests/objects/test_calendar.py +91 -0
- bac_py-1.5.0/tests/objects/test_calendar_eval.py +309 -0
- bac_py-1.5.0/tests/objects/test_channel.py +38 -0
- bac_py-1.5.0/tests/objects/test_command_obj.py +23 -0
- bac_py-1.5.0/tests/objects/test_commandable.py +255 -0
- bac_py-1.5.0/tests/objects/test_date_time_values.py +100 -0
- bac_py-1.5.0/tests/objects/test_device.py +148 -0
- bac_py-1.5.0/tests/objects/test_event_enrollment.py +146 -0
- bac_py-1.5.0/tests/objects/test_event_log.py +17 -0
- bac_py-1.5.0/tests/objects/test_file.py +187 -0
- bac_py-1.5.0/tests/objects/test_hooks_and_reporting.py +377 -0
- bac_py-1.5.0/tests/objects/test_life_safety.py +89 -0
- bac_py-1.5.0/tests/objects/test_lighting.py +43 -0
- bac_py-1.5.0/tests/objects/test_load_control.py +16 -0
- bac_py-1.5.0/tests/objects/test_loop.py +155 -0
- bac_py-1.5.0/tests/objects/test_min_on_off_time.py +173 -0
- bac_py-1.5.0/tests/objects/test_multistate.py +334 -0
- bac_py-1.5.0/tests/objects/test_network_port.py +94 -0
- bac_py-1.5.0/tests/objects/test_notification.py +104 -0
- bac_py-1.5.0/tests/objects/test_notification_forwarder.py +15 -0
- bac_py-1.5.0/tests/objects/test_object_properties.py +1523 -0
- bac_py-1.5.0/tests/objects/test_program.py +115 -0
- bac_py-1.5.0/tests/objects/test_property_definitions.py +348 -0
- bac_py-1.5.0/tests/objects/test_pulse_converter.py +38 -0
- bac_py-1.5.0/tests/objects/test_registration.py +232 -0
- bac_py-1.5.0/tests/objects/test_schedule.py +122 -0
- bac_py-1.5.0/tests/objects/test_staging.py +15 -0
- bac_py-1.5.0/tests/objects/test_structured_view.py +16 -0
- bac_py-1.5.0/tests/objects/test_timer.py +19 -0
- bac_py-1.5.0/tests/objects/test_transportation.py +39 -0
- bac_py-1.5.0/tests/objects/test_trendlog.py +123 -0
- bac_py-1.5.0/tests/objects/test_trendlog_multiple.py +17 -0
- bac_py-1.5.0/tests/objects/test_value_types.py +461 -0
- bac_py-1.5.0/tests/segmentation/__init__.py +0 -0
- bac_py-1.5.0/tests/segmentation/test_integration.py +760 -0
- bac_py-1.5.0/tests/segmentation/test_manager.py +590 -0
- bac_py-1.5.0/tests/serialization/__init__.py +0 -0
- bac_py-1.5.0/tests/serialization/test_json.py +1175 -0
- bac_py-1.5.0/tests/services/__init__.py +0 -0
- bac_py-1.5.0/tests/services/test_alarm_summary.py +565 -0
- bac_py-1.5.0/tests/services/test_audit.py +537 -0
- bac_py-1.5.0/tests/services/test_base.py +82 -0
- bac_py-1.5.0/tests/services/test_cov.py +1175 -0
- bac_py-1.5.0/tests/services/test_cov_advanced.py +499 -0
- bac_py-1.5.0/tests/services/test_device_discovery.py +110 -0
- bac_py-1.5.0/tests/services/test_device_mgmt.py +204 -0
- bac_py-1.5.0/tests/services/test_errors.py +67 -0
- bac_py-1.5.0/tests/services/test_event_notification.py +531 -0
- bac_py-1.5.0/tests/services/test_fault_algorithms.py +399 -0
- bac_py-1.5.0/tests/services/test_file_access.py +250 -0
- bac_py-1.5.0/tests/services/test_list_element.py +76 -0
- bac_py-1.5.0/tests/services/test_object_mgmt.py +227 -0
- bac_py-1.5.0/tests/services/test_private_transfer.py +138 -0
- bac_py-1.5.0/tests/services/test_read_property.py +91 -0
- bac_py-1.5.0/tests/services/test_read_property_multiple.py +388 -0
- bac_py-1.5.0/tests/services/test_read_range.py +234 -0
- bac_py-1.5.0/tests/services/test_text_message.py +137 -0
- bac_py-1.5.0/tests/services/test_virtual_terminal.py +114 -0
- bac_py-1.5.0/tests/services/test_who_has.py +207 -0
- bac_py-1.5.0/tests/services/test_who_is.py +170 -0
- bac_py-1.5.0/tests/services/test_write_group.py +122 -0
- bac_py-1.5.0/tests/services/test_write_property.py +128 -0
- bac_py-1.5.0/tests/services/test_write_property_multiple.py +221 -0
- bac_py-1.5.0/tests/test_client.py +960 -0
- bac_py-1.5.0/tests/test_client_wrappers.py +663 -0
- bac_py-1.5.0/tests/test_examples.py +196 -0
- bac_py-1.5.0/tests/test_optimizations.py +149 -0
- bac_py-1.5.0/tests/test_scripts.py +588 -0
- bac_py-1.5.0/tests/test_security_hardening.py +456 -0
- bac_py-1.5.0/tests/test_smoke.py +7 -0
- bac_py-1.5.0/tests/transport/__init__.py +0 -0
- bac_py-1.5.0/tests/transport/conftest.py +76 -0
- bac_py-1.5.0/tests/transport/sc/__init__.py +0 -0
- bac_py-1.5.0/tests/transport/sc/test_bvlc.py +911 -0
- bac_py-1.5.0/tests/transport/sc/test_connection.py +560 -0
- bac_py-1.5.0/tests/transport/sc/test_hub_connector.py +258 -0
- bac_py-1.5.0/tests/transport/sc/test_hub_function.py +483 -0
- bac_py-1.5.0/tests/transport/sc/test_node_switch.py +377 -0
- bac_py-1.5.0/tests/transport/sc/test_sc_integration.py +306 -0
- bac_py-1.5.0/tests/transport/sc/test_sc_transport.py +364 -0
- bac_py-1.5.0/tests/transport/sc/test_tls.py +320 -0
- bac_py-1.5.0/tests/transport/sc/test_vmac.py +192 -0
- bac_py-1.5.0/tests/transport/sc/test_websocket.py +447 -0
- bac_py-1.5.0/tests/transport/test_bbmd.py +911 -0
- bac_py-1.5.0/tests/transport/test_bbmd6.py +689 -0
- bac_py-1.5.0/tests/transport/test_bbmd_advanced.py +1030 -0
- bac_py-1.5.0/tests/transport/test_bip.py +2124 -0
- bac_py-1.5.0/tests/transport/test_bip6.py +1207 -0
- bac_py-1.5.0/tests/transport/test_bip_bbmd.py +618 -0
- bac_py-1.5.0/tests/transport/test_bip_multicast.py +124 -0
- bac_py-1.5.0/tests/transport/test_bvll.py +168 -0
- bac_py-1.5.0/tests/transport/test_bvll_ipv6.py +322 -0
- bac_py-1.5.0/tests/transport/test_ethernet.py +1096 -0
- bac_py-1.5.0/tests/transport/test_foreign_device.py +324 -0
- bac_py-1.5.0/tests/transport/test_foreign_device6.py +321 -0
- bac_py-1.5.0/tests/types/__init__.py +0 -0
- bac_py-1.5.0/tests/types/test_audit_types.py +853 -0
- bac_py-1.5.0/tests/types/test_constructed.py +733 -0
- bac_py-1.5.0/tests/types/test_constructed_types.py +586 -0
- bac_py-1.5.0/tests/types/test_enums.py +1206 -0
- bac_py-1.5.0/tests/types/test_fault_params.py +758 -0
- bac_py-1.5.0/tests/types/test_notification_params.py +1492 -0
- bac_py-1.5.0/tests/types/test_parsing.py +365 -0
- bac_py-1.5.0/tests/types/test_primitives.py +651 -0
- bac_py-1.5.0/tests/types/test_timestamp.py +254 -0
- bac_py-1.5.0/tests/types/test_value_source.py +105 -0
bac_py-1.5.0/.gitignore
ADDED
|
@@ -0,0 +1,290 @@
|
|
|
1
|
+
# Personal Development Files
|
|
2
|
+
_ctx/
|
|
3
|
+
_data/
|
|
4
|
+
_dev/
|
|
5
|
+
_deprecated/
|
|
6
|
+
design_docs/
|
|
7
|
+
_refactors/
|
|
8
|
+
_dev_examples/
|
|
9
|
+
_dev_testing/
|
|
10
|
+
_future/
|
|
11
|
+
.claude/
|
|
12
|
+
CLAUDE.md
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
# Byte-compiled / optimized / DLL files
|
|
16
|
+
__pycache__/
|
|
17
|
+
*.py[cod]
|
|
18
|
+
*$py.class
|
|
19
|
+
|
|
20
|
+
# C extensions
|
|
21
|
+
*.so
|
|
22
|
+
|
|
23
|
+
# Distribution / packaging
|
|
24
|
+
.Python
|
|
25
|
+
build/
|
|
26
|
+
develop-eggs/
|
|
27
|
+
dist/
|
|
28
|
+
downloads/
|
|
29
|
+
eggs/
|
|
30
|
+
.eggs/
|
|
31
|
+
lib/
|
|
32
|
+
!docker/lib/
|
|
33
|
+
lib64/
|
|
34
|
+
parts/
|
|
35
|
+
sdist/
|
|
36
|
+
var/
|
|
37
|
+
wheels/
|
|
38
|
+
share/python-wheels/
|
|
39
|
+
*.egg-info/
|
|
40
|
+
.installed.cfg
|
|
41
|
+
*.egg
|
|
42
|
+
MANIFEST
|
|
43
|
+
|
|
44
|
+
# PyInstaller
|
|
45
|
+
# Usually these files are written by a python script from a template
|
|
46
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
47
|
+
*.manifest
|
|
48
|
+
*.spec
|
|
49
|
+
|
|
50
|
+
# Installer logs
|
|
51
|
+
pip-log.txt
|
|
52
|
+
pip-delete-this-directory.txt
|
|
53
|
+
|
|
54
|
+
# Unit test / coverage reports
|
|
55
|
+
htmlcov/
|
|
56
|
+
.tox/
|
|
57
|
+
.nox/
|
|
58
|
+
.coverage
|
|
59
|
+
.coverage.*
|
|
60
|
+
.cache
|
|
61
|
+
nosetests.xml
|
|
62
|
+
coverage.xml
|
|
63
|
+
*.cover
|
|
64
|
+
*.py,cover
|
|
65
|
+
.hypothesis/
|
|
66
|
+
.pytest_cache/
|
|
67
|
+
cover/
|
|
68
|
+
|
|
69
|
+
# Translations
|
|
70
|
+
*.mo
|
|
71
|
+
*.pot
|
|
72
|
+
|
|
73
|
+
# Django stuff:
|
|
74
|
+
*.log
|
|
75
|
+
local_settings.py
|
|
76
|
+
db.sqlite3
|
|
77
|
+
db.sqlite3-journal
|
|
78
|
+
|
|
79
|
+
# Flask stuff:
|
|
80
|
+
instance/
|
|
81
|
+
.webassets-cache
|
|
82
|
+
|
|
83
|
+
# Scrapy stuff:
|
|
84
|
+
.scrapy
|
|
85
|
+
|
|
86
|
+
# Sphinx documentation
|
|
87
|
+
docs/_build/
|
|
88
|
+
|
|
89
|
+
# PyBuilder
|
|
90
|
+
.pybuilder/
|
|
91
|
+
target/
|
|
92
|
+
|
|
93
|
+
# Jupyter Notebook
|
|
94
|
+
.ipynb_checkpoints
|
|
95
|
+
|
|
96
|
+
# IPython
|
|
97
|
+
profile_default/
|
|
98
|
+
ipython_config.py
|
|
99
|
+
|
|
100
|
+
# pyenv
|
|
101
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
102
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
103
|
+
# .python-version
|
|
104
|
+
|
|
105
|
+
# pipenv
|
|
106
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
107
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
108
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
109
|
+
# install all needed dependencies.
|
|
110
|
+
#Pipfile.lock
|
|
111
|
+
|
|
112
|
+
# poetry
|
|
113
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
114
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
115
|
+
# commonly ignored for libraries.
|
|
116
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
117
|
+
#poetry.lock
|
|
118
|
+
|
|
119
|
+
# pdm
|
|
120
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
121
|
+
#pdm.lock
|
|
122
|
+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
|
123
|
+
# in version control.
|
|
124
|
+
# https://pdm.fming.dev/#use-with-ide
|
|
125
|
+
.pdm.toml
|
|
126
|
+
|
|
127
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
128
|
+
__pypackages__/
|
|
129
|
+
|
|
130
|
+
# Celery stuff
|
|
131
|
+
celerybeat-schedule
|
|
132
|
+
celerybeat.pid
|
|
133
|
+
|
|
134
|
+
# SageMath parsed files
|
|
135
|
+
*.sage.py
|
|
136
|
+
|
|
137
|
+
# Environments
|
|
138
|
+
.env
|
|
139
|
+
.venv
|
|
140
|
+
env/
|
|
141
|
+
venv/
|
|
142
|
+
ENV/
|
|
143
|
+
env.bak/
|
|
144
|
+
venv.bak/
|
|
145
|
+
|
|
146
|
+
# Spyder project settings
|
|
147
|
+
.spyderproject
|
|
148
|
+
.spyproject
|
|
149
|
+
|
|
150
|
+
# Rope project settings
|
|
151
|
+
.ropeproject
|
|
152
|
+
|
|
153
|
+
# mkdocs documentation
|
|
154
|
+
/site
|
|
155
|
+
|
|
156
|
+
# mypy
|
|
157
|
+
.mypy_cache/
|
|
158
|
+
.dmypy.json
|
|
159
|
+
dmypy.json
|
|
160
|
+
|
|
161
|
+
# Pyre type checker
|
|
162
|
+
.pyre/
|
|
163
|
+
|
|
164
|
+
# pytype static type analyzer
|
|
165
|
+
.pytype/
|
|
166
|
+
|
|
167
|
+
# Cython debug symbols
|
|
168
|
+
cython_debug/
|
|
169
|
+
|
|
170
|
+
# PyCharm
|
|
171
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
172
|
+
# be added to the global gitignore or merged into this project gitignore.
|
|
173
|
+
# For PyCharm Community Edition, use 'PyCharm CE' instead of 'PyCharm'.
|
|
174
|
+
.idea/
|
|
175
|
+
|
|
176
|
+
# Visual Studio Code
|
|
177
|
+
.vscode/
|
|
178
|
+
*.code-workspace
|
|
179
|
+
|
|
180
|
+
# Sublime Text
|
|
181
|
+
*.sublime-project
|
|
182
|
+
*.sublime-workspace
|
|
183
|
+
|
|
184
|
+
# Vim
|
|
185
|
+
*.swp
|
|
186
|
+
*.swo
|
|
187
|
+
*~
|
|
188
|
+
|
|
189
|
+
# Emacs
|
|
190
|
+
*~
|
|
191
|
+
\#*\#
|
|
192
|
+
/.emacs.desktop
|
|
193
|
+
/.emacs.desktop.lock
|
|
194
|
+
*.elc
|
|
195
|
+
auto-save-list
|
|
196
|
+
tramp
|
|
197
|
+
.\#*
|
|
198
|
+
|
|
199
|
+
# macOS
|
|
200
|
+
.DS_Store
|
|
201
|
+
.AppleDouble
|
|
202
|
+
.LSOverride
|
|
203
|
+
Icon
|
|
204
|
+
._*
|
|
205
|
+
.DocumentRevisions-V100
|
|
206
|
+
.fseventsd
|
|
207
|
+
.Spotlight-V100
|
|
208
|
+
.TemporaryItems
|
|
209
|
+
.Trashes
|
|
210
|
+
.VolumeIcon.icns
|
|
211
|
+
.com.apple.timemachine.donotpresent
|
|
212
|
+
.AppleDB
|
|
213
|
+
.AppleDesktop
|
|
214
|
+
Network Trash Folder
|
|
215
|
+
Temporary Items
|
|
216
|
+
.apdisk
|
|
217
|
+
|
|
218
|
+
# Windows
|
|
219
|
+
Thumbs.db
|
|
220
|
+
Thumbs.db:encryptable
|
|
221
|
+
ehthumbs.db
|
|
222
|
+
ehthumbs_vista.db
|
|
223
|
+
*.tmp
|
|
224
|
+
*.temp
|
|
225
|
+
Desktop.ini
|
|
226
|
+
$RECYCLE.BIN/
|
|
227
|
+
*.cab
|
|
228
|
+
*.msi
|
|
229
|
+
*.msix
|
|
230
|
+
*.msm
|
|
231
|
+
*.msp
|
|
232
|
+
*.lnk
|
|
233
|
+
|
|
234
|
+
# Linux
|
|
235
|
+
*~
|
|
236
|
+
.fuse_hidden*
|
|
237
|
+
.directory
|
|
238
|
+
.Trash-*
|
|
239
|
+
.nfs*
|
|
240
|
+
|
|
241
|
+
# UV - Python package manager
|
|
242
|
+
.uv/
|
|
243
|
+
uv.lock.bak
|
|
244
|
+
*.uv-cache/
|
|
245
|
+
|
|
246
|
+
# Ruff - Python linter and formatter
|
|
247
|
+
.ruff_cache/
|
|
248
|
+
ruff.log
|
|
249
|
+
.ruff/
|
|
250
|
+
|
|
251
|
+
# MyPy - Static type checker (additional entries)
|
|
252
|
+
.mypy_cache/
|
|
253
|
+
.dmypy.json
|
|
254
|
+
dmypy.json
|
|
255
|
+
mypy-report/
|
|
256
|
+
*.mypy
|
|
257
|
+
|
|
258
|
+
# Pre-commit hooks
|
|
259
|
+
.pre-commit-config.yaml.bak
|
|
260
|
+
|
|
261
|
+
# Development and debugging
|
|
262
|
+
.vscode/settings.json
|
|
263
|
+
.vscode/launch.json
|
|
264
|
+
debug.log
|
|
265
|
+
*.debug
|
|
266
|
+
|
|
267
|
+
# Project-specific
|
|
268
|
+
# Add any project-specific files or directories you want to ignore
|
|
269
|
+
sc_test_certs/
|
|
270
|
+
config/local_config.json
|
|
271
|
+
logs/
|
|
272
|
+
temp/
|
|
273
|
+
*.local
|
|
274
|
+
|
|
275
|
+
# Database files
|
|
276
|
+
*.db
|
|
277
|
+
*.sqlite
|
|
278
|
+
*.sqlite3
|
|
279
|
+
|
|
280
|
+
# API keys and secrets
|
|
281
|
+
.env.local
|
|
282
|
+
.env.production
|
|
283
|
+
secrets.json
|
|
284
|
+
api_keys.json
|
|
285
|
+
|
|
286
|
+
# Backup files
|
|
287
|
+
*.bak
|
|
288
|
+
*.backup
|
|
289
|
+
*~
|
|
290
|
+
CLAUDE.md
|