0
votes
1answer
25 views

Trouble with Python: Opening an app/saving a file

I am a bit new to coding, I am trying to improve my skills. My preferred programming language is python. But I do need help with this bit of code. I am making an app called User Helper for my own use. ...
0
votes
1answer
29 views

Send file to remote php from local python in $_FILES

Preface: I started learning Python one month ago, please don't yell at me :) I have a full developed site written in PHP, with all the functions I need with pages to insert "stuff" in the database. I ...
0
votes
1answer
40 views

Howto download file from Drive API using Python script

I'm working on simple script in Python which could download and export all files from Google Apps domain Drive Service. I was able to create Drive session using service account and I'm getting JSON ...
2
votes
3answers
68 views

How can i write to a txt file with multiple lines?

I made an online survey and I keep track of all the inputs in a txt file. Below are two questions, and everytime someone answers a question, I want to append the answer to the coresponding question. ...
1
vote
10answers
88 views

Python file variable - what is it?

I just started with Python, and since my background is in more low-level languages (java, C++), i just cant really get some things. So, in python one can create a file variable, by opening a text ...
1
vote
4answers
48 views

Splitting a htm file into separate lines in python

So I have a .htm file which I need to split into different lines and store in a list. So the code I used for this was as follows. html = open('filename.htm').read().splitlines() However when I do ...
2
votes
1answer
29 views

How to save custom preferences of python's IDLE?

I have several computers at different locations, and although I'm not coding in IDLE, it is always running in the background, for small testing, debugging and researching tasks. I configured IDLE ...
0
votes
2answers
46 views

How do you replace a line of text in a text file (python) [duplicate]

i have a text file that looks like this: unknown unknown etc. How do you choose a specific line in the text file, delete that line than replace it with a specific string.
1
vote
1answer
15 views

How to reload a changing file?

I am making a script that looks for changes in a file using python. It is being pushed using FTP to the server but I cannot make the script reload a file with the same name and get new data from that. ...
0
votes
1answer
43 views

How can I create dynamic conditionals in Python?

I am trying to create a script to go through the files of a specific folder and then move the files based on criteria to specific folders.I can write it with the criteria I want, but I would like if I ...
0
votes
0answers
42 views

Python check if file is in use on Windows [duplicate]

I've done some searching on how I can see if a file is in use by another process before i try and open it. Best I've seen is the code below, but it seems a bit hacky to me, wondering if there might ...
0
votes
2answers
40 views

Multiple Editing of the same file

What would I have to do to allow multiple programs/users to read/write to the same file ? Use Case I have a CSV file and I want to enable multiple users to edit it in more or less in real time. I ...
0
votes
1answer
48 views

Why is my file-like class only returning empty strings after the first call to readline?

I've created a small class to add a layer of encryption on top of python's tempfile.TemporaryFIle. My first call to readline returns a line (as expected), but all subsequent calls to that function ...
0
votes
1answer
34 views

Tkinter or Python does and does not recognize file location

Hey guys I am getting this error Traceback (most recent call last): File "C:/Users/Deaven And Teigan/Documents/Python Projects/Tkinter Tut.py", line 16, in <module> background_label = ...
3
votes
3answers
73 views

Python version of freopen()

Is there anything in python that can replicate the functionality of freopen() in C or C++? To be precise, I want to replicate the functionality of: freopen("input.txt","r",stdin); and ...
0
votes
1answer
66 views

Python write in the same line of file

Supose i have a function like this: f=open('file.txt','w') n=0 while(n<20): f.write(n) n=n+1 f.close() but the loop writes all numbers to the file, and i just want the current number in ...
2
votes
8answers
194 views

Pick parts from a txt file and copy to another file with python

I'm in trouble here. I need to read a file. Txt file that contains a sequence of records, check the records that I want to copy them to a new file. The file content is like this (this is just an ...
0
votes
3answers
54 views

Import vs open for input file

I have an input file with variables that I would like to use in a python program. Is it better to bring in the variables using import: import imp inputData = imp.load_source(...) Or is it better to ...
6
votes
3answers
102 views

Is Python dangerous for dealing with binary files?

