1
vote
2answers
33 views

Django: delete related object via OneToOneField

Is there some clever way how to perform delete in this situation? class Bus(models.Model): wheel = OneToOneField(Wheel) class Bike(models.Model): wheel = OneToOneField(Wheel) ...
1
vote
2answers
39 views

Iterating over a Django QuerySet while deleting objects in the same QuerySet

I am wondering what is the best way to iterate over a Django QuerySet while deleting objects within the Queryset? For example, say you have a log table with entries at specific times, and you wanted ...
0
votes
1answer
36 views

Remove character starting with x and ending with x and everything between it in a string.

I'm fairly new to Python but I have done my research and as a last resort I've turned to you guy for help. The problem: I want to remove a specific code within a question. The code changes position ...
3
votes
1answer
141 views

Python: Search for and delete nested lists of dictionaries

I have a tree of nested lists and dictionaries that I need to recursively go through and remove entire dictionaries that match specific criteria. For instance, I need to remove all dictionaries with ...
0
votes
1answer
48 views

Delete multiple directories in python

In python, I understand that I can delete multiple files with the same name using the following command for eg: for f in glob.glob("file_name_*.txt"): os.remove(f) And that a single directory ...
0
votes
2answers
93 views

Delete From File, Python

Need to create database and am struggeling deleteing from txt file. I am not sure how to get it to delete the nameToFind from the read variable. I was suggested to use a dictionary? This is what i ...
0
votes
2answers
43 views

Searching and deleting directories in python I made a big mistake

enter code here import os os.chdir('I:\\Movies') files = os.popen('dir').readlines() disk = raw_input("Enter the disk: ") while disk != "done": os.chdir(disk + ':\\' + 'Movies') files_in_disk ...
-2
votes
2answers
87 views

deleting folders with python scripts

a = '/mnt/task/a' b = '/mnt/task/b' Under a and b , There are some folders, with names like 201212194546921-6ab-45654545d-5445c As you see, the folders' names are made up of things like serial ...
0
votes
1answer
25 views

How to extract/delete parts of a line and save to a new file in python? (New python user)

Brand new to python and just wanted a little advice. i have this data here: '**Otolemur_crassicaudatus**_/7977-8746 ...
0
votes
1answer
48 views

Deleting an object in OpenGL

So I am just getting started with openGL and I'm having trouble trying to figure out how to delete an object that has already been drawn.I have 2 different rectangles glBegin(GL_POLYGON) ...
1
vote
4answers
100 views

Strip the First Four Rows of a CSV in Python?

I have a batch of 50-60 csv files which, for whatever reason, have total junk data for the first four rows of each file. After the junk data, however, the column headers are properly listed, and the ...
0
votes
1answer
85 views

Shred Recycle Bin - Python

I am developing a file shredder for windows 32 using Python 2.7. One of the desired features is be able to shred all recycle bin contents. As for other files, outside of the recycle bin, we ...
6
votes
1answer
93 views

deleting variables in Python standard libraries

I've been reading some of the code in a standard threading library ( Python 2.6 ) and there was a piece of code which made me wonder. It can be shorten to the following structure ( compare to ...
0
votes
3answers
86 views

Cleaning up in pypy

I've been looking for ways to clean up objects in python. I'm currently using pypy. I found a web page and an example. First a basic example: class FooType(object): def __init__(self, id): ...
2
votes
1answer
69 views

Sanitizing a Piece of Text in Python

I am fairly new to Python, but I would like to get started and learn a bit by doing some scripting for features I will use. I have some text that is retrieved from typing in "status" in Team Fortress ...
0
votes
2answers
75 views

delete() function not working

delete() function not working in django, def delete_hardware (request): notice = '' inventory = get_object_or_404(inventory, id = request.GET.get('id')) if inventory: ...
-1
votes
6answers
75 views

Delete from list in for-loop . Python [closed]

my_list = [0,1,2,3,4,5,6,7,8,9,10] for k in my_list: if k > 6: #delete k how do i delete k from the list if it is greater than a certain value ?
0
votes
4answers
57 views

how to remove a list within list based on len in python

