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

  • Home
  • SEARCH
  • 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 7768413
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T15:54:30+00:00 2026-06-01T15:54:30+00:00

I have been successful in finding code for spawning a vim editor and creating

  • 0

I have been successful in finding code for spawning a vim editor and creating a tempfile from a python script. The code is here, I found it here: call up an EDITOR (vim) from a python script

import sys, tempfile, os
from subprocess import call

EDITOR = os.environ.get('EDITOR','vim') 

initial_message = "" 

with tempfile.NamedTemporaryFile(suffix=".tmp") as tempfile:
  tempfile.write(initial_message)
  tempfile.flush()
  call([EDITOR, tempfile.name])

The problem I having is that I cannot access the contents of the tempfile after I quit the editor.

tempfile
<closed file '<fdopen>', mode 'w+b' at 0x87c47b0>

tempfile.readline()

I get

ValueError: I/O operation on closed file

I did:

myfile = open(tempfile.name)
IOError: [Errno 2] No such file or directory: '/tmp/tmp7VKzfl.tmp'

How would I access the file in a python script once it has been edited with the editor?

Thank you

  • 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-06-01T15:54:31+00:00Added an answer on June 1, 2026 at 3:54 pm

    Everything inside a with block is scoped. If you create the temporary file with the with statement, it will not be available after the block ends.

    You need to read the tempfile contents inside the with block, or use another syntax to create the temporary file, e.g.:

    tempfile = NamedTemporaryFile(suffix=".tmp")
    # do stuff
    tempfile.close()
    

    If you do want to automatically close the file after your block, but still be able to re-open it, pass delete=False to the NamedTemporaryFile constructor (else it will be deleted after closing):

    with tempfile.NamedTemporaryFile(suffix=".tmp", delete=False) as tempfile:
    

    Btw, you might want to use envoy to run subprocesses, nice library 🙂

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

Sidebar

Related Questions

I have been successful with creating a Telerik grid to display a list of
I have been successful in returning the json responce from the ajax call to
I have been successful with extracting text from a PDF file using GhostScript along
I have been successful in creating folder in Documents folder in iPhone simulator. NSError
I have been successful at rounding my value to one decimal point, but I
I have been reading the MSDN documentation on subclassing and I have been successful
Im using JSoup with android and so far I have been successful. In my
We use Perl for GUI test automation. It has been very successful. We have
I have been successful in dynamically loading an album in SSP before, but using
I have been successful with this in the past but now I can't seem

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.