Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3439264
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T08:17:18+00:00 2026-05-18T08:17:18+00:00

In Python 2.x with ‘file-like’ object: sys.stdout.write(bytes_) tempfile.TemporaryFile().write(bytes_) open(‘filename’, ‘wb’).write(bytes_) StringIO().write(bytes_) How to do

  • 0

In Python 2.x with ‘file-like’ object:

sys.stdout.write(bytes_)
tempfile.TemporaryFile().write(bytes_)
open('filename', 'wb').write(bytes_)
StringIO().write(bytes_)

How to do the same in Python 3?

How to write equivalent of this Python 2.x code:

def write(file_, bytes_):
    file_.write(bytes_)

Note: sys.stdout is not always semantically a text stream. It might be beneficial to consider it as a stream of bytes sometimes. For example, make encrypted archive of dir/ on remote machine:

tar -c dir/ | gzip | gpg -c | ssh user@remote 'dd of=dir.tar.gz.gpg'

There is no point to use Unicode in this case.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T08:17:19+00:00Added an answer on May 18, 2026 at 8:17 am

    It’s a matter of using APIs that operate on bytes, rather than strings.

    sys.stdout.buffer.write(bytes_)
    

    As the docs explain, you can also detach the streams, so they’re binary by default.

    This accesses the underlying byte buffer.

    tempfile.TemporaryFile().write(bytes_)
    

    This is already a byte API.

    open('filename', 'wb').write(bytes_)
    

    As you would expect from the ‘b’, this is a byte API.

    from io import BytesIO
    BytesIO().write(bytes_)
    

    BytesIO is the byte equivalent to StringIO.

    EDIT: write will Just Work on any binary file-like object. So the general solution is just to find the right API.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Python's subprocess module by default passes all open file descriptors to any child processes
Python uses the reference count method to handle object life time. So an object
Python's fcnt module provides a method called [flock][1] to proved file locking. It's description
Python's f.tell doesn't work as I expected when you iterate over a file with
Python 2.6 Using Python string.replace() seems not working for UTF-16-LE file. I think of
Python packaging tools expect that our readme file should be named README or README.txt.
Python 2.6 and beyond has the ability to directly execute a .zip file if
Python is installed in a local directory. My directory tree looks like this: (local
Python for Windows has built in support for right clicking a .py file, and
Python's pickle (I'm talking standard Python 2.5/2.6/2.7 here) cannot pickle locks, file objects etc.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.