I read this on Python tutorial: (http://docs.python.org/2/tutorial/inputoutput.html#reading-and-writing-files) Python on Windows makes a distinction between text and binary files; the ...
1
vote
4answers
97 views

How to write every 12th line to a new file

I want to select every 12th line in a file and write those lines into a new file. Anyone have a suggestion? I have 126 lines, first 6 lines are header, so I need to select the 7th, 19th and 31st line ...
1
vote
1answer
51 views

Python - Unable to rename a file with special characters in the file name

I have a bunch of mp3 files that somehow have a special character in the 0th index. So the file name looks like this - ▶ Alone Tonight - Radio Edit - Above & Beyond .mp3 I want to be able to fix ...
1
vote
2answers
69 views

Python list comprehension, can it be used for reading multiple files?

Here is my script so far: #!/usr/bin/env python import fileinput from optparse import OptionParser op = OptionParser() (options, files) = op.parse_args() print options print files content = [] for ...
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 ...
1
vote
2answers
51 views

Python read/write file without closing

Sometimes when I open a file for reading or writing in Python f = open('workfile', 'r') or f = open('workfile', 'w') I read/write the file, and then at the end I forget to do f.close(). Is there ...
0
votes
1answer
31 views

Access files with wildcard filename in directory structure

I have the following directory structure top_folder secondary_folder1 file1.txt secondary_folder2 deep_folder file2.txt file3.txt file4.html file5.txt file6.txt I ...
0
votes
3answers
46 views

Opening Files From Any Directory (Python)

Im writing this basic code that runs files on my computer but right now it can only open files from the directory it is in. is there a way to open files from anywhere on my computer or would i have to ...
0
votes
1answer
80 views

concision in a for loop without list comprehension

Please don't laugh. I'm trying to write a simple script that will replace the hostname and IP of a base VM. I have a working version of this, but I'm trying to make it more readable and concise. I'm ...
2
votes
2answers
41 views

twisted image transfer from client to server gives bad format error

I was trying to send an image file using tcp from server to client. I tried opening the file, reading it and then transporting it using self.transport.write. On the client side, when I receive data, I ...
0
votes
1answer
68 views

Numpy loadtxt file path name

I was wondering if somebody had some information on how to load a csv file using numpy's loadtxt. For some reason it claims that there is no such file or directory, when clearly there is. I've even ...
0
votes
2answers
64 views

Creating a python file in a local directory

Okay so I'm basically writing a program that creates text files except I want them created in a folder that's in this same folder as the .py file is that possibly? how do I do it? using python 3.3
0
votes
1answer
17 views

how to execute ftp command “ put 'FILE_NAME' ” using python script

how do I execute ftp command " put 'FILE_NAME' " using python script? I want to transfer a file to the processor connected using FTP. Command is ftp> put "C:\filename" I want this to be executed ...
1
vote
1answer
33 views

Python: creating file to store histogram?

Do you have any advice in where I should store a histogram? cPickle? Json? Also, should I do: with open('namefile', 'wb') as histogram: .... <code for histogram> .... or should I create the ...
0
votes
1answer
19 views

Paramiko determine whether file or directory

Related to How to list all the folders and files in the directory after connecting through sftp in python: I'm trying to see walk over the contents of a directory and determine whether or not each ...
0
votes
2answers
58 views

How to write features in nltk to a txt file?

I trained a naive bayes classifier with nltk. The function show_most_informative_features (source code) can print out the top likelihood features in the training process to python shell, but it has no ...
0
votes
2answers
51 views

Python - Reversing a Whole File

I need to be able to reverse a whole file, or at least the contents of it. My code so far is: def reverse_file(of, rf): oldfile = open(of, 'r') reversefile = open(rf, 'w') filedata = ...
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 ...
-4
votes
1answer
101 views

Python replace string in file

i need something to replace a string in a file wich is placed in that mktemp folder. this file is named autounattend.cfg and contains a string named %PASSWORD this string need to be replaced with ...
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
3answers
51 views

How to route the Python script output to a file

I have a following script in python. for i in range(10000): print i Above piece of python code prints the value of i from 0 to 9999 on the console. Now I would like to route the output of the ...
0
votes
1answer
42 views

Writing to a file at specific time intervals in different threads for a simple keylogger

import pythoncom , pyHook, time temp_keylogs = '' def OnKeyboardEvent(event): global temp_keylogs key = chr(event.Ascii) temp_keylogs += key hm = pyHook.HookManager() hm.KeyDown = ...
0
votes
1answer
70 views

Reading from a .txt file dynamically with Python

I have a text file that will be populated depending on a radio button selected by a user in php I am reading from the same text file, whenever I find that a new line has been added the Python script ...
-1
votes
2answers
64 views

Python: check tab delimited file for a proper number of columns

Check to make sure that a) each line is 4 columns long b) make sure that it doesn't fail if theres a new line ('\n') at the end of the program def ask_for_filename(): ...
0
votes
4answers
62 views

compare two file and find matching words in python

I have a two file: the first one includes terms and their frequency: table 2 apple 4 pencil 89 The second file is a dictionary: abroad apple bread ... I want to check whether the first file ...
0
votes
1answer
50 views

Python: Windows System File

In python, how can I identify a file that is a "window system file". From the command line I can do this with the following command: ATTRIB "c:\file_path_name.txt" If the return has the "S" ...
1
vote
2answers
49 views

Selecting certain rows from a set of data files in Python

I am trying to manipulate some data with Python, but having quite a bit of difficulty (given that I'm still a rookie). I have taken some code from other questions/sites but still can't quite get what ...
3
votes
3answers
139 views

python: import csv file (delimiter “;” or “,”)

I want to import two kinds of CSV files, some use ";" for delimiter and others use ",". So far I have been switching between the next two lines: reader=csv.reader(f,delimiter=';') or ...
1
vote
4answers
139 views

Splitting large text file into smaller text files by line numbers using Python

I have a text file say really_big_file.txt that contains: line 1 line 2 line 3 line 4 ... line 99999 line 100000 I would like to write a Python script that divides really_big_file.txt into smaller ...
1
vote
0answers
45 views

MatPlotLib file chooser in python

Wondering if there was a way to have a file chooser on the gui that displayed when i do plt.show() I want to be able to browse for a file and then display something on the gui. Any thoughts?
2
votes
2answers
102 views

Python: loop through several csv files

I was wondering if anybody knew how I could change a script in Python so it goes through a folder containing csv files and takes them in groups of three. The script is working when I type the file ...

1 2 3 4 5 32