talkif 0.1.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.
- talkif-0.1.0/LICENSE +21 -0
- talkif-0.1.0/PKG-INFO +59 -0
- talkif-0.1.0/README.md +26 -0
- talkif-0.1.0/pyproject.toml +97 -0
- talkif-0.1.0/src/talkif/__init__.py +684 -0
- talkif-0.1.0/src/talkif/_default_clients.py +30 -0
- talkif-0.1.0/src/talkif/ai_models/__init__.py +4 -0
- talkif-0.1.0/src/talkif/ai_models/client.py +301 -0
- talkif-0.1.0/src/talkif/ai_models/raw_client.py +415 -0
- talkif-0.1.0/src/talkif/analytics/__init__.py +4 -0
- talkif-0.1.0/src/talkif/analytics/client.py +224 -0
- talkif-0.1.0/src/talkif/analytics/raw_client.py +464 -0
- talkif-0.1.0/src/talkif/billing/__init__.py +4 -0
- talkif-0.1.0/src/talkif/billing/client.py +830 -0
- talkif-0.1.0/src/talkif/billing/raw_client.py +1744 -0
- talkif-0.1.0/src/talkif/calls/__init__.py +4 -0
- talkif-0.1.0/src/talkif/calls/client.py +779 -0
- talkif-0.1.0/src/talkif/calls/raw_client.py +1933 -0
- talkif-0.1.0/src/talkif/campaigns/__init__.py +4 -0
- talkif-0.1.0/src/talkif/campaigns/client.py +1630 -0
- talkif-0.1.0/src/talkif/campaigns/raw_client.py +3921 -0
- talkif-0.1.0/src/talkif/client.py +499 -0
- talkif-0.1.0/src/talkif/contacts/__init__.py +4 -0
- talkif-0.1.0/src/talkif/contacts/client.py +1375 -0
- talkif-0.1.0/src/talkif/contacts/raw_client.py +3041 -0
- talkif-0.1.0/src/talkif/core/__init__.py +132 -0
- talkif-0.1.0/src/talkif/core/api_error.py +23 -0
- talkif-0.1.0/src/talkif/core/client_wrapper.py +148 -0
- talkif-0.1.0/src/talkif/core/datetime_utils.py +70 -0
- talkif-0.1.0/src/talkif/core/file.py +67 -0
- talkif-0.1.0/src/talkif/core/force_multipart.py +18 -0
- talkif-0.1.0/src/talkif/core/http_client.py +940 -0
- talkif-0.1.0/src/talkif/core/http_response.py +63 -0
- talkif-0.1.0/src/talkif/core/http_sse/__init__.py +42 -0
- talkif-0.1.0/src/talkif/core/http_sse/_api.py +455 -0
- talkif-0.1.0/src/talkif/core/http_sse/_decoders.py +74 -0
- talkif-0.1.0/src/talkif/core/http_sse/_exceptions.py +7 -0
- talkif-0.1.0/src/talkif/core/http_sse/_models.py +17 -0
- talkif-0.1.0/src/talkif/core/jsonable_encoder.py +133 -0
- talkif-0.1.0/src/talkif/core/logging.py +107 -0
- talkif-0.1.0/src/talkif/core/pagination.py +82 -0
- talkif-0.1.0/src/talkif/core/parse_error.py +36 -0
- talkif-0.1.0/src/talkif/core/pydantic_utilities.py +486 -0
- talkif-0.1.0/src/talkif/core/query_encoder.py +58 -0
- talkif-0.1.0/src/talkif/core/remove_none_from_dict.py +11 -0
- talkif-0.1.0/src/talkif/core/request_options.py +40 -0
- talkif-0.1.0/src/talkif/core/serialization.py +347 -0
- talkif-0.1.0/src/talkif/do_not_call/__init__.py +4 -0
- talkif-0.1.0/src/talkif/do_not_call/client.py +505 -0
- talkif-0.1.0/src/talkif/do_not_call/raw_client.py +1126 -0
- talkif-0.1.0/src/talkif/environment.py +7 -0
- talkif-0.1.0/src/talkif/errors/__init__.py +65 -0
- talkif-0.1.0/src/talkif/errors/bad_request_error.py +11 -0
- talkif-0.1.0/src/talkif/errors/client.py +100 -0
- talkif-0.1.0/src/talkif/errors/conflict_error.py +11 -0
- talkif-0.1.0/src/talkif/errors/forbidden_error.py +11 -0
- talkif-0.1.0/src/talkif/errors/internal_server_error.py +11 -0
- talkif-0.1.0/src/talkif/errors/not_found_error.py +11 -0
- talkif-0.1.0/src/talkif/errors/payment_required_error.py +11 -0
- talkif-0.1.0/src/talkif/errors/raw_client.py +103 -0
- talkif-0.1.0/src/talkif/errors/service_unavailable_error.py +11 -0
- talkif-0.1.0/src/talkif/errors/too_many_requests_error.py +11 -0
- talkif-0.1.0/src/talkif/errors/unauthorized_error.py +11 -0
- talkif-0.1.0/src/talkif/errors/unprocessable_entity_error.py +11 -0
- talkif-0.1.0/src/talkif/flow_functions/__init__.py +4 -0
- talkif-0.1.0/src/talkif/flow_functions/client.py +583 -0
- talkif-0.1.0/src/talkif/flow_functions/raw_client.py +1220 -0
- talkif-0.1.0/src/talkif/flow_templates/__init__.py +4 -0
- talkif-0.1.0/src/talkif/flow_templates/client.py +326 -0
- talkif-0.1.0/src/talkif/flow_templates/raw_client.py +533 -0
- talkif-0.1.0/src/talkif/flows/__init__.py +4 -0
- talkif-0.1.0/src/talkif/flows/client.py +1039 -0
- talkif-0.1.0/src/talkif/flows/raw_client.py +2352 -0
- talkif-0.1.0/src/talkif/phone_numbers/__init__.py +4 -0
- talkif-0.1.0/src/talkif/phone_numbers/client.py +1003 -0
- talkif-0.1.0/src/talkif/phone_numbers/raw_client.py +2212 -0
- talkif-0.1.0/src/talkif/phone_providers/__init__.py +4 -0
- talkif-0.1.0/src/talkif/phone_providers/client.py +200 -0
- talkif-0.1.0/src/talkif/phone_providers/raw_client.py +422 -0
- talkif-0.1.0/src/talkif/public_calls/__init__.py +4 -0
- talkif-0.1.0/src/talkif/public_calls/client.py +444 -0
- talkif-0.1.0/src/talkif/public_calls/raw_client.py +1158 -0
- talkif-0.1.0/src/talkif/py.typed +0 -0
- talkif-0.1.0/src/talkif/schedules/__init__.py +4 -0
- talkif-0.1.0/src/talkif/schedules/client.py +841 -0
- talkif-0.1.0/src/talkif/schedules/raw_client.py +1721 -0
- talkif-0.1.0/src/talkif/types/__init__.py +585 -0
- talkif-0.1.0/src/talkif/types/action_definition.py +41 -0
- talkif-0.1.0/src/talkif/types/action_item.py +31 -0
- talkif-0.1.0/src/talkif/types/added_response.py +26 -0
- talkif-0.1.0/src/talkif/types/agent_change_summary.py +36 -0
- talkif-0.1.0/src/talkif/types/agent_definition.py +111 -0
- talkif-0.1.0/src/talkif/types/agent_status.py +7 -0
- talkif-0.1.0/src/talkif/types/agent_type.py +5 -0
- talkif-0.1.0/src/talkif/types/analytics_cost_breakdown_response.py +97 -0
- talkif-0.1.0/src/talkif/types/analytics_cost_line_item_response.py +113 -0
- talkif-0.1.0/src/talkif/types/attempt_bucket.py +42 -0
- talkif-0.1.0/src/talkif/types/available_phone_number.py +119 -0
- talkif-0.1.0/src/talkif/types/balance_summary_response.py +58 -0
- talkif-0.1.0/src/talkif/types/billable_type.py +5 -0
- talkif-0.1.0/src/talkif/types/bulk_add_contacts_response.py +36 -0
- talkif-0.1.0/src/talkif/types/bulk_contact_filter.py +52 -0
- talkif-0.1.0/src/talkif/types/bulk_dnc_import_response.py +31 -0
- talkif-0.1.0/src/talkif/types/bulk_remove_contacts_response.py +36 -0
- talkif-0.1.0/src/talkif/types/bulk_tag_filter_mode.py +5 -0
- talkif-0.1.0/src/talkif/types/call_cost_breakdown_response.py +56 -0
- talkif-0.1.0/src/talkif/types/call_cost_detail.py +107 -0
- talkif-0.1.0/src/talkif/types/call_counts.py +56 -0
- talkif-0.1.0/src/talkif/types/call_direction.py +5 -0
- talkif-0.1.0/src/talkif/types/call_end_reason.py +21 -0
- talkif-0.1.0/src/talkif/types/call_failure_code.py +34 -0
- talkif-0.1.0/src/talkif/types/call_insights.py +57 -0
- talkif-0.1.0/src/talkif/types/call_list_meta.py +36 -0
- talkif-0.1.0/src/talkif/types/call_list_response.py +33 -0
- talkif-0.1.0/src/talkif/types/call_outcome.py +49 -0
- talkif-0.1.0/src/talkif/types/call_provider_type.py +5 -0
- talkif-0.1.0/src/talkif/types/call_rates.py +41 -0
- talkif-0.1.0/src/talkif/types/call_response.py +432 -0
- talkif-0.1.0/src/talkif/types/call_source.py +5 -0
- talkif-0.1.0/src/talkif/types/call_status.py +10 -0
- talkif-0.1.0/src/talkif/types/call_transcript_response.py +65 -0
- talkif-0.1.0/src/talkif/types/call_window_request.py +52 -0
- talkif-0.1.0/src/talkif/types/call_window_response.py +57 -0
- talkif-0.1.0/src/talkif/types/campaign_analytics_response.py +106 -0
- talkif-0.1.0/src/talkif/types/campaign_contact_list_response.py +33 -0
- talkif-0.1.0/src/talkif/types/campaign_contact_response.py +137 -0
- talkif-0.1.0/src/talkif/types/campaign_contact_status.py +7 -0
- talkif-0.1.0/src/talkif/types/campaign_duration_bucket.py +25 -0
- talkif-0.1.0/src/talkif/types/campaign_failure_cause.py +42 -0
- talkif-0.1.0/src/talkif/types/campaign_list_response.py +33 -0
- talkif-0.1.0/src/talkif/types/campaign_metrics.py +95 -0
- talkif-0.1.0/src/talkif/types/campaign_outcome.py +36 -0
- talkif-0.1.0/src/talkif/types/campaign_overview.py +88 -0
- talkif-0.1.0/src/talkif/types/campaign_pause_reason.py +7 -0
- talkif-0.1.0/src/talkif/types/campaign_performance.py +56 -0
- talkif-0.1.0/src/talkif/types/campaign_progress.py +82 -0
- talkif-0.1.0/src/talkif/types/campaign_response.py +227 -0
- talkif-0.1.0/src/talkif/types/campaign_status.py +7 -0
- talkif-0.1.0/src/talkif/types/campaign_voicemail.py +39 -0
- talkif-0.1.0/src/talkif/types/category_breakdown.py +58 -0
- talkif-0.1.0/src/talkif/types/change_summary.py +56 -0
- talkif-0.1.0/src/talkif/types/channel_type.py +5 -0
- talkif-0.1.0/src/talkif/types/charge_detail_response.py +200 -0
- talkif-0.1.0/src/talkif/types/charge_status.py +7 -0
- talkif-0.1.0/src/talkif/types/charge_type_db.py +18 -0
- talkif-0.1.0/src/talkif/types/check_dnc_response.py +26 -0
- talkif-0.1.0/src/talkif/types/connected_flow.py +48 -0
- talkif-0.1.0/src/talkif/types/connected_phone_summary.py +46 -0
- talkif-0.1.0/src/talkif/types/contact.py +142 -0
- talkif-0.1.0/src/talkif/types/contact_address.py +46 -0
- talkif-0.1.0/src/talkif/types/contact_brief.py +44 -0
- talkif-0.1.0/src/talkif/types/contact_list_response.py +33 -0
- talkif-0.1.0/src/talkif/types/contact_pagination_meta.py +36 -0
- talkif-0.1.0/src/talkif/types/contact_search_response.py +34 -0
- talkif-0.1.0/src/talkif/types/conversation_metrics.py +68 -0
- talkif-0.1.0/src/talkif/types/cost_category.py +21 -0
- talkif-0.1.0/src/talkif/types/cost_line_item_response.py +126 -0
- talkif-0.1.0/src/talkif/types/cost_metrics.py +31 -0
- talkif-0.1.0/src/talkif/types/create_contact_request.py +88 -0
- talkif-0.1.0/src/talkif/types/create_public_session_response.py +44 -0
- talkif-0.1.0/src/talkif/types/create_web_rtc_call_response.py +54 -0
- talkif-0.1.0/src/talkif/types/detected_intent.py +31 -0
- talkif-0.1.0/src/talkif/types/direction_counts.py +31 -0
- talkif-0.1.0/src/talkif/types/dnc_entry_response.py +66 -0
- talkif-0.1.0/src/talkif/types/dnc_list_meta.py +36 -0
- talkif-0.1.0/src/talkif/types/dnc_list_response.py +33 -0
- talkif-0.1.0/src/talkif/types/dnc_source.py +5 -0
- talkif-0.1.0/src/talkif/types/duplicate_strategy.py +5 -0
- talkif-0.1.0/src/talkif/types/duration_metrics.py +41 -0
- talkif-0.1.0/src/talkif/types/emotion_option.py +31 -0
- talkif-0.1.0/src/talkif/types/error_catalog_response.py +43 -0
- talkif-0.1.0/src/talkif/types/error_code.py +143 -0
- talkif-0.1.0/src/talkif/types/error_code_entry.py +59 -0
- talkif-0.1.0/src/talkif/types/error_reason.py +15 -0
- talkif-0.1.0/src/talkif/types/error_response.py +107 -0
- talkif-0.1.0/src/talkif/types/extracted_caller_info.py +41 -0
- talkif-0.1.0/src/talkif/types/field_error.py +48 -0
- talkif-0.1.0/src/talkif/types/field_error_code_entry.py +31 -0
- talkif-0.1.0/src/talkif/types/flow_change.py +52 -0
- talkif-0.1.0/src/talkif/types/flow_change_type.py +8 -0
- talkif-0.1.0/src/talkif/types/flow_cost_breakdown.py +55 -0
- talkif-0.1.0/src/talkif/types/flow_definition.py +53 -0
- talkif-0.1.0/src/talkif/types/flow_detail_response.py +210 -0
- talkif-0.1.0/src/talkif/types/flow_function_response.py +118 -0
- talkif-0.1.0/src/talkif/types/flow_providers_response.py +39 -0
- talkif-0.1.0/src/talkif/types/flow_setting_changes.py +32 -0
- talkif-0.1.0/src/talkif/types/flow_stats_response.py +91 -0
- talkif-0.1.0/src/talkif/types/flow_status.py +5 -0
- talkif-0.1.0/src/talkif/types/flow_template.py +148 -0
- talkif-0.1.0/src/talkif/types/flow_version_detail_response.py +83 -0
- talkif-0.1.0/src/talkif/types/flow_version_summary.py +46 -0
- talkif-0.1.0/src/talkif/types/function_call_metrics.py +70 -0
- talkif-0.1.0/src/talkif/types/function_definition.py +100 -0
- talkif-0.1.0/src/talkif/types/generation_config_schema.py +32 -0
- talkif-0.1.0/src/talkif/types/hourly_volume.py +48 -0
- talkif-0.1.0/src/talkif/types/ice_server_entry.py +36 -0
- talkif-0.1.0/src/talkif/types/ice_servers_response.py +38 -0
- talkif-0.1.0/src/talkif/types/import_error.py +53 -0
- talkif-0.1.0/src/talkif/types/import_format.py +5 -0
- talkif-0.1.0/src/talkif/types/import_result.py +72 -0
- talkif-0.1.0/src/talkif/types/invoice_response.py +139 -0
- talkif-0.1.0/src/talkif/types/invoice_status.py +5 -0
- talkif-0.1.0/src/talkif/types/language_info.py +42 -0
- talkif-0.1.0/src/talkif/types/latency_metrics.py +53 -0
- talkif-0.1.0/src/talkif/types/list_meta.py +36 -0
- talkif-0.1.0/src/talkif/types/llm_capabilities.py +84 -0
- talkif-0.1.0/src/talkif/types/llm_model.py +60 -0
- talkif-0.1.0/src/talkif/types/llm_pricing.py +59 -0
- talkif-0.1.0/src/talkif/types/llm_provider.py +43 -0
- talkif-0.1.0/src/talkif/types/llm_service_definition.py +82 -0
- talkif-0.1.0/src/talkif/types/make_call_response.py +81 -0
- talkif-0.1.0/src/talkif/types/make_call_response_initiated.py +85 -0
- talkif-0.1.0/src/talkif/types/make_call_response_queued.py +67 -0
- talkif-0.1.0/src/talkif/types/max_call_duration_settings.py +45 -0
- talkif-0.1.0/src/talkif/types/paginated_response.py +29 -0
- talkif-0.1.0/src/talkif/types/pagination_meta.py +36 -0
- talkif-0.1.0/src/talkif/types/phone_number_capability.py +5 -0
- talkif-0.1.0/src/talkif/types/phone_number_pricing.py +55 -0
- talkif-0.1.0/src/talkif/types/phone_number_response.py +240 -0
- talkif-0.1.0/src/talkif/types/phone_number_status.py +5 -0
- talkif-0.1.0/src/talkif/types/phone_provider_response.py +98 -0
- talkif-0.1.0/src/talkif/types/pricing_entry.py +37 -0
- talkif-0.1.0/src/talkif/types/prompt_reference.py +42 -0
- talkif-0.1.0/src/talkif/types/provider_type.py +5 -0
- talkif-0.1.0/src/talkif/types/public_call_status_response.py +42 -0
- talkif-0.1.0/src/talkif/types/public_phone_number_pricing.py +38 -0
- talkif-0.1.0/src/talkif/types/public_pricing_response.py +52 -0
- talkif-0.1.0/src/talkif/types/publish_flow_response.py +52 -0
- talkif-0.1.0/src/talkif/types/queue_info.py +72 -0
- talkif-0.1.0/src/talkif/types/range_schema.py +41 -0
- talkif-0.1.0/src/talkif/types/rate_info.py +31 -0
- talkif-0.1.0/src/talkif/types/recording_storage_pricing.py +38 -0
- talkif-0.1.0/src/talkif/types/recording_url_response.py +67 -0
- talkif-0.1.0/src/talkif/types/removed_response.py +26 -0
- talkif-0.1.0/src/talkif/types/request_schema.py +66 -0
- talkif-0.1.0/src/talkif/types/rollback_response.py +47 -0
- talkif-0.1.0/src/talkif/types/schedule_frequency.py +5 -0
- talkif-0.1.0/src/talkif/types/schedule_list_response.py +33 -0
- talkif-0.1.0/src/talkif/types/schedule_response.py +213 -0
- talkif-0.1.0/src/talkif/types/schedule_status.py +5 -0
- talkif-0.1.0/src/talkif/types/sentiment_analysis.py +31 -0
- talkif-0.1.0/src/talkif/types/service_change_summary.py +50 -0
- talkif-0.1.0/src/talkif/types/service_definition.py +32 -0
- talkif-0.1.0/src/talkif/types/skipped_contact.py +41 -0
- talkif-0.1.0/src/talkif/types/stt_capabilities.py +52 -0
- talkif-0.1.0/src/talkif/types/stt_model.py +57 -0
- talkif-0.1.0/src/talkif/types/stt_pricing.py +41 -0
- talkif-0.1.0/src/talkif/types/stt_provider.py +43 -0
- talkif-0.1.0/src/talkif/types/stt_service_definition.py +54 -0
- talkif-0.1.0/src/talkif/types/tag_with_count.py +31 -0
- talkif-0.1.0/src/talkif/types/tags_list_response.py +27 -0
- talkif-0.1.0/src/talkif/types/telephony_status.py +19 -0
- talkif-0.1.0/src/talkif/types/time_period.py +5 -0
- talkif-0.1.0/src/talkif/types/transcript_message.py +90 -0
- talkif-0.1.0/src/talkif/types/transcript_message_metrics.py +154 -0
- talkif-0.1.0/src/talkif/types/transcript_speaker.py +5 -0
- talkif-0.1.0/src/talkif/types/transformation_summary.py +63 -0
- talkif-0.1.0/src/talkif/types/transition_definition.py +40 -0
- talkif-0.1.0/src/talkif/types/tts_capabilities.py +92 -0
- talkif-0.1.0/src/talkif/types/tts_model.py +57 -0
- talkif-0.1.0/src/talkif/types/tts_pricing.py +44 -0
- talkif-0.1.0/src/talkif/types/tts_provider.py +43 -0
- talkif-0.1.0/src/talkif/types/tts_service_definition.py +101 -0
- talkif-0.1.0/src/talkif/types/usage_metrics.py +77 -0
- talkif-0.1.0/src/talkif/types/user_idle_settings.py +79 -0
- talkif-0.1.0/src/talkif/types/validation_response.py +37 -0
- talkif-0.1.0/src/talkif/types/voice_dto.py +90 -0
- talkif-0.1.0/src/talkif/types/voices_dto.py +56 -0
- talkif-0.1.0/src/talkif/types/web_rtc_offer_response.py +44 -0
- talkif-0.1.0/src/talkif/version.py +3 -0
talkif-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Talkif
|
|
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.
|
talkif-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: talkif
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary:
|
|
5
|
+
License-File: LICENSE
|
|
6
|
+
Requires-Python: >=3.10,<4.0
|
|
7
|
+
Classifier: Intended Audience :: Developers
|
|
8
|
+
Classifier: Operating System :: MacOS
|
|
9
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Classifier: Operating System :: POSIX
|
|
12
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
13
|
+
Classifier: Programming Language :: Python
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.15
|
|
21
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
22
|
+
Classifier: Typing :: Typed
|
|
23
|
+
Provides-Extra: aiohttp
|
|
24
|
+
Requires-Dist: aiohttp (>=3.14.1,<4) ; (python_version >= "3.10") and (extra == "aiohttp")
|
|
25
|
+
Requires-Dist: httpx (>=0.21.2)
|
|
26
|
+
Requires-Dist: httpx-aiohttp (>=0.1.8,<0.2.0) ; (python_version >= "3.10") and (extra == "aiohttp")
|
|
27
|
+
Requires-Dist: pydantic (>=1.9.2)
|
|
28
|
+
Requires-Dist: pydantic-core (>=2.18.2,<3.0.0)
|
|
29
|
+
Requires-Dist: typing_extensions (>=4.0.0)
|
|
30
|
+
Project-URL: Repository, https://github.com/Talkif-ai/talkif-python
|
|
31
|
+
Description-Content-Type: text/markdown
|
|
32
|
+
|
|
33
|
+
# Talkif Python SDK
|
|
34
|
+
|
|
35
|
+
Official Python client for the [Talkif API](https://docs.talkif.ai/api-reference) — programmable AI voice agents: place and receive calls, manage flows, contacts, campaigns, phone numbers and billing.
|
|
36
|
+
|
|
37
|
+
> **Status: pre-release.** The first version is not published yet. This repository is populated by the Fern generator from the API definition in `Talkif-ai/docs` (`fern/`).
|
|
38
|
+
|
|
39
|
+
## Installation
|
|
40
|
+
|
|
41
|
+
```sh
|
|
42
|
+
pip install talkif
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## Documentation
|
|
46
|
+
|
|
47
|
+
- API reference: https://docs.talkif.ai/api-reference
|
|
48
|
+
- Guides: https://docs.talkif.ai
|
|
49
|
+
|
|
50
|
+
## Contributing
|
|
51
|
+
|
|
52
|
+
This SDK is **generated**. Do not edit generated files directly — changes are overwritten on the next regeneration. To change the API surface, update the OpenAPI definition or overlays in `Talkif-ai/docs/fern/`. Hand-maintained files are listed in `.fernignore`.
|
|
53
|
+
|
|
54
|
+
Bugs and questions: open an issue here.
|
|
55
|
+
|
|
56
|
+
## License
|
|
57
|
+
|
|
58
|
+
MIT
|
|
59
|
+
|
talkif-0.1.0/README.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Talkif Python SDK
|
|
2
|
+
|
|
3
|
+
Official Python client for the [Talkif API](https://docs.talkif.ai/api-reference) — programmable AI voice agents: place and receive calls, manage flows, contacts, campaigns, phone numbers and billing.
|
|
4
|
+
|
|
5
|
+
> **Status: pre-release.** The first version is not published yet. This repository is populated by the Fern generator from the API definition in `Talkif-ai/docs` (`fern/`).
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
pip install talkif
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Documentation
|
|
14
|
+
|
|
15
|
+
- API reference: https://docs.talkif.ai/api-reference
|
|
16
|
+
- Guides: https://docs.talkif.ai
|
|
17
|
+
|
|
18
|
+
## Contributing
|
|
19
|
+
|
|
20
|
+
This SDK is **generated**. Do not edit generated files directly — changes are overwritten on the next regeneration. To change the API surface, update the OpenAPI definition or overlays in `Talkif-ai/docs/fern/`. Hand-maintained files are listed in `.fernignore`.
|
|
21
|
+
|
|
22
|
+
Bugs and questions: open an issue here.
|
|
23
|
+
|
|
24
|
+
## License
|
|
25
|
+
|
|
26
|
+
MIT
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "talkif"
|
|
3
|
+
dynamic = ["version"]
|
|
4
|
+
|
|
5
|
+
[tool.poetry]
|
|
6
|
+
name = "talkif"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = ""
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
authors = []
|
|
11
|
+
keywords = []
|
|
12
|
+
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Intended Audience :: Developers",
|
|
15
|
+
"Programming Language :: Python",
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
"Programming Language :: Python :: 3.10",
|
|
18
|
+
"Programming Language :: Python :: 3.11",
|
|
19
|
+
"Programming Language :: Python :: 3.12",
|
|
20
|
+
"Programming Language :: Python :: 3.13",
|
|
21
|
+
"Programming Language :: Python :: 3.14",
|
|
22
|
+
"Programming Language :: Python :: 3.15",
|
|
23
|
+
"Operating System :: OS Independent",
|
|
24
|
+
"Operating System :: POSIX",
|
|
25
|
+
"Operating System :: MacOS",
|
|
26
|
+
"Operating System :: POSIX :: Linux",
|
|
27
|
+
"Operating System :: Microsoft :: Windows",
|
|
28
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
29
|
+
"Typing :: Typed"
|
|
30
|
+
]
|
|
31
|
+
packages = [
|
|
32
|
+
{ include = "talkif", from = "src"}
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
[tool.poetry.urls]
|
|
36
|
+
Repository = 'https://github.com/Talkif-ai/talkif-python'
|
|
37
|
+
|
|
38
|
+
[tool.poetry.dependencies]
|
|
39
|
+
python = "^3.10"
|
|
40
|
+
aiohttp = { version = ">=3.14.1,<4", optional = true, python = ">=3.10"}
|
|
41
|
+
httpx = ">=0.21.2"
|
|
42
|
+
httpx-aiohttp = { version = "^0.1.8", optional = true, python = ">=3.10"}
|
|
43
|
+
pydantic = ">= 1.9.2"
|
|
44
|
+
pydantic-core = ">=2.18.2,<3.0.0"
|
|
45
|
+
typing_extensions = ">= 4.0.0"
|
|
46
|
+
|
|
47
|
+
[tool.poetry.group.dev.dependencies]
|
|
48
|
+
mypy = "==1.13.0"
|
|
49
|
+
pytest = "^9.0.3"
|
|
50
|
+
pytest-asyncio = "^1.0.0"
|
|
51
|
+
pytest-xdist = "^3.6.1"
|
|
52
|
+
python-dateutil = "^2.9.0"
|
|
53
|
+
types-python-dateutil = "^2.9.0.20240316"
|
|
54
|
+
urllib3 = ">=2.6.3,<3.0.0"
|
|
55
|
+
ruff = "==0.11.5"
|
|
56
|
+
|
|
57
|
+
[tool.pytest.ini_options]
|
|
58
|
+
testpaths = [ "tests" ]
|
|
59
|
+
asyncio_mode = "auto"
|
|
60
|
+
norecursedirs = [ "src" ]
|
|
61
|
+
markers = [
|
|
62
|
+
"aiohttp: tests that require httpx_aiohttp to be installed",
|
|
63
|
+
]
|
|
64
|
+
|
|
65
|
+
[tool.mypy]
|
|
66
|
+
plugins = ["pydantic.mypy"]
|
|
67
|
+
|
|
68
|
+
[tool.ruff]
|
|
69
|
+
line-length = 120
|
|
70
|
+
|
|
71
|
+
[tool.ruff.lint]
|
|
72
|
+
select = [
|
|
73
|
+
"E", # pycodestyle errors
|
|
74
|
+
"F", # pyflakes
|
|
75
|
+
"I", # isort
|
|
76
|
+
]
|
|
77
|
+
ignore = [
|
|
78
|
+
"E402", # Module level import not at top of file
|
|
79
|
+
"E501", # Line too long
|
|
80
|
+
"E711", # Comparison to `None` should be `cond is not None`
|
|
81
|
+
"E712", # Avoid equality comparisons to `True`; use `if ...:` checks
|
|
82
|
+
"E721", # Use `is` and `is not` for type comparisons, or `isinstance()` for insinstance checks
|
|
83
|
+
"E722", # Do not use bare `except`
|
|
84
|
+
"E731", # Do not assign a `lambda` expression, use a `def`
|
|
85
|
+
"F821", # Undefined name
|
|
86
|
+
"F841" # Local variable ... is assigned to but never used
|
|
87
|
+
]
|
|
88
|
+
|
|
89
|
+
[tool.ruff.lint.isort]
|
|
90
|
+
section-order = ["future", "standard-library", "third-party", "first-party"]
|
|
91
|
+
|
|
92
|
+
[build-system]
|
|
93
|
+
requires = ["poetry-core"]
|
|
94
|
+
build-backend = "poetry.core.masonry.api"
|
|
95
|
+
|
|
96
|
+
[tool.poetry.extras]
|
|
97
|
+
aiohttp=["aiohttp", "httpx-aiohttp"]
|