I have the following input list A = [['A',[1,2,3]],['D',[3,4]],['E',[6,7]],['F',[1]]] I want to have sublists whose length is 2. In the above example, I want to remove [A,[1,2,3]], [F,[1]] etc I ...
-5
votes
3answers
72 views

Python - Deleting certain elements in a list [closed]

So I want to delete all multiples of 2 in a list. How can I do it? But there is another question, if I then want to delete all multiples of 3 what happens with six, for example?
3
votes
2answers
67 views

Delete line from a file after it have been used

i'm trying to create a script which makes requests to random urls from a txt file import urllib2 with open('urls.txt') as urls: for url in urls: try: r = urllib2.urlopen(url) ...
2
votes
4answers
113 views

Removing all spaces recursively (list of list of lists of…)

I'm trying to remove all spaces from the input which is list of list of lists... I don't know what to do for the "else:" def removespace(lst): if type(lst) is str: return lst.replace(" ","") ...
0
votes
3answers
88 views

How to Delete Subsequent Line After A Line With Specific Keyword in Python

After finding a specific line with keyword "banana", I would like to delete the subsequent line, in this case, "berry". Sample.txt orange apple banana berry melon My script, however, deletes ...
1
vote
2answers
106 views

Deleting Zeros from Numpy Array in Python

I have a question regarding the deletion from arrays. I have a 3-D numpy array (coordinates are z,y,x) with an estimated 900^3 size. Only a few values are nonzero, but they have a nontrivial spatial ...
0
votes
1answer
60 views

Python win32file remove file data

I have a data file, which is used to store details about users. I need to be able to look up a user in the file using win32file and remove the data from the file. I have the following structure size ...
8
votes
1answer
473 views

Sublime text: How to get the file name of the current view

I'm trying to write a tiny plugin to delete the current file and close the active view. For some reason self.view.file_name() always returns None. I'm new to Python and I've no idea why it doesn't ...
0
votes
2answers
115 views

in GAE Python, I can not delete cookies locally, but on the web if I can

I'm working on a project, working directly on the web, but for speed of development, I decided to spend my project locally, but when I want to delete a cookie locally I can not, be the same code that ...
0
votes
3answers
174 views

Python dict key delete if pattern match with other dict key

Python dict key delete, if key pattern match with other dict key. e.g. a={'a.b.c.test':1, 'b.x.d.pqr':2, 'c.e.f.dummy':3, 'd.x.y.temp':4} b={'a.b.c':1, 'b.p.q':20} result ...
1
vote
5answers
342 views

Delete multiple columns from 500 MB tsv file with python (or perl etc)

I have a very large tsv file and need to delete several columns. I've found the CSV module, and an answer as below to a sort of similar question (see script below). Yet I need to delete a large range ...
1
vote
3answers
749 views

Python - read line from file, process it, then remove it

I have a 22mb text file containing a list of numbers (1 number per line). I am trying to have python read the number, process the number and write the result in another file. All of this works but if ...
0
votes
1answer
65 views

Remove element of a list meeting a logical condition in Python

