-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Additional example * ENV key names fixed * PubNub SDK v8.1.0 release. --------- Co-authored-by: PubNub Release Bot <[email protected]>
- Loading branch information
1 parent
c8bf260
commit e556b7f
Showing
5 changed files
with
74 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
import os | ||
|
||
|
||
from pubnub.pubnub_asyncio import PubNubAsyncio | ||
from pubnub.pnconfiguration import PNConfiguration | ||
|
||
|
||
config = PNConfiguration() | ||
config.publish_key = os.environ.get('PUBLISH_KEY', 'demo') | ||
config.subscribe_request_timeout = 10 | ||
config.subscribe_key = os.environ.get('SUBSCRIBE_KEY', 'demo') | ||
config.enable_subscribe = False | ||
config.uuid = 'example' | ||
|
||
channel = 'file-channel' | ||
pubnub = PubNubAsyncio(config) | ||
sample_path = f"{os.getcwd()}/examples/native_sync/sample.gif" | ||
|
||
|
||
def callback(response, *args): | ||
print(f"Sent file: {response.result.name} with id: {response.result.file_id}," | ||
f" at timestamp: {response.result.timestamp}") | ||
|
||
|
||
with open(sample_path, 'rb') as sample_file: | ||
sample_file.seek(0) | ||
pubnub.send_file() \ | ||
.channel(channel) \ | ||
.file_name("sample.gif") \ | ||
.message({"test_message": "test"}) \ | ||
.file_object(sample_file) \ | ||
.pn_async(callback) | ||
|
||
file_list_response = pubnub.list_files().channel(channel).sync() | ||
print(f"Found {len(file_list_response.result.data)} files:") | ||
|
||
for pos in file_list_response.result.data: | ||
print(f" {pos['name']} with id: {pos['id']}") | ||
ext = pos['name'].replace('sample', '') | ||
download_url = pubnub.get_file_url().channel(channel).file_id(pos['id']).file_name(pos['name']).sync() | ||
print(f' Download url: {download_url.result.file_url}') | ||
download_file = pubnub.download_file().channel(channel).file_id(pos['id']).file_name(pos['name']).sync() | ||
fw = open(f"{os.getcwd()}/examples/native_sync/out-{pos['id']}{ext}", 'wb') | ||
fw.write(download_file.result.data) | ||
print(f" file saved as {os.getcwd()}/examples/native_sync/out-{pos['id']}{ext}\n") | ||
pubnub.delete_file().channel(channel).file_id(pos['id']).file_name(pos['name']).sync() | ||
print(' File deleted from storage') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
setup( | ||
name='pubnub', | ||
version='8.0.0', | ||
version='8.1.0', | ||
description='PubNub Real-time push service in the cloud', | ||
author='PubNub', | ||
author_email='[email protected]', | ||
|