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.
Files changed (250) hide show
  1. linkbreakers-1.0.0/LICENSE +21 -0
  2. linkbreakers-1.0.0/PKG-INFO +120 -0
  3. linkbreakers-1.0.0/README.md +99 -0
  4. linkbreakers-1.0.0/linkbreakers/__init__.py +506 -0
  5. linkbreakers-1.0.0/linkbreakers/api/__init__.py +22 -0
  6. linkbreakers-1.0.0/linkbreakers/api/custom_domains_api.py +1627 -0
  7. linkbreakers-1.0.0/linkbreakers/api/events_api.py +976 -0
  8. linkbreakers-1.0.0/linkbreakers/api/integrations_service_api.py +295 -0
  9. linkbreakers-1.0.0/linkbreakers/api/link_settings_api.py +589 -0
  10. linkbreakers-1.0.0/linkbreakers/api/links_api.py +2870 -0
  11. linkbreakers-1.0.0/linkbreakers/api/media_api.py +1120 -0
  12. linkbreakers-1.0.0/linkbreakers/api/members_api.py +2766 -0
  13. linkbreakers-1.0.0/linkbreakers/api/page_themes_api.py +845 -0
  14. linkbreakers-1.0.0/linkbreakers/api/qr_code_designs_api.py +1133 -0
  15. linkbreakers-1.0.0/linkbreakers/api/qr_code_templates_api.py +2643 -0
  16. linkbreakers-1.0.0/linkbreakers/api/tags_api.py +598 -0
  17. linkbreakers-1.0.0/linkbreakers/api/time_series_api.py +307 -0
  18. linkbreakers-1.0.0/linkbreakers/api/visitors_api.py +1789 -0
  19. linkbreakers-1.0.0/linkbreakers/api/webhooks_api.py +1391 -0
  20. linkbreakers-1.0.0/linkbreakers/api/workflow_steps_api.py +2081 -0
  21. linkbreakers-1.0.0/linkbreakers/api/workspace_metrics_api.py +848 -0
  22. linkbreakers-1.0.0/linkbreakers/api/workspace_tokens_api.py +1083 -0
  23. linkbreakers-1.0.0/linkbreakers/api/workspaces_api.py +2153 -0
  24. linkbreakers-1.0.0/linkbreakers/api_client.py +805 -0
  25. linkbreakers-1.0.0/linkbreakers/api_response.py +21 -0
  26. linkbreakers-1.0.0/linkbreakers/configuration.py +586 -0
  27. linkbreakers-1.0.0/linkbreakers/exceptions.py +218 -0
  28. linkbreakers-1.0.0/linkbreakers/models/__init__.py +228 -0
  29. linkbreakers-1.0.0/linkbreakers/models/action.py +38 -0
  30. linkbreakers-1.0.0/linkbreakers/models/add_workflow_step_relationship_response.py +87 -0
  31. linkbreakers-1.0.0/linkbreakers/models/api_tag.py +98 -0
  32. linkbreakers-1.0.0/linkbreakers/models/background_options.py +91 -0
  33. linkbreakers-1.0.0/linkbreakers/models/canvas_position.py +89 -0
  34. linkbreakers-1.0.0/linkbreakers/models/check_custom_domain_response.py +91 -0
  35. linkbreakers-1.0.0/linkbreakers/models/client_redirect_payload.py +89 -0
  36. linkbreakers-1.0.0/linkbreakers/models/contact_card_trace_card.py +111 -0
  37. linkbreakers-1.0.0/linkbreakers/models/contact_card_trace_data.py +91 -0
  38. linkbreakers-1.0.0/linkbreakers/models/container_config.py +124 -0
  39. linkbreakers-1.0.0/linkbreakers/models/corners_dot_options.py +93 -0
  40. linkbreakers-1.0.0/linkbreakers/models/corners_square_options.py +93 -0
  41. linkbreakers-1.0.0/linkbreakers/models/country_condition_outcome.py +89 -0
  42. linkbreakers-1.0.0/linkbreakers/models/country_condition_payload.py +97 -0
  43. linkbreakers-1.0.0/linkbreakers/models/country_condition_trace_data.py +97 -0
  44. linkbreakers-1.0.0/linkbreakers/models/country_condition_trace_option.py +89 -0
  45. linkbreakers-1.0.0/linkbreakers/models/create_bulk_links_request.py +95 -0
  46. linkbreakers-1.0.0/linkbreakers/models/create_bulk_links_response.py +95 -0
  47. linkbreakers-1.0.0/linkbreakers/models/create_contact_link_request.py +113 -0
  48. linkbreakers-1.0.0/linkbreakers/models/create_contact_link_response.py +91 -0
  49. linkbreakers-1.0.0/linkbreakers/models/create_custom_domain_request.py +87 -0
  50. linkbreakers-1.0.0/linkbreakers/models/create_custom_domain_response.py +91 -0
  51. linkbreakers-1.0.0/linkbreakers/models/create_event_trace_response.py +91 -0
  52. linkbreakers-1.0.0/linkbreakers/models/create_link_request.py +109 -0
  53. linkbreakers-1.0.0/linkbreakers/models/create_link_response.py +91 -0
  54. linkbreakers-1.0.0/linkbreakers/models/create_media_request.py +95 -0
  55. linkbreakers-1.0.0/linkbreakers/models/create_media_response.py +91 -0
  56. linkbreakers-1.0.0/linkbreakers/models/create_qrcode_template_request.py +97 -0
  57. linkbreakers-1.0.0/linkbreakers/models/create_qrcode_template_response.py +91 -0
  58. linkbreakers-1.0.0/linkbreakers/models/create_webhook_request.py +97 -0
  59. linkbreakers-1.0.0/linkbreakers/models/create_webhook_response.py +91 -0
  60. linkbreakers-1.0.0/linkbreakers/models/create_workflow_step_response.py +91 -0
  61. linkbreakers-1.0.0/linkbreakers/models/create_workspace_token_request.py +87 -0
  62. linkbreakers-1.0.0/linkbreakers/models/create_workspace_token_response.py +93 -0
  63. linkbreakers-1.0.0/linkbreakers/models/custom_domain.py +120 -0
  64. linkbreakers-1.0.0/linkbreakers/models/custom_domain_status.py +41 -0
  65. linkbreakers-1.0.0/linkbreakers/models/data_collection.py +39 -0
  66. linkbreakers-1.0.0/linkbreakers/models/day_of_month_condition_payload.py +97 -0
  67. linkbreakers-1.0.0/linkbreakers/models/day_of_month_condition_trace_data.py +97 -0
  68. linkbreakers-1.0.0/linkbreakers/models/day_of_month_condition_trace_option.py +93 -0
  69. linkbreakers-1.0.0/linkbreakers/models/day_of_month_option.py +93 -0
  70. linkbreakers-1.0.0/linkbreakers/models/day_of_week_condition_payload.py +97 -0
  71. linkbreakers-1.0.0/linkbreakers/models/day_of_week_condition_trace_data.py +97 -0
  72. linkbreakers-1.0.0/linkbreakers/models/day_of_week_condition_trace_option.py +93 -0
  73. linkbreakers-1.0.0/linkbreakers/models/day_of_week_option.py +93 -0
  74. linkbreakers-1.0.0/linkbreakers/models/delete_attribute_response.py +87 -0
  75. linkbreakers-1.0.0/linkbreakers/models/delete_visitor_response.py +87 -0
  76. linkbreakers-1.0.0/linkbreakers/models/device.py +158 -0
  77. linkbreakers-1.0.0/linkbreakers/models/device_input.py +121 -0
  78. linkbreakers-1.0.0/linkbreakers/models/device_type.py +42 -0
  79. linkbreakers-1.0.0/linkbreakers/models/dots_options.py +93 -0
  80. linkbreakers-1.0.0/linkbreakers/models/entry_access_trace_data.py +95 -0
  81. linkbreakers-1.0.0/linkbreakers/models/error_response.py +93 -0
  82. linkbreakers-1.0.0/linkbreakers/models/event.py +163 -0
  83. linkbreakers-1.0.0/linkbreakers/models/event_action.py +49 -0
  84. linkbreakers-1.0.0/linkbreakers/models/event_trace.py +112 -0
  85. linkbreakers-1.0.0/linkbreakers/models/event_trace_data.py +157 -0
  86. linkbreakers-1.0.0/linkbreakers/models/events_metric.py +116 -0
  87. linkbreakers-1.0.0/linkbreakers/models/events_service_create_event_trace_body.py +95 -0
  88. linkbreakers-1.0.0/linkbreakers/models/events_service_update_device_body.py +91 -0
  89. linkbreakers-1.0.0/linkbreakers/models/events_time_series.py +99 -0
  90. linkbreakers-1.0.0/linkbreakers/models/events_time_series_data.py +90 -0
  91. linkbreakers-1.0.0/linkbreakers/models/font_config.py +109 -0
  92. linkbreakers-1.0.0/linkbreakers/models/form_field.py +116 -0
  93. linkbreakers-1.0.0/linkbreakers/models/form_field_option.py +89 -0
  94. linkbreakers-1.0.0/linkbreakers/models/form_field_type.py +46 -0
  95. linkbreakers-1.0.0/linkbreakers/models/form_payload.py +107 -0
  96. linkbreakers-1.0.0/linkbreakers/models/form_trace_data.py +109 -0
  97. linkbreakers-1.0.0/linkbreakers/models/form_trace_data_field.py +95 -0
  98. linkbreakers-1.0.0/linkbreakers/models/get_custom_domain_response.py +91 -0
  99. linkbreakers-1.0.0/linkbreakers/models/get_events_time_series_request.py +94 -0
  100. linkbreakers-1.0.0/linkbreakers/models/get_events_time_series_response.py +91 -0
  101. linkbreakers-1.0.0/linkbreakers/models/get_lead_score_explanation_response.py +97 -0
  102. linkbreakers-1.0.0/linkbreakers/models/get_link_response.py +91 -0
  103. linkbreakers-1.0.0/linkbreakers/models/get_link_setting_response.py +91 -0
  104. linkbreakers-1.0.0/linkbreakers/models/get_media_response.py +91 -0
  105. linkbreakers-1.0.0/linkbreakers/models/get_page_theme_response.py +91 -0
  106. linkbreakers-1.0.0/linkbreakers/models/get_qrcode_design_response.py +91 -0
  107. linkbreakers-1.0.0/linkbreakers/models/get_webhook_response.py +91 -0
  108. linkbreakers-1.0.0/linkbreakers/models/get_workflow_step_response.py +91 -0
  109. linkbreakers-1.0.0/linkbreakers/models/get_workspace_token_response.py +91 -0
  110. linkbreakers-1.0.0/linkbreakers/models/googlerpc_status.py +99 -0
  111. linkbreakers-1.0.0/linkbreakers/models/http_method.py +43 -0
  112. linkbreakers-1.0.0/linkbreakers/models/identify_request.py +95 -0
  113. linkbreakers-1.0.0/linkbreakers/models/identify_response.py +93 -0
  114. linkbreakers-1.0.0/linkbreakers/models/import_qrcode_template_request.py +87 -0
  115. linkbreakers-1.0.0/linkbreakers/models/import_qrcode_template_response.py +91 -0
  116. linkbreakers-1.0.0/linkbreakers/models/invite_member_request.py +91 -0
  117. linkbreakers-1.0.0/linkbreakers/models/lead_score.py +114 -0
  118. linkbreakers-1.0.0/linkbreakers/models/lead_score_breakdown.py +95 -0
  119. linkbreakers-1.0.0/linkbreakers/models/link.py +162 -0
  120. linkbreakers-1.0.0/linkbreakers/models/link_setting.py +95 -0
  121. linkbreakers-1.0.0/linkbreakers/models/link_sort_field.py +41 -0
  122. linkbreakers-1.0.0/linkbreakers/models/links_service_update_body.py +103 -0
  123. linkbreakers-1.0.0/linkbreakers/models/list_custom_domains_response.py +95 -0
  124. linkbreakers-1.0.0/linkbreakers/models/list_event_traces_response.py +95 -0
  125. linkbreakers-1.0.0/linkbreakers/models/list_events_csv_response.py +89 -0
  126. linkbreakers-1.0.0/linkbreakers/models/list_events_json_response.py +101 -0
  127. linkbreakers-1.0.0/linkbreakers/models/list_events_response.py +97 -0
  128. linkbreakers-1.0.0/linkbreakers/models/list_links_response.py +99 -0
  129. linkbreakers-1.0.0/linkbreakers/models/list_media_response.py +97 -0
  130. linkbreakers-1.0.0/linkbreakers/models/list_page_themes_response.py +95 -0
  131. linkbreakers-1.0.0/linkbreakers/models/list_qrcode_templates_response.py +99 -0
  132. linkbreakers-1.0.0/linkbreakers/models/list_response.py +95 -0
  133. linkbreakers-1.0.0/linkbreakers/models/list_tags_response.py +97 -0
  134. linkbreakers-1.0.0/linkbreakers/models/list_visitors_csv_response.py +89 -0
  135. linkbreakers-1.0.0/linkbreakers/models/list_visitors_json_response.py +101 -0
  136. linkbreakers-1.0.0/linkbreakers/models/list_visitors_response.py +97 -0
  137. linkbreakers-1.0.0/linkbreakers/models/list_webhooks_response.py +95 -0
  138. linkbreakers-1.0.0/linkbreakers/models/list_workflow_steps_response.py +97 -0
  139. linkbreakers-1.0.0/linkbreakers/models/list_workspace_tokens_response.py +95 -0
  140. linkbreakers-1.0.0/linkbreakers/models/media.py +120 -0
  141. linkbreakers-1.0.0/linkbreakers/models/media_selection.py +89 -0
  142. linkbreakers-1.0.0/linkbreakers/models/media_type.py +39 -0
  143. linkbreakers-1.0.0/linkbreakers/models/media_visibility.py +38 -0
  144. linkbreakers-1.0.0/linkbreakers/models/member.py +119 -0
  145. linkbreakers-1.0.0/linkbreakers/models/members_service_update_body.py +96 -0
  146. linkbreakers-1.0.0/linkbreakers/models/multi_link_button.py +93 -0
  147. linkbreakers-1.0.0/linkbreakers/models/multi_link_payload.py +99 -0
  148. linkbreakers-1.0.0/linkbreakers/models/multi_link_selected_button.py +91 -0
  149. linkbreakers-1.0.0/linkbreakers/models/multi_link_trace_data.py +91 -0
  150. linkbreakers-1.0.0/linkbreakers/models/output_file_format.py +40 -0
  151. linkbreakers-1.0.0/linkbreakers/models/page_theme.py +170 -0
  152. linkbreakers-1.0.0/linkbreakers/models/page_theme_badge_shape.py +39 -0
  153. linkbreakers-1.0.0/linkbreakers/models/page_theme_border_style.py +42 -0
  154. linkbreakers-1.0.0/linkbreakers/models/page_theme_canvas_cover_mode.py +39 -0
  155. linkbreakers-1.0.0/linkbreakers/models/page_theme_container_variant.py +38 -0
  156. linkbreakers-1.0.0/linkbreakers/models/page_theme_font_family.py +43 -0
  157. linkbreakers-1.0.0/linkbreakers/models/page_themes_service_update_page_theme_body.py +160 -0
  158. linkbreakers-1.0.0/linkbreakers/models/password_payload.py +91 -0
  159. linkbreakers-1.0.0/linkbreakers/models/password_trace_data.py +87 -0
  160. linkbreakers-1.0.0/linkbreakers/models/preferred_link_type.py +39 -0
  161. linkbreakers-1.0.0/linkbreakers/models/protobuf_any.py +100 -0
  162. linkbreakers-1.0.0/linkbreakers/models/protobuf_null_value.py +36 -0
  163. linkbreakers-1.0.0/linkbreakers/models/public_create_qrcode_design_request.py +147 -0
  164. linkbreakers-1.0.0/linkbreakers/models/public_create_qrcode_design_response.py +91 -0
  165. linkbreakers-1.0.0/linkbreakers/models/public_list_qrcode_templates_response.py +99 -0
  166. linkbreakers-1.0.0/linkbreakers/models/public_qrcode_template.py +110 -0
  167. linkbreakers-1.0.0/linkbreakers/models/public_workspace.py +102 -0
  168. linkbreakers-1.0.0/linkbreakers/models/publish_qrcode_template_response.py +91 -0
  169. linkbreakers-1.0.0/linkbreakers/models/qrcode_design.py +160 -0
  170. linkbreakers-1.0.0/linkbreakers/models/qrcode_design_service_update_body.py +149 -0
  171. linkbreakers-1.0.0/linkbreakers/models/qrcode_template.py +124 -0
  172. linkbreakers-1.0.0/linkbreakers/models/qrcode_templates_service_update_qrcode_template_body.py +97 -0
  173. linkbreakers-1.0.0/linkbreakers/models/redirect_trace_data.py +91 -0
  174. linkbreakers-1.0.0/linkbreakers/models/remove_workflow_step_relationship_response.py +87 -0
  175. linkbreakers-1.0.0/linkbreakers/models/request_workspace_enrollment_request.py +87 -0
  176. linkbreakers-1.0.0/linkbreakers/models/response_format.py +38 -0
  177. linkbreakers-1.0.0/linkbreakers/models/role.py +39 -0
  178. linkbreakers-1.0.0/linkbreakers/models/settings_service_update_link_setting_body.py +88 -0
  179. linkbreakers-1.0.0/linkbreakers/models/shape.py +38 -0
  180. linkbreakers-1.0.0/linkbreakers/models/shortlink_availability_response.py +87 -0
  181. linkbreakers-1.0.0/linkbreakers/models/shortlink_random_response.py +87 -0
  182. linkbreakers-1.0.0/linkbreakers/models/social_link_button.py +93 -0
  183. linkbreakers-1.0.0/linkbreakers/models/social_links_display_style.py +38 -0
  184. linkbreakers-1.0.0/linkbreakers/models/social_links_payload.py +102 -0
  185. linkbreakers-1.0.0/linkbreakers/models/sort_direction.py +38 -0
  186. linkbreakers-1.0.0/linkbreakers/models/specific_date_condition_payload.py +97 -0
  187. linkbreakers-1.0.0/linkbreakers/models/specific_date_condition_trace_data.py +97 -0
  188. linkbreakers-1.0.0/linkbreakers/models/specific_date_condition_trace_option.py +97 -0
  189. linkbreakers-1.0.0/linkbreakers/models/specific_date_option.py +97 -0
  190. linkbreakers-1.0.0/linkbreakers/models/subscription_type.py +41 -0
  191. linkbreakers-1.0.0/linkbreakers/models/theme_color.py +100 -0
  192. linkbreakers-1.0.0/linkbreakers/models/theme_color_theme_color_type.py +39 -0
  193. linkbreakers-1.0.0/linkbreakers/models/time_of_day_condition_payload.py +97 -0
  194. linkbreakers-1.0.0/linkbreakers/models/time_of_day_condition_trace_data.py +97 -0
  195. linkbreakers-1.0.0/linkbreakers/models/time_of_day_condition_trace_range.py +95 -0
  196. linkbreakers-1.0.0/linkbreakers/models/time_of_day_range.py +95 -0
  197. linkbreakers-1.0.0/linkbreakers/models/triggered_by.py +37 -0
  198. linkbreakers-1.0.0/linkbreakers/models/update_device_response.py +87 -0
  199. linkbreakers-1.0.0/linkbreakers/models/update_link_response.py +91 -0
  200. linkbreakers-1.0.0/linkbreakers/models/update_link_setting_response.py +91 -0
  201. linkbreakers-1.0.0/linkbreakers/models/update_me_request.py +93 -0
  202. linkbreakers-1.0.0/linkbreakers/models/update_page_theme_response.py +91 -0
  203. linkbreakers-1.0.0/linkbreakers/models/update_qrcode_design_response.py +91 -0
  204. linkbreakers-1.0.0/linkbreakers/models/update_qrcode_template_response.py +91 -0
  205. linkbreakers-1.0.0/linkbreakers/models/update_webhook_response.py +91 -0
  206. linkbreakers-1.0.0/linkbreakers/models/update_workflow_step_response.py +91 -0
  207. linkbreakers-1.0.0/linkbreakers/models/update_workspace_origin_inquiry_request.py +87 -0
  208. linkbreakers-1.0.0/linkbreakers/models/update_workspace_origin_purpose_request.py +87 -0
  209. linkbreakers-1.0.0/linkbreakers/models/update_workspace_request.py +101 -0
  210. linkbreakers-1.0.0/linkbreakers/models/v_card_data.py +111 -0
  211. linkbreakers-1.0.0/linkbreakers/models/v_card_payload.py +111 -0
  212. linkbreakers-1.0.0/linkbreakers/models/validation_instructions_custom_domain_response.py +95 -0
  213. linkbreakers-1.0.0/linkbreakers/models/validation_instructions_custom_domain_response_validation.py +95 -0
  214. linkbreakers-1.0.0/linkbreakers/models/validation_instructions_custom_domain_response_validation_type.py +37 -0
  215. linkbreakers-1.0.0/linkbreakers/models/validation_purpose.py +38 -0
  216. linkbreakers-1.0.0/linkbreakers/models/visit_type.py +38 -0
  217. linkbreakers-1.0.0/linkbreakers/models/visit_type_condition_option.py +89 -0
  218. linkbreakers-1.0.0/linkbreakers/models/visit_type_condition_payload.py +97 -0
  219. linkbreakers-1.0.0/linkbreakers/models/visit_type_condition_trace_data.py +99 -0
  220. linkbreakers-1.0.0/linkbreakers/models/visit_type_condition_trace_option.py +89 -0
  221. linkbreakers-1.0.0/linkbreakers/models/visitor.py +134 -0
  222. linkbreakers-1.0.0/linkbreakers/models/visitor_event.py +98 -0
  223. linkbreakers-1.0.0/linkbreakers/models/visitor_input.py +87 -0
  224. linkbreakers-1.0.0/linkbreakers/models/visitor_link.py +100 -0
  225. linkbreakers-1.0.0/linkbreakers/models/visitors_service_update_body.py +91 -0
  226. linkbreakers-1.0.0/linkbreakers/models/webhook.py +131 -0
  227. linkbreakers-1.0.0/linkbreakers/models/webhook_source.py +39 -0
  228. linkbreakers-1.0.0/linkbreakers/models/webhook_status.py +39 -0
  229. linkbreakers-1.0.0/linkbreakers/models/webhooks_service_update_body.py +100 -0
  230. linkbreakers-1.0.0/linkbreakers/models/workflow_step.py +145 -0
  231. linkbreakers-1.0.0/linkbreakers/models/workflow_step_kind.py +40 -0
  232. linkbreakers-1.0.0/linkbreakers/models/workflow_step_node_type.py +38 -0
  233. linkbreakers-1.0.0/linkbreakers/models/workflow_step_payload.py +159 -0
  234. linkbreakers-1.0.0/linkbreakers/models/workflow_steps_service_add_relationship_body.py +87 -0
  235. linkbreakers-1.0.0/linkbreakers/models/workflow_steps_service_create_body.py +111 -0
  236. linkbreakers-1.0.0/linkbreakers/models/workflow_steps_service_update_body.py +97 -0
  237. linkbreakers-1.0.0/linkbreakers/models/workspace.py +134 -0
  238. linkbreakers-1.0.0/linkbreakers/models/workspace_insight.py +88 -0
  239. linkbreakers-1.0.0/linkbreakers/models/workspace_metric.py +99 -0
  240. linkbreakers-1.0.0/linkbreakers/models/workspace_token.py +106 -0
  241. linkbreakers-1.0.0/linkbreakers/py.typed +0 -0
  242. linkbreakers-1.0.0/linkbreakers/rest.py +263 -0
  243. linkbreakers-1.0.0/linkbreakers.egg-info/PKG-INFO +120 -0
  244. linkbreakers-1.0.0/linkbreakers.egg-info/SOURCES.txt +249 -0
  245. linkbreakers-1.0.0/linkbreakers.egg-info/dependency_links.txt +1 -0
  246. linkbreakers-1.0.0/linkbreakers.egg-info/requires.txt +4 -0
  247. linkbreakers-1.0.0/linkbreakers.egg-info/top_level.txt +1 -0
  248. linkbreakers-1.0.0/pyproject.toml +94 -0
  249. linkbreakers-1.0.0/setup.cfg +7 -0
  250. 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
+ [![PyPI version](https://badge.fury.io/py/linkbreakers.svg)](https://pypi.org/project/linkbreakers/)
27
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](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
+ [![PyPI version](https://badge.fury.io/py/linkbreakers.svg)](https://pypi.org/project/linkbreakers/)
6
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](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.