linkbreakers 1.0.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.
- linkbreakers-1.0.0/LICENSE +21 -0
- linkbreakers-1.0.0/PKG-INFO +120 -0
- linkbreakers-1.0.0/README.md +99 -0
- linkbreakers-1.0.0/linkbreakers/__init__.py +506 -0
- linkbreakers-1.0.0/linkbreakers/api/__init__.py +22 -0
- linkbreakers-1.0.0/linkbreakers/api/custom_domains_api.py +1627 -0
- linkbreakers-1.0.0/linkbreakers/api/events_api.py +976 -0
- linkbreakers-1.0.0/linkbreakers/api/integrations_service_api.py +295 -0
- linkbreakers-1.0.0/linkbreakers/api/link_settings_api.py +589 -0
- linkbreakers-1.0.0/linkbreakers/api/links_api.py +2870 -0
- linkbreakers-1.0.0/linkbreakers/api/media_api.py +1120 -0
- linkbreakers-1.0.0/linkbreakers/api/members_api.py +2766 -0
- linkbreakers-1.0.0/linkbreakers/api/page_themes_api.py +845 -0
- linkbreakers-1.0.0/linkbreakers/api/qr_code_designs_api.py +1133 -0
- linkbreakers-1.0.0/linkbreakers/api/qr_code_templates_api.py +2643 -0
- linkbreakers-1.0.0/linkbreakers/api/tags_api.py +598 -0
- linkbreakers-1.0.0/linkbreakers/api/time_series_api.py +307 -0
- linkbreakers-1.0.0/linkbreakers/api/visitors_api.py +1789 -0
- linkbreakers-1.0.0/linkbreakers/api/webhooks_api.py +1391 -0
- linkbreakers-1.0.0/linkbreakers/api/workflow_steps_api.py +2081 -0
- linkbreakers-1.0.0/linkbreakers/api/workspace_metrics_api.py +848 -0
- linkbreakers-1.0.0/linkbreakers/api/workspace_tokens_api.py +1083 -0
- linkbreakers-1.0.0/linkbreakers/api/workspaces_api.py +2153 -0
- linkbreakers-1.0.0/linkbreakers/api_client.py +805 -0
- linkbreakers-1.0.0/linkbreakers/api_response.py +21 -0
- linkbreakers-1.0.0/linkbreakers/configuration.py +586 -0
- linkbreakers-1.0.0/linkbreakers/exceptions.py +218 -0
- linkbreakers-1.0.0/linkbreakers/models/__init__.py +228 -0
- linkbreakers-1.0.0/linkbreakers/models/action.py +38 -0
- linkbreakers-1.0.0/linkbreakers/models/add_workflow_step_relationship_response.py +87 -0
- linkbreakers-1.0.0/linkbreakers/models/api_tag.py +98 -0
- linkbreakers-1.0.0/linkbreakers/models/background_options.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/canvas_position.py +89 -0
- linkbreakers-1.0.0/linkbreakers/models/check_custom_domain_response.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/client_redirect_payload.py +89 -0
- linkbreakers-1.0.0/linkbreakers/models/contact_card_trace_card.py +111 -0
- linkbreakers-1.0.0/linkbreakers/models/contact_card_trace_data.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/container_config.py +124 -0
- linkbreakers-1.0.0/linkbreakers/models/corners_dot_options.py +93 -0
- linkbreakers-1.0.0/linkbreakers/models/corners_square_options.py +93 -0
- linkbreakers-1.0.0/linkbreakers/models/country_condition_outcome.py +89 -0
- linkbreakers-1.0.0/linkbreakers/models/country_condition_payload.py +97 -0
- linkbreakers-1.0.0/linkbreakers/models/country_condition_trace_data.py +97 -0
- linkbreakers-1.0.0/linkbreakers/models/country_condition_trace_option.py +89 -0
- linkbreakers-1.0.0/linkbreakers/models/create_bulk_links_request.py +95 -0
- linkbreakers-1.0.0/linkbreakers/models/create_bulk_links_response.py +95 -0
- linkbreakers-1.0.0/linkbreakers/models/create_contact_link_request.py +113 -0
- linkbreakers-1.0.0/linkbreakers/models/create_contact_link_response.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/create_custom_domain_request.py +87 -0
- linkbreakers-1.0.0/linkbreakers/models/create_custom_domain_response.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/create_event_trace_response.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/create_link_request.py +109 -0
- linkbreakers-1.0.0/linkbreakers/models/create_link_response.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/create_media_request.py +95 -0
- linkbreakers-1.0.0/linkbreakers/models/create_media_response.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/create_qrcode_template_request.py +97 -0
- linkbreakers-1.0.0/linkbreakers/models/create_qrcode_template_response.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/create_webhook_request.py +97 -0
- linkbreakers-1.0.0/linkbreakers/models/create_webhook_response.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/create_workflow_step_response.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/create_workspace_token_request.py +87 -0
- linkbreakers-1.0.0/linkbreakers/models/create_workspace_token_response.py +93 -0
- linkbreakers-1.0.0/linkbreakers/models/custom_domain.py +120 -0
- linkbreakers-1.0.0/linkbreakers/models/custom_domain_status.py +41 -0
- linkbreakers-1.0.0/linkbreakers/models/data_collection.py +39 -0
- linkbreakers-1.0.0/linkbreakers/models/day_of_month_condition_payload.py +97 -0
- linkbreakers-1.0.0/linkbreakers/models/day_of_month_condition_trace_data.py +97 -0
- linkbreakers-1.0.0/linkbreakers/models/day_of_month_condition_trace_option.py +93 -0
- linkbreakers-1.0.0/linkbreakers/models/day_of_month_option.py +93 -0
- linkbreakers-1.0.0/linkbreakers/models/day_of_week_condition_payload.py +97 -0
- linkbreakers-1.0.0/linkbreakers/models/day_of_week_condition_trace_data.py +97 -0
- linkbreakers-1.0.0/linkbreakers/models/day_of_week_condition_trace_option.py +93 -0
- linkbreakers-1.0.0/linkbreakers/models/day_of_week_option.py +93 -0
- linkbreakers-1.0.0/linkbreakers/models/delete_attribute_response.py +87 -0
- linkbreakers-1.0.0/linkbreakers/models/delete_visitor_response.py +87 -0
- linkbreakers-1.0.0/linkbreakers/models/device.py +158 -0
- linkbreakers-1.0.0/linkbreakers/models/device_input.py +121 -0
- linkbreakers-1.0.0/linkbreakers/models/device_type.py +42 -0
- linkbreakers-1.0.0/linkbreakers/models/dots_options.py +93 -0
- linkbreakers-1.0.0/linkbreakers/models/entry_access_trace_data.py +95 -0
- linkbreakers-1.0.0/linkbreakers/models/error_response.py +93 -0
- linkbreakers-1.0.0/linkbreakers/models/event.py +163 -0
- linkbreakers-1.0.0/linkbreakers/models/event_action.py +49 -0
- linkbreakers-1.0.0/linkbreakers/models/event_trace.py +112 -0
- linkbreakers-1.0.0/linkbreakers/models/event_trace_data.py +157 -0
- linkbreakers-1.0.0/linkbreakers/models/events_metric.py +116 -0
- linkbreakers-1.0.0/linkbreakers/models/events_service_create_event_trace_body.py +95 -0
- linkbreakers-1.0.0/linkbreakers/models/events_service_update_device_body.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/events_time_series.py +99 -0
- linkbreakers-1.0.0/linkbreakers/models/events_time_series_data.py +90 -0
- linkbreakers-1.0.0/linkbreakers/models/font_config.py +109 -0
- linkbreakers-1.0.0/linkbreakers/models/form_field.py +116 -0
- linkbreakers-1.0.0/linkbreakers/models/form_field_option.py +89 -0
- linkbreakers-1.0.0/linkbreakers/models/form_field_type.py +46 -0
- linkbreakers-1.0.0/linkbreakers/models/form_payload.py +107 -0
- linkbreakers-1.0.0/linkbreakers/models/form_trace_data.py +109 -0
- linkbreakers-1.0.0/linkbreakers/models/form_trace_data_field.py +95 -0
- linkbreakers-1.0.0/linkbreakers/models/get_custom_domain_response.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/get_events_time_series_request.py +94 -0
- linkbreakers-1.0.0/linkbreakers/models/get_events_time_series_response.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/get_lead_score_explanation_response.py +97 -0
- linkbreakers-1.0.0/linkbreakers/models/get_link_response.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/get_link_setting_response.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/get_media_response.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/get_page_theme_response.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/get_qrcode_design_response.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/get_webhook_response.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/get_workflow_step_response.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/get_workspace_token_response.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/googlerpc_status.py +99 -0
- linkbreakers-1.0.0/linkbreakers/models/http_method.py +43 -0
- linkbreakers-1.0.0/linkbreakers/models/identify_request.py +95 -0
- linkbreakers-1.0.0/linkbreakers/models/identify_response.py +93 -0
- linkbreakers-1.0.0/linkbreakers/models/import_qrcode_template_request.py +87 -0
- linkbreakers-1.0.0/linkbreakers/models/import_qrcode_template_response.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/invite_member_request.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/lead_score.py +114 -0
- linkbreakers-1.0.0/linkbreakers/models/lead_score_breakdown.py +95 -0
- linkbreakers-1.0.0/linkbreakers/models/link.py +162 -0
- linkbreakers-1.0.0/linkbreakers/models/link_setting.py +95 -0
- linkbreakers-1.0.0/linkbreakers/models/link_sort_field.py +41 -0
- linkbreakers-1.0.0/linkbreakers/models/links_service_update_body.py +103 -0
- linkbreakers-1.0.0/linkbreakers/models/list_custom_domains_response.py +95 -0
- linkbreakers-1.0.0/linkbreakers/models/list_event_traces_response.py +95 -0
- linkbreakers-1.0.0/linkbreakers/models/list_events_csv_response.py +89 -0
- linkbreakers-1.0.0/linkbreakers/models/list_events_json_response.py +101 -0
- linkbreakers-1.0.0/linkbreakers/models/list_events_response.py +97 -0
- linkbreakers-1.0.0/linkbreakers/models/list_links_response.py +99 -0
- linkbreakers-1.0.0/linkbreakers/models/list_media_response.py +97 -0
- linkbreakers-1.0.0/linkbreakers/models/list_page_themes_response.py +95 -0
- linkbreakers-1.0.0/linkbreakers/models/list_qrcode_templates_response.py +99 -0
- linkbreakers-1.0.0/linkbreakers/models/list_response.py +95 -0
- linkbreakers-1.0.0/linkbreakers/models/list_tags_response.py +97 -0
- linkbreakers-1.0.0/linkbreakers/models/list_visitors_csv_response.py +89 -0
- linkbreakers-1.0.0/linkbreakers/models/list_visitors_json_response.py +101 -0
- linkbreakers-1.0.0/linkbreakers/models/list_visitors_response.py +97 -0
- linkbreakers-1.0.0/linkbreakers/models/list_webhooks_response.py +95 -0
- linkbreakers-1.0.0/linkbreakers/models/list_workflow_steps_response.py +97 -0
- linkbreakers-1.0.0/linkbreakers/models/list_workspace_tokens_response.py +95 -0
- linkbreakers-1.0.0/linkbreakers/models/media.py +120 -0
- linkbreakers-1.0.0/linkbreakers/models/media_selection.py +89 -0
- linkbreakers-1.0.0/linkbreakers/models/media_type.py +39 -0
- linkbreakers-1.0.0/linkbreakers/models/media_visibility.py +38 -0
- linkbreakers-1.0.0/linkbreakers/models/member.py +119 -0
- linkbreakers-1.0.0/linkbreakers/models/members_service_update_body.py +96 -0
- linkbreakers-1.0.0/linkbreakers/models/multi_link_button.py +93 -0
- linkbreakers-1.0.0/linkbreakers/models/multi_link_payload.py +99 -0
- linkbreakers-1.0.0/linkbreakers/models/multi_link_selected_button.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/multi_link_trace_data.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/output_file_format.py +40 -0
- linkbreakers-1.0.0/linkbreakers/models/page_theme.py +170 -0
- linkbreakers-1.0.0/linkbreakers/models/page_theme_badge_shape.py +39 -0
- linkbreakers-1.0.0/linkbreakers/models/page_theme_border_style.py +42 -0
- linkbreakers-1.0.0/linkbreakers/models/page_theme_canvas_cover_mode.py +39 -0
- linkbreakers-1.0.0/linkbreakers/models/page_theme_container_variant.py +38 -0
- linkbreakers-1.0.0/linkbreakers/models/page_theme_font_family.py +43 -0
- linkbreakers-1.0.0/linkbreakers/models/page_themes_service_update_page_theme_body.py +160 -0
- linkbreakers-1.0.0/linkbreakers/models/password_payload.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/password_trace_data.py +87 -0
- linkbreakers-1.0.0/linkbreakers/models/preferred_link_type.py +39 -0
- linkbreakers-1.0.0/linkbreakers/models/protobuf_any.py +100 -0
- linkbreakers-1.0.0/linkbreakers/models/protobuf_null_value.py +36 -0
- linkbreakers-1.0.0/linkbreakers/models/public_create_qrcode_design_request.py +147 -0
- linkbreakers-1.0.0/linkbreakers/models/public_create_qrcode_design_response.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/public_list_qrcode_templates_response.py +99 -0
- linkbreakers-1.0.0/linkbreakers/models/public_qrcode_template.py +110 -0
- linkbreakers-1.0.0/linkbreakers/models/public_workspace.py +102 -0
- linkbreakers-1.0.0/linkbreakers/models/publish_qrcode_template_response.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/qrcode_design.py +160 -0
- linkbreakers-1.0.0/linkbreakers/models/qrcode_design_service_update_body.py +149 -0
- linkbreakers-1.0.0/linkbreakers/models/qrcode_template.py +124 -0
- linkbreakers-1.0.0/linkbreakers/models/qrcode_templates_service_update_qrcode_template_body.py +97 -0
- linkbreakers-1.0.0/linkbreakers/models/redirect_trace_data.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/remove_workflow_step_relationship_response.py +87 -0
- linkbreakers-1.0.0/linkbreakers/models/request_workspace_enrollment_request.py +87 -0
- linkbreakers-1.0.0/linkbreakers/models/response_format.py +38 -0
- linkbreakers-1.0.0/linkbreakers/models/role.py +39 -0
- linkbreakers-1.0.0/linkbreakers/models/settings_service_update_link_setting_body.py +88 -0
- linkbreakers-1.0.0/linkbreakers/models/shape.py +38 -0
- linkbreakers-1.0.0/linkbreakers/models/shortlink_availability_response.py +87 -0
- linkbreakers-1.0.0/linkbreakers/models/shortlink_random_response.py +87 -0
- linkbreakers-1.0.0/linkbreakers/models/social_link_button.py +93 -0
- linkbreakers-1.0.0/linkbreakers/models/social_links_display_style.py +38 -0
- linkbreakers-1.0.0/linkbreakers/models/social_links_payload.py +102 -0
- linkbreakers-1.0.0/linkbreakers/models/sort_direction.py +38 -0
- linkbreakers-1.0.0/linkbreakers/models/specific_date_condition_payload.py +97 -0
- linkbreakers-1.0.0/linkbreakers/models/specific_date_condition_trace_data.py +97 -0
- linkbreakers-1.0.0/linkbreakers/models/specific_date_condition_trace_option.py +97 -0
- linkbreakers-1.0.0/linkbreakers/models/specific_date_option.py +97 -0
- linkbreakers-1.0.0/linkbreakers/models/subscription_type.py +41 -0
- linkbreakers-1.0.0/linkbreakers/models/theme_color.py +100 -0
- linkbreakers-1.0.0/linkbreakers/models/theme_color_theme_color_type.py +39 -0
- linkbreakers-1.0.0/linkbreakers/models/time_of_day_condition_payload.py +97 -0
- linkbreakers-1.0.0/linkbreakers/models/time_of_day_condition_trace_data.py +97 -0
- linkbreakers-1.0.0/linkbreakers/models/time_of_day_condition_trace_range.py +95 -0
- linkbreakers-1.0.0/linkbreakers/models/time_of_day_range.py +95 -0
- linkbreakers-1.0.0/linkbreakers/models/triggered_by.py +37 -0
- linkbreakers-1.0.0/linkbreakers/models/update_device_response.py +87 -0
- linkbreakers-1.0.0/linkbreakers/models/update_link_response.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/update_link_setting_response.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/update_me_request.py +93 -0
- linkbreakers-1.0.0/linkbreakers/models/update_page_theme_response.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/update_qrcode_design_response.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/update_qrcode_template_response.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/update_webhook_response.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/update_workflow_step_response.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/update_workspace_origin_inquiry_request.py +87 -0
- linkbreakers-1.0.0/linkbreakers/models/update_workspace_origin_purpose_request.py +87 -0
- linkbreakers-1.0.0/linkbreakers/models/update_workspace_request.py +101 -0
- linkbreakers-1.0.0/linkbreakers/models/v_card_data.py +111 -0
- linkbreakers-1.0.0/linkbreakers/models/v_card_payload.py +111 -0
- linkbreakers-1.0.0/linkbreakers/models/validation_instructions_custom_domain_response.py +95 -0
- linkbreakers-1.0.0/linkbreakers/models/validation_instructions_custom_domain_response_validation.py +95 -0
- linkbreakers-1.0.0/linkbreakers/models/validation_instructions_custom_domain_response_validation_type.py +37 -0
- linkbreakers-1.0.0/linkbreakers/models/validation_purpose.py +38 -0
- linkbreakers-1.0.0/linkbreakers/models/visit_type.py +38 -0
- linkbreakers-1.0.0/linkbreakers/models/visit_type_condition_option.py +89 -0
- linkbreakers-1.0.0/linkbreakers/models/visit_type_condition_payload.py +97 -0
- linkbreakers-1.0.0/linkbreakers/models/visit_type_condition_trace_data.py +99 -0
- linkbreakers-1.0.0/linkbreakers/models/visit_type_condition_trace_option.py +89 -0
- linkbreakers-1.0.0/linkbreakers/models/visitor.py +134 -0
- linkbreakers-1.0.0/linkbreakers/models/visitor_event.py +98 -0
- linkbreakers-1.0.0/linkbreakers/models/visitor_input.py +87 -0
- linkbreakers-1.0.0/linkbreakers/models/visitor_link.py +100 -0
- linkbreakers-1.0.0/linkbreakers/models/visitors_service_update_body.py +91 -0
- linkbreakers-1.0.0/linkbreakers/models/webhook.py +131 -0
- linkbreakers-1.0.0/linkbreakers/models/webhook_source.py +39 -0
- linkbreakers-1.0.0/linkbreakers/models/webhook_status.py +39 -0
- linkbreakers-1.0.0/linkbreakers/models/webhooks_service_update_body.py +100 -0
- linkbreakers-1.0.0/linkbreakers/models/workflow_step.py +145 -0
- linkbreakers-1.0.0/linkbreakers/models/workflow_step_kind.py +40 -0
- linkbreakers-1.0.0/linkbreakers/models/workflow_step_node_type.py +38 -0
- linkbreakers-1.0.0/linkbreakers/models/workflow_step_payload.py +159 -0
- linkbreakers-1.0.0/linkbreakers/models/workflow_steps_service_add_relationship_body.py +87 -0
- linkbreakers-1.0.0/linkbreakers/models/workflow_steps_service_create_body.py +111 -0
- linkbreakers-1.0.0/linkbreakers/models/workflow_steps_service_update_body.py +97 -0
- linkbreakers-1.0.0/linkbreakers/models/workspace.py +134 -0
- linkbreakers-1.0.0/linkbreakers/models/workspace_insight.py +88 -0
- linkbreakers-1.0.0/linkbreakers/models/workspace_metric.py +99 -0
- linkbreakers-1.0.0/linkbreakers/models/workspace_token.py +106 -0
- linkbreakers-1.0.0/linkbreakers/py.typed +0 -0
- linkbreakers-1.0.0/linkbreakers/rest.py +263 -0
- linkbreakers-1.0.0/linkbreakers.egg-info/PKG-INFO +120 -0
- linkbreakers-1.0.0/linkbreakers.egg-info/SOURCES.txt +249 -0
- linkbreakers-1.0.0/linkbreakers.egg-info/dependency_links.txt +1 -0
- linkbreakers-1.0.0/linkbreakers.egg-info/requires.txt +4 -0
- linkbreakers-1.0.0/linkbreakers.egg-info/top_level.txt +1 -0
- linkbreakers-1.0.0/pyproject.toml +94 -0
- linkbreakers-1.0.0/setup.cfg +7 -0
- linkbreakers-1.0.0/setup.py +46 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Linkbreakers
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: linkbreakers
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Linkbreakers API
|
|
5
|
+
Home-page: https://github.com/linkbreakers-com/linkbreakers-python
|
|
6
|
+
Author: Linkbreakers
|
|
7
|
+
Author-email: Linkbreakers Support <team@openapitools.org>
|
|
8
|
+
Project-URL: Repository, https://github.com/GIT_USER_ID/GIT_REPO_ID
|
|
9
|
+
Keywords: OpenAPI,OpenAPI-Generator,Linkbreakers API
|
|
10
|
+
Requires-Python: >=3.7
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
License-File: LICENSE
|
|
13
|
+
Requires-Dist: urllib3<3.0.0,>=2.1.0
|
|
14
|
+
Requires-Dist: python-dateutil>=2.8.2
|
|
15
|
+
Requires-Dist: pydantic>=2
|
|
16
|
+
Requires-Dist: typing-extensions>=4.7.1
|
|
17
|
+
Dynamic: author
|
|
18
|
+
Dynamic: home-page
|
|
19
|
+
Dynamic: license-file
|
|
20
|
+
Dynamic: requires-python
|
|
21
|
+
|
|
22
|
+
# linkbreakers
|
|
23
|
+
|
|
24
|
+
Official Python SDK for the Linkbreakers API.
|
|
25
|
+
|
|
26
|
+
[](https://pypi.org/project/linkbreakers/)
|
|
27
|
+
[](https://opensource.org/licenses/MIT)
|
|
28
|
+
|
|
29
|
+
## Installation
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
pip install linkbreakers
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Usage
|
|
36
|
+
|
|
37
|
+
```python
|
|
38
|
+
from linkbreakers import Configuration, ApiClient, LinksApi
|
|
39
|
+
|
|
40
|
+
# Configure API client
|
|
41
|
+
configuration = Configuration(
|
|
42
|
+
api_key={'ApiKeyAuth': 'your_api_key_here'},
|
|
43
|
+
host='https://api.linkbreakers.com'
|
|
44
|
+
)
|
|
45
|
+
|
|
46
|
+
# Create API client
|
|
47
|
+
with ApiClient(configuration) as api_client:
|
|
48
|
+
links_api = LinksApi(api_client)
|
|
49
|
+
|
|
50
|
+
# Create a shortened link
|
|
51
|
+
link = links_api.create_link({
|
|
52
|
+
'destination': 'https://example.com',
|
|
53
|
+
'name': 'My Link'
|
|
54
|
+
})
|
|
55
|
+
|
|
56
|
+
print(f'Short link: {link.shortlink}')
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
### Full API Support
|
|
60
|
+
|
|
61
|
+
The SDK provides type-safe methods for all API operations:
|
|
62
|
+
|
|
63
|
+
```python
|
|
64
|
+
from linkbreakers import Configuration, ApiClient, LinksApi
|
|
65
|
+
|
|
66
|
+
configuration = Configuration(
|
|
67
|
+
api_key={'ApiKeyAuth': 'your_api_key_here'},
|
|
68
|
+
host='https://api.linkbreakers.com'
|
|
69
|
+
)
|
|
70
|
+
|
|
71
|
+
with ApiClient(configuration) as api_client:
|
|
72
|
+
links_api = LinksApi(api_client)
|
|
73
|
+
|
|
74
|
+
# Get a link by ID
|
|
75
|
+
link = links_api.get_link(id='link-id')
|
|
76
|
+
|
|
77
|
+
# Update a link
|
|
78
|
+
updated = links_api.update_link(
|
|
79
|
+
id='link-id',
|
|
80
|
+
update_link_request={
|
|
81
|
+
'name': 'Updated Name'
|
|
82
|
+
}
|
|
83
|
+
)
|
|
84
|
+
|
|
85
|
+
# Delete a link
|
|
86
|
+
links_api.delete_link(id='link-id')
|
|
87
|
+
|
|
88
|
+
# List links with filtering
|
|
89
|
+
links = links_api.list_links(
|
|
90
|
+
page_size=50,
|
|
91
|
+
search='my-search',
|
|
92
|
+
tags=['tag1', 'tag2']
|
|
93
|
+
)
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
## Features
|
|
97
|
+
|
|
98
|
+
- ✅ Full type hints and autocompletion support
|
|
99
|
+
- ✅ Python 3.7+ support
|
|
100
|
+
- ✅ Auto-generated from OpenAPI specification
|
|
101
|
+
- ✅ Automatically updated when API changes
|
|
102
|
+
|
|
103
|
+
## Documentation
|
|
104
|
+
|
|
105
|
+
For complete API documentation, visit [https://docs.linkbreakers.com](https://docs.linkbreakers.com)
|
|
106
|
+
|
|
107
|
+
## Auto-Generated SDK
|
|
108
|
+
|
|
109
|
+
This SDK is automatically generated from the Linkbreakers OpenAPI specification. When the API is updated, this SDK is automatically regenerated and published.
|
|
110
|
+
|
|
111
|
+
**Current API Version:** See [OPENAPI_VERSION](./OPENAPI_VERSION)
|
|
112
|
+
|
|
113
|
+
## Support
|
|
114
|
+
|
|
115
|
+
- **Issues:** [GitHub Issues](https://github.com/linkbreakers-com/linkbreakers-python/issues)
|
|
116
|
+
- **Documentation:** [https://docs.linkbreakers.com](https://docs.linkbreakers.com)
|
|
117
|
+
|
|
118
|
+
## License
|
|
119
|
+
|
|
120
|
+
MIT License - see [LICENSE](./LICENSE) for details.
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
# linkbreakers
|
|
2
|
+
|
|
3
|
+
Official Python SDK for the Linkbreakers API.
|
|
4
|
+
|
|
5
|
+
[](https://pypi.org/project/linkbreakers/)
|
|
6
|
+
[](https://opensource.org/licenses/MIT)
|
|
7
|
+
|
|
8
|
+
## Installation
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
pip install linkbreakers
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## Usage
|
|
15
|
+
|
|
16
|
+
```python
|
|
17
|
+
from linkbreakers import Configuration, ApiClient, LinksApi
|
|
18
|
+
|
|
19
|
+
# Configure API client
|
|
20
|
+
configuration = Configuration(
|
|
21
|
+
api_key={'ApiKeyAuth': 'your_api_key_here'},
|
|
22
|
+
host='https://api.linkbreakers.com'
|
|
23
|
+
)
|
|
24
|
+
|
|
25
|
+
# Create API client
|
|
26
|
+
with ApiClient(configuration) as api_client:
|
|
27
|
+
links_api = LinksApi(api_client)
|
|
28
|
+
|
|
29
|
+
# Create a shortened link
|
|
30
|
+
link = links_api.create_link({
|
|
31
|
+
'destination': 'https://example.com',
|
|
32
|
+
'name': 'My Link'
|
|
33
|
+
})
|
|
34
|
+
|
|
35
|
+
print(f'Short link: {link.shortlink}')
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
### Full API Support
|
|
39
|
+
|
|
40
|
+
The SDK provides type-safe methods for all API operations:
|
|
41
|
+
|
|
42
|
+
```python
|
|
43
|
+
from linkbreakers import Configuration, ApiClient, LinksApi
|
|
44
|
+
|
|
45
|
+
configuration = Configuration(
|
|
46
|
+
api_key={'ApiKeyAuth': 'your_api_key_here'},
|
|
47
|
+
host='https://api.linkbreakers.com'
|
|
48
|
+
)
|
|
49
|
+
|
|
50
|
+
with ApiClient(configuration) as api_client:
|
|
51
|
+
links_api = LinksApi(api_client)
|
|
52
|
+
|
|
53
|
+
# Get a link by ID
|
|
54
|
+
link = links_api.get_link(id='link-id')
|
|
55
|
+
|
|
56
|
+
# Update a link
|
|
57
|
+
updated = links_api.update_link(
|
|
58
|
+
id='link-id',
|
|
59
|
+
update_link_request={
|
|
60
|
+
'name': 'Updated Name'
|
|
61
|
+
}
|
|
62
|
+
)
|
|
63
|
+
|
|
64
|
+
# Delete a link
|
|
65
|
+
links_api.delete_link(id='link-id')
|
|
66
|
+
|
|
67
|
+
# List links with filtering
|
|
68
|
+
links = links_api.list_links(
|
|
69
|
+
page_size=50,
|
|
70
|
+
search='my-search',
|
|
71
|
+
tags=['tag1', 'tag2']
|
|
72
|
+
)
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
## Features
|
|
76
|
+
|
|
77
|
+
- ✅ Full type hints and autocompletion support
|
|
78
|
+
- ✅ Python 3.7+ support
|
|
79
|
+
- ✅ Auto-generated from OpenAPI specification
|
|
80
|
+
- ✅ Automatically updated when API changes
|
|
81
|
+
|
|
82
|
+
## Documentation
|
|
83
|
+
|
|
84
|
+
For complete API documentation, visit [https://docs.linkbreakers.com](https://docs.linkbreakers.com)
|
|
85
|
+
|
|
86
|
+
## Auto-Generated SDK
|
|
87
|
+
|
|
88
|
+
This SDK is automatically generated from the Linkbreakers OpenAPI specification. When the API is updated, this SDK is automatically regenerated and published.
|
|
89
|
+
|
|
90
|
+
**Current API Version:** See [OPENAPI_VERSION](./OPENAPI_VERSION)
|
|
91
|
+
|
|
92
|
+
## Support
|
|
93
|
+
|
|
94
|
+
- **Issues:** [GitHub Issues](https://github.com/linkbreakers-com/linkbreakers-python/issues)
|
|
95
|
+
- **Documentation:** [https://docs.linkbreakers.com](https://docs.linkbreakers.com)
|
|
96
|
+
|
|
97
|
+
## License
|
|
98
|
+
|
|
99
|
+
MIT License - see [LICENSE](./LICENSE) for details.
|