How do I setup UDP Client-Server connection in Spyder?UDP Server and Client in DelphiUDP Client shows 'UDP Connected' while no UDP Server running on localhostunknownhostexception in udp client/serverDart UDP client/serverUDP Client/Server Socket in PythonHow to run Spyder in virtual environment?client server UDP connection between clients c#Spyder Setup For Spark Errorhow to update spyder on anacondaHow To Update Spyder 3.3.0

Is a memoized pure function itself considered pure?

What is Soda Fountain Etiquette?

Shift lens vs move body?

Is the Amazon rainforest the "world's lungs"?

How do solar inverter systems easily add AC power sources together?

Half filled water bottle

Can someone identify this unusual plane at airport?

According to UK government, Parliament cannot stop a no-deal Brexit: Could this also be used to push through the agreement agreed by Theresa May?

How to say "I only speak one which is English." in French?

Can I take a boxed bicycle on a German train?

Why is getting a PhD considered "financially irresponsible" by some people?

Which meaning of "must" does the Slow spell use?

Does the Reduce option from the Enlarge/Reduce spell cause a critical hit to do 2d4 less damage?

What stops you from using fixed income in developing countries?

Why does a sticker slowly peel off, but if it is pulled quickly it tears?

Why does the `ls` command sort files like this?

Videos of surgery

Did ancient peoples ever hide their treasure behind puzzles?

Why didn't Doc believe Marty was from the future?

Dual of a bimodule

Was a star-crossed lover

Talk interpreter

Will removing shelving screws from studs damage the studs?

Should I use the words "pyromancy" and "necromancy" even if they don't mean what people think they do?



How do I setup UDP Client-Server connection in Spyder?


UDP Server and Client in DelphiUDP Client shows 'UDP Connected' while no UDP Server running on localhostunknownhostexception in udp client/serverDart UDP client/serverUDP Client/Server Socket in PythonHow to run Spyder in virtual environment?client server UDP connection between clients c#Spyder Setup For Spark Errorhow to update spyder on anacondaHow To Update Spyder 3.3.0






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I have two files, one of which sets up the UDP Server and one of which sets up the UDP Client that the server should receive from.



When I start up the UDP Server file, it does what it is supposed to, which is display "the server is ready to receive" while the server is up.



However, whenever I run the client file and enter text to test the implementation, I get the following error:
gaierror: [Errno 11001] getaddrinfo failed



It is important to note that I am using Spyder (Anaconda Navigator) for Python 3.7. My questions are:



  1. Is it possible to do this in Spyder?

  2. If 1. is true, what am I doing wrong?

I've tried running the UDP Server file in the Windows Command Prompt and then tried to run the UDP Client file in order to see if the fact that I was running the server from Spyder affected the outcome, however I still got the same error saying "gaierror: [Errno 11001] getaddrinfo failed"



I've tried putting "socket.getaddrinfo('hostname', 12000)" into the Client File directly below the two definitions of the serverName and serverPort but this didn't work either



The code for the client is the first block of code, the code for the server is the second



import socket

serverName='hostname'
serverPort=12000
clientSocket=socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
message= input('Input lowercase sentence:')
clientSocket.sendto(message.encode(),(serverName, serverPort))
modifiedMessage, serverAddress=socket.clientSocket.recvfrom(2048)
print(modifiedMessage)
clientSocket.close()


import socket

serverPort=12000
serverSocket=socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
serverSocket.bind(("",serverPort))
print ("The server is ready to receive")
while 1:
message, clientAddress = serverSocket.recvfrom(2048)
modifiedMessage = message.upper()
serverSocket.sendto(modifiedMessage, clientAddress)


Expected results:
Server takes in an all-lowercase sentence from the Client such as "hi there my name jeff" and then makes this sentence "HI THERE MY NAME JEFF"



Actual: Upon inputting the sentence, I get the following error message: "gaierror: [Errno 11001] getaddrinfo failed"










share|improve this question
























  • So just to be clear, it doesn't make any difference whether you run this from within Spyder or at the command line?

    – nekomatic
    Mar 28 at 15:33

















0















I have two files, one of which sets up the UDP Server and one of which sets up the UDP Client that the server should receive from.



When I start up the UDP Server file, it does what it is supposed to, which is display "the server is ready to receive" while the server is up.



However, whenever I run the client file and enter text to test the implementation, I get the following error:
gaierror: [Errno 11001] getaddrinfo failed



It is important to note that I am using Spyder (Anaconda Navigator) for Python 3.7. My questions are:



  1. Is it possible to do this in Spyder?

  2. If 1. is true, what am I doing wrong?

I've tried running the UDP Server file in the Windows Command Prompt and then tried to run the UDP Client file in order to see if the fact that I was running the server from Spyder affected the outcome, however I still got the same error saying "gaierror: [Errno 11001] getaddrinfo failed"



I've tried putting "socket.getaddrinfo('hostname', 12000)" into the Client File directly below the two definitions of the serverName and serverPort but this didn't work either



The code for the client is the first block of code, the code for the server is the second



import socket

serverName='hostname'
serverPort=12000
clientSocket=socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
message= input('Input lowercase sentence:')
clientSocket.sendto(message.encode(),(serverName, serverPort))
modifiedMessage, serverAddress=socket.clientSocket.recvfrom(2048)
print(modifiedMessage)
clientSocket.close()


