Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: Return Frame as well as JSON response using same API in Flask Python Ask
Post: Return Frame as well as JSON response using same A...

Using mentioned below code I am trying to return video feed as well as some JSON data in response which will help me further in displaying the data in browser for a particular frame, but from success...
jenkins43 Web Scraping & Web Development 0 1,826 May-11-2020, 04:58 PM
    Thread: Acces Wifi router and scan all the available networks through router
Post: RE: Acces Wifi router and scan all the available n...

Well, I am not that much good with technical terms but I can explain my problem statement: Actually I have a desktop which is connected to one unmanaged switch which is further connected to 2 wifi-r...
jenkins43 Networking 3 2,721 Mar-21-2020, 09:35 PM
    Thread: Acces Wifi router and scan all the available networks through router
Post: Acces Wifi router and scan all the available netwo...

Hi, I am trying to access wifi router through Ethernet and scan all the networks available nearby to wifi using python, being new to this field need some suggestions which will be a helpful example fo...
jenkins43 Networking 3 2,721 Mar-21-2020, 03:11 PM
    Thread: Unable fetch fucntion data in class in tkinter
Post: RE: Unable fetch fucntion data in class in tkinter

Hi, I was able to update the text data using canvas.itemconfig() but still facing the issue of calling image data from loopCap function in __init__ function as I have edited my main question and updat...
jenkins43 GUI 2 3,829 Nov-30-2019, 09:47 PM
    Thread: Unable fetch fucntion data in class in tkinter
Post: Unable fetch fucntion data in class in tkinter

I am trying to fetch the data from text variable and image data in a function name loopCap and display it in __init__ function where I have created a canvas but due to mentioned below error I am not a...
jenkins43 GUI 2 3,829 Nov-30-2019, 01:33 PM
    Thread: Unable to put background image on Tkinter Frame
Post: RE: Unable to put background image on Tkinter Fram...

Hi I have created a class where the continuous loop is running and there is one button available in my UI but the problem is mentioned below code is not working main code due to which I am not able to...
jenkins43 GUI 2 8,703 Nov-27-2019, 11:38 AM
    Thread: Unable to put background image on Tkinter Frame
Post: Unable to put background image on Tkinter Frame

Hi, I am trying to place Image as background in frame which contains the textfield, button, and label. Mentioned below is my code kindly help me out import os import json import time import pyfirmat...
jenkins43 GUI 2 8,703 Nov-27-2019, 07:59 AM
    Thread: Refresh image in label after every 1s using simple function
Post: Refresh image in label after every 1s using simple...

I am trying to refresh the Label Image after every 1s I have created one class in which only one time I 'll click on the button to display the image and after that, it will refresh after every second ...
jenkins43 GUI 1 5,442 Jul-28-2019, 10:50 AM
    Thread: Unable to update or refresh label text in tkinter
Post: RE: Unable to update or refresh label text in tkin...

do I have to make some change in image update code?
jenkins43 GUI 3 6,501 Jul-24-2019, 11:11 AM
    Thread: Unable to update or refresh label text in tkinter
Post: Unable to update or refresh label text in tkinter

In class Window2 I am trying to update the label text by taking the data from a variable which is showing the real-time data but I am not able to refresh my label text using below code: import tkint...
jenkins43 GUI 3 6,501 Jul-24-2019, 10:11 AM
    Thread: Switching between two frames using Tkinter
Post: Switching between two frames using Tkinter

Hi, I am trying to switch from one frame to another, I tried to .destroy() method but I am facing some error I have created the Login System and wanted to navigate to new screen by destroying the ea...
jenkins43 GUI 1 4,581 Jul-17-2019, 10:34 AM
    Thread: Unable to install packages of python3.6 in ubuntu server 16.04
Post: Unable to install packages of python3.6 in ubuntu ...

Hi, as I am working on ubuntu 16.04 and I was able to install python 3.6.8. But when I am trying to install numpy or pandas or scipy through command sudo pip3 install pandasthen mentioned below error...
jenkins43 Networking 2 3,294 Jun-06-2019, 12:06 PM
    Thread: Display the bottom image of the line and cut the upper image using Opencv
Post: Display the bottom image of the line and cut the u...

I am trying to crop the live video diagonally. With the help of cv.line, I have mentioned the dimensions and my goal is to display the video of the lower side of the line I have drawn and the upper vi...
jenkins43 General Coding Help 1 3,194 Apr-26-2019, 07:33 AM
    Thread: Read Byte Array from Zigbee coordinator using python
Post: RE: Read Byte Array from Zigbee coordinator using ...

Hi, thanks for the reply so as per the mentioned below code I have run the test import time import serial # Change this serial port to the serial port you are using. s = serial.Serial('COM6', 11520...
jenkins43 General Coding Help 3 3,815 Mar-26-2019, 04:53 AM
    Thread: Read Byte Array from Zigbee coordinator using python
Post: Read Byte Array from Zigbee coordinator using pyth...

Hey, to interface Zigbee coordinator with python, I have used the mentioned below program. I was able to read the Byte array import serial ser = serial.Serial('COM6',115200) read_byte = ser.read() wh...
jenkins43 General Coding Help 3 3,815 Mar-25-2019, 06:40 AM
    Thread: Not able to Read byte Array From Wireless Coordinator
Post: Not able to Read byte Array From Wireless Coordina...

Hi, I am trying to read the ByteArray from Wireless Coordinator which is receiving data from wireless sensors. To check the frame, I am using the XCTU software from where I am getting byte array as me...
jenkins43 General Coding Help 0 1,859 Mar-18-2019, 07:05 AM
    Thread: Send The output of Gyroscope sensor to node red
Post: Send The output of Gyroscope sensor to node red

Hi, I have made Gyroscope sensor script which is working fine on python shell but I want to send the output to node red. I have searched on google but nothing useful was there, Also I am asking a sim...
jenkins43 General Coding Help 1 2,063 Feb-07-2019, 10:06 AM
    Thread: Display and update the label text which display the serial value
Post: RE: Display and update the label text which displa...

Ok so I have been working with a small example and I tried the way you told me as follows import tkinter as tk active_counter = False def count(): if active_counter: counter = ['28.3...
jenkins43 GUI 5 8,988 Feb-03-2019, 06:11 PM
    Thread: Display and update the label text which display the serial value
Post: RE: Display and update the label text which displa...

I have created the application which is receiving the data from Arduino but was using a message box to show the data but I need to know about how can display the data in label text and update it when...
jenkins43 GUI 5 8,988 Feb-03-2019, 07:18 AM
    Thread: Display and update the label text which display the serial value
Post: Display and update the label text which display th...

Hi, With help of mentioned below code I have been able to get the result mentioned in below import serial ard = serial.Serial('COM4', 9600); while True: k = ard.readline().decode('ascii') c ...
jenkins43 GUI 5 8,988 Feb-02-2019, 11:22 AM

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020