Posts by SeoFernando • 61 points
3 posts
-
1
votes1
answer346
viewsA: How to transfer file using python socket?
TL;DR Try to add a form of Handshake between client and server or add a delay between sent packets The problem is in the way Udps packets are handled. In your example we have the following…
-
1
votes2
answers124
viewsA: Python: How to store the documentation(help) of a class in a String?
No matter what, you could use the attribute _doc_ of the function or class eg: def foo(): """Minha docstring epicamente epica""" pass class Bar(): """Minha documentacao 100% profissional""" pass…
-
1
votes2
answers156
viewsA: How to create a file within the users directory?
If Voce is absolutely sure that the directory name is right Voce can "print" the error name with... //Outros includes //... #include <errno.h> int main (int argc, char const *argv[] ) { char*…