import socket

serverPort=12000
serverSocket=socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
serverSocket.bind(("",serverPort))
print ("The server is ready to receive")
while 1:
message, clientAddress = serverSocket.recvfrom(2048)
modifiedMessage = message.upper()
serverSocket.sendto(modifiedMessage, clientAddress)


Expected results:
Server takes in an all-lowercase sentence from the Client such as "hi there my name jeff" and then makes this sentence "HI THERE MY NAME JEFF"



Actual: Upon inputting the sentence, I get the following error message: "gaierror: [Errno 11001] getaddrinfo failed"










share|improve this question
























  • So just to be clear, it doesn't make any difference whether you run this from within Spyder or at the command line?

    – nekomatic
    Mar 28 at 15:33













0












0








0








I have two files, one of which sets up the UDP Server and one of which sets up the UDP Client that the server should receive from.



When I start up the UDP Server file, it does what it is supposed to, which is display "the server is ready to receive" while the server is up.



However, whenever I run the client file and enter text to test the implementation, I get the following error:
gaierror: [Errno 11001] getaddrinfo failed



It is important to note that I am using Spyder (Anaconda Navigator) for Python 3.7. My questions are:



  1. Is it possible to do this in Spyder?

  2. If 1. is true, what am I doing wrong?

I've tried running the UDP Server file in the Windows Command Prompt and then tried to run the UDP Client file in order to see if the fact that I was running the server from Spyder affected the outcome, however I still got the same error saying "gaierror: [Errno 11001] getaddrinfo failed"



I've tried putting "socket.getaddrinfo('hostname', 12000)" into the Client File directly below the two definitions of the serverName and serverPort but this didn't work either



The code for the client is the first block of code, the code for the server is the second



import socket

serverName='hostname'
serverPort=12000
clientSocket=socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
message= input('Input lowercase sentence:')
clientSocket.sendto(message.encode(),(serverName, serverPort))
modifiedMessage, serverAddress=socket.clientSocket.recvfrom(2048)
print(modifiedMessage)
clientSocket.close()


import socket

serverPort=12000
serverSocket=socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
serverSocket.bind(("",serverPort))
print ("The server is ready to receive")
while 1:
message, clientAddress = serverSocket.recvfrom(2048)
modifiedMessage = message.upper()
serverSocket.sendto(modifiedMessage, clientAddress)


Expected results:
Server takes in an all-lowercase sentence from the Client such as "hi there my name jeff" and then makes this sentence "HI THERE MY NAME JEFF"



Actual: Upon inputting the sentence, I get the following error message: "gaierror: [Errno 11001] getaddrinfo failed"










share|improve this question














I have two files, one of which sets up the UDP Server and one of which sets up the UDP Client that the server should receive from.



When I start up the UDP Server file, it does what it is supposed to, which is display "the server is ready to receive" while the server is up.



However, whenever I run the client file and enter text to test the implementation, I get the following error:
gaierror: [Errno 11001] getaddrinfo failed



It is important to note that I am using Spyder (Anaconda Navigator) for Python 3.7. My questions are:



  1. Is it possible to do this in Spyder?

  2. If 1. is true, what am I doing wrong?

I've tried running the UDP Server file in the Windows Command Prompt and then tried to run the UDP Client file in order to see if the fact that I was running the server from Spyder affected the outcome, however I still got the same error saying "gaierror: [Errno 11001] getaddrinfo failed"



I've tried putting "socket.getaddrinfo('hostname', 12000)" into the Client File directly below the two definitions of the serverName and serverPort but this didn't work either



The code for the client is the first block of code, the code for the server is the second



import socket

serverName='hostname'
serverPort=12000
clientSocket=socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
message= input('Input lowercase sentence:')
clientSocket.sendto(message.encode(),(serverName, serverPort))
modifiedMessage, serverAddress=socket.clientSocket.recvfrom(2048)
print(modifiedMessage)
clientSocket.close()


import socket

serverPort=12000
serverSocket=socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
serverSocket.bind(("",serverPort))
print ("The server is ready to receive")
while 1:
message, clientAddress = serverSocket.recvfrom(2048)
modifiedMessage = message.upper()
serverSocket.sendto(modifiedMessage, clientAddress)


Expected results:
Server takes in an all-lowercase sentence from the Client such as "hi there my name jeff" and then makes this sentence "HI THERE MY NAME JEFF"



Actual: Upon inputting the sentence, I get the following error message: "gaierror: [Errno 11001] getaddrinfo failed"







python-3.x sockets spyder






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 27 at 20:23









Will SpencerWill Spencer

4




4















  • So just to be clear, it doesn't make any difference whether you run this from within Spyder or at the command line?

    – nekomatic
    Mar 28 at 15:33

















  • So just to be clear, it doesn't make any difference whether you run this from within Spyder or at the command line?

    – nekomatic
    Mar 28 at 15:33
















So just to be clear, it doesn't make any difference whether you run this from within Spyder or at the command line?

– nekomatic
Mar 28 at 15:33





So just to be clear, it doesn't make any difference whether you run this from within Spyder or at the command line?

– nekomatic
Mar 28 at 15:33












0






active

oldest

votes










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55385843%2fhow-do-i-setup-udp-client-server-connection-in-spyder%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes




Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55385843%2fhow-do-i-setup-udp-client-server-connection-in-spyder%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript