Tagged Questions
0
votes
1answer
24 views
Python “builtin_function_or_method” Error
I have a problem writing files - I want to write in bytes, so I made a code:
read_file = open(data,"wb")#data is the path of the file
new_file.write(read_file.read)
read_file.close
It throws me ...
4
votes
1answer
78 views
Is the file closed? [duplicate]
I see regularly this kind of code:
filecontent = open(thefilename).read()
I wonder what becomes the file object created by open in this situation: is it implicitly closed, or does it stay open ...
0
votes
1answer
31 views
Why sfml does not play the file inside a function in this python code?
from tkinter import *
import sfml
window = Tk()
window.minsize( 640, 480 )
def sonido():
file = sfml.Music.from_file('poco.ogg')
file.play()
test = Button ( window, text = 'Sound ...
1
vote
1answer
47 views
How to prepend data to the binary file?
I have a big binary file. How I can write (prepend) to the begin of the file?
Ex:
file = 'binary_file'
string = 'bytes_string'
I expected get new file with content: bytes_string_binary_file.
...
0
votes
1answer
44 views
Receiving a Memory Error?
I work in the office of one of the professors at my college and he has assigned me to read through a whole classes papers to attempt to catch people that plagiarize so I decided to write a program ...
0
votes
2answers
39 views
File Manipulation: How to take out Punctuation and Capital letters?
I'm trying to figure out how to open a file, make all the letters in the file lowercase, and then take out all the punctuation. I've tried a few things I've seen online and in my book but I can't seem ...
0
votes
1answer
40 views
Reading through a folder of Files?
I am assigned to write a program that catches plagiarists. Given a folder of files, how would I iterate through them file-by-file, constructing a list of all 6-word phrases in each file. An example of ...
1
vote
3answers
84 views
Download file as string in python
I want to download a file to python as a string. I have tried the following, but it doesn't seem to work. What am I doing wrong, or what else might I do?
from urllib import request
webFile = ...
0
votes
2answers
45 views
How to construct a TarFile object in memory from byte buffer in Python 3?
Is it possible to create a TarFile object in memory using a buffer containing the tar data without having to write the TarFile to disk and open it up again? We get the bytes sent over a socket.
...
0
votes
1answer
68 views
Porting a Python 2.x file like object to Python 3
I'm working on improving Python 3.X support for PyFilesystem. It's an abstraction for filesystems. Each filesystem object has an open method that returns a file-like object.
The problem I'm facing is ...
0
votes
2answers
208 views
Write files to disk with python 3.x
Using BottlePy, I use the following code to upload a file and write it to disk :
upload = request.files.get('upload')
raw = upload.file.read()
filename = upload.filename
with open(filename, 'w') as ...
0
votes
2answers
116 views
Extract number from file name in python
I have a directory where I have many data files, but the data file names have arbitrary numbers. For example
data_T_1e-05.d
data_T_7.2434.d
data_T_0.001.d
and so on. Because of the decimals in the ...
0
votes
1answer
127 views
Implications of reading `byte` vs. `bytearray` from file in python
I constantly get errors when reading from file as bytes, if I use upon them ord() or chr(). What could be the reason?
0
votes
2answers
156 views
How to have Python check if a file exists and create it if it doesn't?
How to have Python look and see if there is a file it needs and if there isn't create one?
Basically I want Python to look for my file name KEEP-IMPORTANT.txt, but when I create my app using py2app ...
0
votes
3answers
46 views
Wanting to Change specific Characters from TextFile into Other Characters. Not trying to Write, only wanting to print out into the console
I have a text file that has a bunch of data in it. At certain instances of this text file, I am trying to replace the follow letters in it: A->G, C->T, etc. Basically, I know I need to read the file. ...
1
vote
1answer
43 views
Python3 searching in bytearray
I have this strange problem with using find()/index() (don't know if there is any difference between them) with bytesarray.
I'm working with binary file, I have loaded it as bytesarray and now I ...
0
votes
2answers
63 views
searching for a string in a file using python faliure
I am using this code to search for emails in a particular file and write them into a another file. I have used 'in' operator to make sure that the email are not duplicated.
But this code does not get ...
0
votes
1answer
69 views
Searching a text file for a user given string
I have programmed a working game which gives the user a random string of 7 letters, and the user must use only these letters to make combinations of words and non-words, each letter used only once. ...
0
votes
1answer
158 views
Error opening file - Python 3.3 [duplicate]
Possible Duplicate:
IOError when trying to open existing files
I'm having problems opening a file with open() in python 3.3, any idea why?
I'm trying
import os
filelist = [ f for f in ...
0
votes
2answers
78 views
Python lyric opener works for one file but not for the other? [closed]
I've coded a program which helps me to quickly toggle between lyrics of songs. It reads the lyrics from .lyr file and prints them out to me.
Here's a simplified version, without any additional ...
0
votes
1answer
113 views
Python 3: reading UCS-2 (BE) file
I can't seem to be able to decode UCS-2 BE files (legacy stuff) under Python 3.3, using the built-in open() function (stack trace shows UnicodeDecodeError and contains my readLine() method) - in fact, ...
-1
votes
1answer
128 views
Python 3: with open() not working? [closed]
I have the code:
filename = "C:/users/patrik/documents/mypython.txt"
with open(filename) as f:
if f.readlines()[0] == "patrik's file": #first line
f.write("This file has been read by ...
1
vote
2answers
65 views
Faster way of getting files with certain text in them in Python?
I have lots and lots of files in a list called files, which I am looping through and saving all the files which have //StackOverflow on the very first line. It might have some additional text after ...
1
vote
2answers
148 views
Python File Modified Time get and set over socket
I have written some code where I get the modified time of a file using
os.path.getmtime('path')
which returns some number like 965465464.19234. I convert it to bytes and send it over socket. At the ...
2
votes
3answers
350 views
opened file descriptors in python
when I use this code in IPython3 shell
>>>data = open('file').read()
and then check open file descriptors:
lsof | grep file
I find empty list
and when I use this:
...
-1
votes
2answers
257 views
Python 3.2: Making a list of lists of integers in a file [closed]
So I have a file containing a matrix of integers. I need to read in the contents of the file and store it in a list of lists. I can't quite figure out how I have to do this.
Here is an example of ...
3
votes
1answer
381 views
Python 3 Writing Input file in reverse order to output file
I have tried searching, but I havent found exactly what I need. I am using python 3, and I need help writing a text file in reverse order to a different output file.
So this would be the input file
...
2
votes
1answer
81 views
python 3 unable to write to file
My code is:
from random import randrange, choice
from string import ascii_lowercase as lc
from sys import maxsize
from time import ctime
tlds = ('com', 'edu', 'net', 'org', 'gov')
for i in ...
0
votes
1answer
333 views
Iterable error in word count Python 3.3 program
I'm trying to complete a simple word-count program, which keeps track of the number of words, characters, and lines in a connected file.
# This program counts the number of lines, words, and ...
1
vote
2answers
108 views
How to find the “current” source file in Python 3?
What's the simplest way to find the path to the file in which I am "executing" some code? By this, I mean that if I have a file foo.py that contains:
print(here())
I would like to see ...
2
votes
5answers
186 views
Open a file for input and output in Python
I have the following code which is intended to remove specific lines of a file. When I run it, it prints the two filenames that live in the directory, then deletes all information in them. What am I ...
0
votes
1answer
99 views
Logging to two files with different settings
I am already using a basic logging config where all messages across all modules are stored in a single file. However, I need a more complex solution now:
Two files: the first remains the same.
The ...
0
votes
1answer
94 views
TypeError writing dictionary to csv in Python
I've got a question concerning the csv-module in python. I just can't seem to write a list of dictionaries to a csv file. It would be fantastic if you could help me spot the mistake in here.
I get a ...
-1
votes
3answers
324 views
find and delete lines in file python 3
I use python 3
Okay, I got a file that lock like this:
id:1
1
34
22
52
id:2
1
23
22
31
id:3
2
12
3
31
id:4
1
21
22
11
how can I find and delete only this part of the file?
id:2
1
23
22
31
I ...
1
vote
3answers
375 views
how to accept file or path as arguments to method in python
I am trying to write a method that will accept either an opened file
myFile = open("myFile.txt")
obj.writeTo(myFile)
myFile.close()
or a string with a path
obj.writeTo("myFile.txt")
The method ...
0
votes
3answers
1k views
Calculating average from numbers in .txt file using Python
def main():
total = 0.0
length = 0.0
average = 0.0
try:
#Get the name of a file
filename = input('Enter a file name: ')
#Open the file
infile = ...
0
votes
2answers
463 views
TypeError: invalid file: When trying to make a file name a variable
Hi I am trying to represent a file location as a variable because the finial script will be run on another machine. This is the code I have tried followed by the error I get. It seems to me that some ...
-1
votes
2answers
99 views
Comparing more than 2 files in python3
I need to check if more than two files are different, using python3: is there some kind of library for that?
the files might be relatively big
I don't care about the differences themselves: knowing ...
3
votes
3answers
1k views
Serving static files with WSGI and Python 3
What is the simplest way to serve static files with WSGI and Python 3.2? There are some WSGI apps for PEP 333 and Python 2 for this purpose - but was is about PEP 3333 and Python 3? I want to use ...
5
votes
3answers
15k views
How to read numbers from file in Python?
I'd like to read numbers from file into two dimensional array.
File contents:
line containing w, h
h lines containing w integers separated with space
For example:
4 3
1 2 3 4
2 3 4 5
6 7 8 9
2
votes
2answers
4k views
write in a file with python 3 & unicode
here is my code :
import codecs
filename = "worst.txt"
file = open(filename, "r",encoding='utf-8')
lines = file.readlines()
texte = ""
for line in lines:
print(line)
texte += line
...
6
votes
3answers
5k views
printing to a file in Python: redirect vs print's file argument vs write
I have a bunch of print calls that I need to write to a file instead of stdout. (I don't need stdout at all.)
I am considering three approaches. Are there any advantages (including performance) to ...
4
votes
3answers
788 views
Moving to an arbitrary position in a file in Python
Let's say that I routinely have to work with files with an unknown, but large, number of lines. Each line contains a set of integers (space, comma, semicolon, or some non-numeric character is the ...
4
votes
5answers
6k views
cant download youtube video
I'm having trouble retrieving the youtube video automatically, heres the code. The problem is the last part. download = urllib.request.urlopen(download_url).read()
# Youtube video download script
...
1
vote
5answers
7k views
Writing Strings to files in python
I'm getting the following error when trying to write a string to a file in pythion:
Traceback (most recent call last):
File "export_off.py", line 264, in execute
save_off(self.properties.path, ...
2
votes
3answers
174 views
Variable Files with Python
I am trying to have a file path like 'C:\Programfiles\file.txt' but i would like to have file.txt be a variable that i can change whenever i need to. I am trying to compare 2 directories then copy ...
