Skip to content

Commit

Permalink
added sdk versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
Abinaya-Shunmugavel committed Nov 6, 2024
1 parent 8f2f415 commit 1f6615e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# Change Log

## [4.58.0](https://github.com/plivo/plivo-go/tree/v4.58.0) (2024-11-07)
**Feature - CreateRecordingTranscription, GetRecordingTranscription and DeleteRecordingTranscription feature added**
- Support added to create transcription for recorded calls for which transcription is not available and get API to retrieve and delete API to delete.
- Support for the `type` filter parameter, supported filters are transcription, raw and diarized
- Support for the `transcription_url` and `transcript` parameter in MPC Add Participant.
- Support added for Transcription params in MPC recording and MPC participant recording

## [4.56.2](https://github.com/plivo/plivo-python/tree/v4.56.2) (2024-10-23)
**Feature - FraudCheck param in Create, Get and List Session**
- Support for the `fraud_check` parameter in sms verify session request
Expand Down
7 changes: 7 additions & 0 deletions plivo/resources/transcription.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ def get_tanscription(self):
def create_tanscription(self):
return self.client.transcriptions.create_tanscription(self.id, **to_param_dict(self.create_tanscription(), locals()))

def delete_tanscription(self):
return self.client.transcriptions.delete_tanscription(self.id, **to_param_dict(self.delete_tanscription(), locals()))


class Transcriptions(PlivoResourceInterface):
_resource_type = Transcription
Expand All @@ -38,5 +41,9 @@ def create_tanscription(self, recording_id):
return self.client.request(
'POST', ('Transcription', recording_id), is_voice_request=True)

def delete_tanscription(self, transcription_id):
return self.client.request(
'DELETE', ('Transcription', transcription_id), is_voice_request=True)



2 changes: 1 addition & 1 deletion plivo/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# -*- coding: utf-8 -*-
__version__ = '4.56.2'
__version__ = '4.58.0'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name='plivo',
version='4.56.2',
version='4.58.0',
description='A Python SDK to make voice calls & send SMS using Plivo and to generate Plivo XML',
long_description=long_description,
url='https://github.com/plivo/plivo-python',
Expand Down

0 comments on commit 1f6615e

Please sign in to comment.