File Transfer using TCP Socket in Python | Socket Programming

แชร์
ฝัง
  • เผยแพร่เมื่อ 5 ต.ค. 2024
  • A simple file transfer client-server program build using the python programming language. Here the client sends a file to the server and the server saves it.
    Code: github.com/nik...
    Blog Post: idiotdeveloper...
    MY GEARS:
    Intel i5-7400: amzn.to/3ilpq95
    Gigabyte GA-B250M-D2V: amzn.to/3oPuntd
    ZOTAC GeForce GTX 1060: amzn.to/2XNtsxn
    LG 22MP68VQ 22 inch IPS Monitor: amzn.to/3soUKs5
    Corsair VENGEANCE LPX 16GB: amzn.to/2LVyR2L
    WD Green 240 GB SSD: amzn.to/3igt1Ft
    1TB WD Blue: amzn.to/38I6uhw
    Corsair VS550 550W: amzn.to/3nILHi3
    Zebronics BT4440RUCF 4.1 Speakers: amzn.to/2XGu203
    Segate 1TB Portable Hard Disk: amzn.to/3bF8YPG
    Seagate Backup Plus Hub 8 TB External HDD: amzn.to/39wcqtj
    Maono AU-A04 Condenser Microphone: amzn.to/35HHiWC
    Techlicious 3.5mm Clip Microphone: amzn.to/3bERKSD
    Redgear Dagger Headphones: amzn.to/3ssZNYr
    FOLLOW ME ON:
    BLOG: idiotdeveloper... sciencetonight...
    FACEBOOK: / idiotdeveloper
    TWITTER: / nikhilroxtomar
    INSTAGRAM: instagram/nikhilroxtomar
    PATREON: / idiotdeveloper

ความคิดเห็น • 27

  • @idkyet8053
    @idkyet8053 2 ปีที่แล้ว +5

    Thank you, you are such a life saver. Trust me when I say this, no idiot could have explained this as well as you did, keep doing what you do!

  • @laetitiakapaiwai1499
    @laetitiakapaiwai1499 3 ปีที่แล้ว +7

    Thank you so much for this. I wonder if you have a video where a local client requests a file from a local server and then the client downloads that file.

  • @oziomaoguine6156
    @oziomaoguine6156 2 ปีที่แล้ว +1

    This is super helpful, thanks mehn

  • @tekbssync5727
    @tekbssync5727 2 ปีที่แล้ว +1

    bhai remote command execution par video banao via socket programming

  • @moobh4261
    @moobh4261 3 ปีที่แล้ว +3

    Can we also use the server with an another ftp client like Filezila? Thanks for the video!

    • @IdiotDeveloper
      @IdiotDeveloper  3 ปีที่แล้ว +1

      FTP clients like Filezilla cannot be used with the server.

  • @aaronl8443
    @aaronl8443 3 ปีที่แล้ว +1

    thank you for your effort
    I subscribed your channel!

    • @IdiotDeveloper
      @IdiotDeveloper  3 ปีที่แล้ว

      I am glad you enjoyed 😉
      Thanks for subscribing

  • @deepu7988
    @deepu7988 2 ปีที่แล้ว

    similarly how we can send binary files....?(using windows10)..help out
    .....
    .
    .
    .
    .
    .
    .
    .
    Thankyou

  • @naikkavya1464
    @naikkavya1464 3 ปีที่แล้ว +2

    Hey! How can Client modify the file that's in server ??

    • @deepu7988
      @deepu7988 2 ปีที่แล้ว

      I have also similar doubt bro...?????
      help out
      😊

  • @probot143
    @probot143 ปีที่แล้ว

    i access my pc(server) files using python server in my phone(client) , but can i access Phone(client) files in my pc(server) ?

  • @ArtyomGalstyan
    @ArtyomGalstyan 2 ปีที่แล้ว

    Why in my case the file is not being written in the server root folder? It does not work, what is the issue?

  • @hellocodeur
    @hellocodeur 3 ปีที่แล้ว +1

    Thanks

  • @probot143
    @probot143 ปีที่แล้ว

    can sever access client files in local web server creating by using python3 -m http.server 8080 ⁉

  • @Ami7166
    @Ami7166 3 ปีที่แล้ว +1

    Thank you....

  • @PoojaKolhe-d1d
    @PoojaKolhe-d1d ปีที่แล้ว

    i run the code but why the error comes ?
    if _name_ == "_main_":
    IndentationError: unexpected indent

    • @orginalrealmanu1
      @orginalrealmanu1 6 หลายเดือนก่อน

      In the next line after that code you need some space

  • @erenpeker3232
    @erenpeker3232 3 ปีที่แล้ว

    Can we do this between seperate computers in different networks?

    • @johangodinho
      @johangodinho 3 ปีที่แล้ว

      I believe you could use port forwarding for that

    • @arpitdiwan4573
      @arpitdiwan4573 3 ปีที่แล้ว

      No you can't do this using this method. This method only applicable on the same or local area network. For running on different network you have to use public IPs. (Public IP Address) You would also need to port-forward. When you port-forward, that port on your Public IP Address can then be accessed.

  • @itzkoushik3233
    @itzkoushik3233 3 ปีที่แล้ว

    i can transfer images and txt files ,,.. but when i transfer .exe files its crashin

    • @IdiotDeveloper
      @IdiotDeveloper  3 ปีที่แล้ว +1

      .exe are binary files. This program is meant for text file transfer.

  • @nikama74
    @nikama74 2 ปีที่แล้ว

    hi
    how can I have the source code?

    • @IdiotDeveloper
      @IdiotDeveloper  2 ปีที่แล้ว

      github.com/nikhilroxtomar/File-Transfer-using-TCP-Socket-in-Python3