I have filenames listed from arcpy (arcmap) as follows in 'inner'. inner = [u'aet1941jan.asc', u'aet2004jun.asc', u'aet1981nov.asc', u'aet1985feb.asc', u'aet1974sep.asc', u'aet1900sep.asc', ...
3
votes
5answers
215 views

smart way to delete tuples

I having a list of tuple as describes below (This tuple is sorted in decreasing order of the second value): from string import ascii_letters myTup = zip (ascii_letters, range(10)[::-1]) threshold = ...
0
votes
6answers
303 views

Deleting certain line of text file in python

I have the following text file: This is my text file NUM,123 FRUIT DRINK FOOD,BACON CAR NUM,456 FRUIT DRINK FOOD,BURGER CAR NUM,789 FRUIT DRINK FOOD,SAUSAGE CAR NUM,012 FRUIT DRINK FOOD,MEATBALL CAR ...
0
votes
4answers
535 views

Remove lines that contain certain string

I'm trying to read a text from a text file, read lines, delete lines that contain specific string (in this case 'bad' and 'naughty'). The code I wrote goes like this: infile = file('./oldfile.txt') ...
0
votes
1answer
178 views

Populating a Numpy Array using FOR loop with DELETE and INSERT

So far all the "mistakes" I've been making have been small things I'm missing, hopefully this is the case here. I've decided to use NUMPY array mainly for the array resizing capability. I've noticed ...
0
votes
1answer
97 views

User Input Python Script Executing Daemon

I am working on a web service that requires user input python code to be executed on my server (we have checks for code injection). I have to import a rather large module so I would like to make sure ...
0
votes
1answer
444 views

python gmail imap delete and append updated message still shows old message

I have a bunch of messages in a gmail mailbox with slightly mangled headers. I'd like to process and update them automatically using python and gmail's imap interface. I'd like to download the ...
1
vote
1answer
361 views

How to delete project in django

Initially i had single project in django now i want delete the last project and start a fresh new project with the same name as the last one.How should i do so?Can deleting the project folders be ...
2
votes
2answers
175 views

How to delete an app from a django project

Initially I made 2 apps (app_a and app_b) in a single project in Django. Now I want to delete one (say app_a). How should I do so? Is removing the app name from INSTALLED_APPS in the settings file ...
0
votes
0answers
205 views

Delete row from sqlite3 database - Python

This partial of codes of SQLITE3 i have coded: dbcur.execute("DELETE FROM table WHERE row1='%s' AND row2='%s'" % (1, 2)) db1.commit() dbcur.close() It seems its not working for me. Any help?
0
votes
4answers
201 views

python compare lists - delete list where id = id and date > date

I have a list of lists [['Id', 'fname', 'lname', 'gender', 'startdate'], ['100', 'John', 'Jackson', 'M', '08/09/2000'], ['101', 'Jenny', 'Hobbs', 'F', '01/13/1995'], ['100', 'John', 'Jackson', 'M', ...
0
votes
1answer
100 views

how to delete from an object

import pickle class TasksError(Exception): def __init__(self, value): self.value = value def __str__(self): return repr(self.value) class Task(object): def __init__(self, ...
0
votes
2answers
710 views

FTP.delete(filename) from ftplib error

When I try to use ftp.delete() from ftplib, it raises error_perm, resp: >>> from ftplib import FTP >>> ftp = FTP("192.168.0.22") >>> ftp.login("user", "password") '230 ...
2
votes
3answers
1k views

Does dictionary's clear() method delete all the item related objects from memory?

If a dictionary contains mutable objects or objects of custom classes (say a queryset, or a even a DateTime), then will calling clear() on the dictionary delete these objects from memory? Does it ...
0
votes
1answer
179 views

Delete Characters in Python Printed Line

I'm writing a program where I want the cursor to print letters on the same line, but then delete them as well, as if a person was typing, made a mistake, deleted back to the mistake, and kept typing ...
0
votes
2answers
257 views

DeleteResource from Google Docs with Python

I am trying to delete a spreadsheet in Google Docs with this function: def f_DeleteResource(xls_name): """Delete a resource""" client=Auth() for e1 in client.GetResources().entry: e2 = ...
0
votes
2answers
88 views

Python - Deleting usernames and not via password in a text file

Guest = {} with open('LogIn.txt') as f: credentials = [x.strip().split(':') for x in f.readlines()] for username,password in credentials: Guest[username] = password def DelUser(): ...
0
votes
1answer
77 views

Unexpected results with delete method

Found this exercise in a book to learn programming with Python 3... I have to create a new App class derived from Frame. It has to show a face and 2 buttons, one to draw an open mouth and the other ...
3
votes
4answers
863 views

python: del MyClass doesn't call object.__del__()

I have a class that opens a file for writing. In my destructor, I call the function that closes the file: class MyClass: def __del__(self): self.close() def close(self): if ...
3
votes
1answer
1k views

Python/Tkinter: Trying to clear items in ttk.treeview object

ing_scroll = Scrollbar(window1_frame1, orient=VERTICAL) ingredients = ttk.Treeview(window1_frame1, yscrollcommand=ing_scroll.set, height=5, columns=['Ingredient', 'Amount'], show="headings") ...
3
votes
2answers
154 views

Remove more than one key from Python dict

Is there any efficient shortcut method to delete more than one key at a time from a python dictionary? For instance; x = {'a': 5, 'b': 2, 'c': 3} x.pop('a', 'b') print x {'c': 3} Thanks in ...

1 2 3