Python Forum
Send and receive Files(data/images) betwenn a python app and another appl - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Send and receive Files(data/images) betwenn a python app and another appl (/thread-9835.html)



Send and receive Files(data/images) betwenn a python app and another appl - Akhou - Apr-30-2018

Hey,
I need to send and receive images and feedbacks between my python application and an application developped with Visual Basic, I thought about using Bluetooth to ensure the communication but all I find is client/server application using Python and Raspberry! Huh Huh
I'm still looking for a good and doable solution so any help would be appreciated.

Thank u


RE: Send and receive Files(data/images) betwenn a python app and another appl - ThiefOfTime - May-01-2018

I have never programmed in VB before, so I am not sure how it works on this side and I am not sure on what kind of device you want to deploy your VB code. I have never send images via bluetooth using python before. But I worked on a python bluetooth server and android client some weeks ago. Maybe it will help you.
Here you will find nice examples how bluetooth works in python
https://people.csail.mit.edu/albert/bluez-intro/x232.html
And here the example for android. Since the java android bluetooth package works with the uuid you have to advertise this in you python code. Like here (last post on this site)
https://stackoverflow.com/questions/10922319/initializing-bluetooth-connection-androidclient-to-pythonserver-on-pc

Hope this helped


RE: Send and receive Files(data/images) betwenn a python app and another appl - Akhou - May-02-2018

Hello
Thank you so muh for yoour help