Tagged Questions
1
vote
2answers
43 views
base & current vs base & offset?
I have an Attribute class, which can represent different attributes like speed or armor. Attribute has a base, an offset and a current value.
This is easiest explained using examples, I'll use speed ...
1
vote
2answers
22 views
Error while saving attachment
I am new to Python and getting an error which I am not able to get past.
Writing a code to go through my outlook and extract attachment(excel) if subject matches a given string. Here is the code:
...
0
votes
2answers
21 views
python 'function' object has no attribute 'GzipFile' [closed]
I write a function for compress file as following:
def gzip(filename):
'''Gzip the given file and then remove original file.'''
r_file = open(filename, 'r')
w_file = ...
0
votes
2answers
42 views
Run a method instead of yelling AttributeError
Is it possible to create a class that, when instantiated, would never throw AttributeError, but instead would call own method to define the attribute?
Currently, I can do:
class O: pass
o = O()
...
0
votes
1answer
28 views
Python: differences among __setitem__ ; setattr ; set
simple explanations by examples would do where the 3 of them cannot be interchanged.
def __setitem__(self,**k):
#self.val=k
for key in k:
...
0
votes
1answer
34 views
Python/IronPython- how to return value of specific attribute of class when only class object referenced?
Ok, just trying to get into Python, specifically, I'm using the benefit of on-the-fly calculations from within a C# app calling the IronPython engine. I pass in to IP a list of C# objects of class C, ...
0
votes
2answers
34 views
How to get a class attribute depending on a string in python
I have a class in python and I'd like to get one of several attributes depending on a string like this:
class my_class:
def __init__(self):
self.att1=1
self.att2=2
...
1
vote
3answers
51 views
Minor of matrix
I'm writing in function for computing minor of matrix
def minor(arr,i,j):
return arr[np.array(range(i)+range(i+1,arr.shape[0]))[:,np.newaxis],
...
1
vote
2answers
48 views
Python Count Elements in a List of Objects with Matching Attributes
I am trying to find a simple and fast way of counting the number of Objects in a list that match a criteria.
e.g.
class Person:
def __init__(self, Name, Age, Gender):
self.Name = Name
...
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
3answers
53 views
Python: How can I check if an attribute of an object is a method or not?
I want to define a class with it's __repr__ method defined in such a way that it will write out only the names and values of all attributes that are not methods. How can I do this? I have managed to ...
0
votes
0answers
38 views
Why would this attribute update after one iteration, but not the rest?
class TISP:
def __init__ (self, x, y, w, k, l, it):
#predict is a 2d list of observed values
#actual is a 1d list corresponding to a 0-1 value normalized
#and descriptive of each ...
0
votes
2answers
38 views
AttributeError: 'Class' object has no attribute 'a'
Here I have an attribute 'a', which is defined in first class method and should be changed in second.
When calling them in order, this message appears:
AttributeError: 'Class' object has no ...
0
votes
2answers
36 views
Use loop to create variables python 3
Intro: I am using the tkinter module to create two windows, each as separate classes. I want to take the interger entered on the first window, and use it to create that number of labels and entries in ...
0
votes
2answers
43 views
Decorating methods with custom attributes that have properties
I've got some methods which have attributes (to use .Net terminology). Something like.
#Example Usage
@RequireLoggedIn
def SomeAuthorisedFunction():
# ...
The attribute is defined as
def ...
0
votes
4answers
166 views
Python 'AttributeError: 'function' object has no attribute 'min''
Firstly, apologies for how obvious these two questions seem to be; I'm very very new to this and don't have a clue what I'm doing.
I'm trying to write something to apply the Scipy function for spline ...
3
votes
5answers
70 views
“self.data” usage in python
Hello I have a question about attribute usage in Python. I learned that in function definition we can assign some new attributes for objects for example: self! However, when try to use that I got an ...
0
votes
2answers
38 views
decorator to set attributes of function
I want different functions to be executable only if the logged in user has the required permission level.
To make my life more complexly simply I want to use decorators. Below I attempy to set ...
0
votes
4answers
42 views
python attribute error?
I'm working on a simple python game in which the player attempts to guess letters contained in a word. The problem is, when I print a word, it's printing the \n at the end.
It looks like I need to ...
0
votes
2answers
51 views
Python Query 'module' object has no attribute 'test_func'
I am trying to create a new module and method as part of an existing library.
The existing library is called Bly.Pht. I create a new *.py file in this directory called Distance.py. In Distance.py I ...
4
votes
3answers
75 views
Attribute or Method?
I am writing a python script which calculates various quantities based on two parameters, the long radius and short radius of a spheroid. It occurred to me that I could write a spheroid class to do ...
3
votes
1answer
91 views
A class whose attributes are all optional
i created a class, whose attributes are all optional. At the moment, my code is thoroughly afflicted by try: ... except AttributeError: ... blocks, but I'm wondering if this is the best approach to ...
0
votes
1answer
66 views
ArcGIS Python tool for Reading Invidual Point attributes
I wish to create a python add-in tool, for ArcGIS, that work like the ArcGIS identify tool using python. The tool has to be such that when I click on a point or feature it brings reads specific ...
0
votes
1answer
118 views
AttributeError: 'module' object has no attribute 'window' [closed]
Alright, I've seen quite a few posts concerning mostly related issues, but none were a complete match for mine.
These are the specs of the software:
Python 3.3 (multiple copies, one on Windows XP 32 ...
1
vote
2answers
56 views
Strange Python 3 error [closed]
I'm pretty sure all of the code is correct; I believe the error may be a mistake with the installation files.
a,b = input('Enter in format number^power: ').split('^')
a = int (a)
b = int (b)
result = ...
0
votes
1answer
363 views
Python matplotlib decrease size of colorbar labels
I need your help! I have a plotting code which is the following:
fig = plt.figure()
ax1 = fig.add_subplot(111)
imax1 = ax1.imshow(data,interpolation = 'nearest', origin = 'lower',cmap=cm.jet)#plot
...
1
vote
2answers
49 views
Dynamic attribute assignment [duplicate]
I was trying out dynamic attribute assignment for testing purposes and discovered following behavior:
>>> class Foo(object): pass
...
>>> bar = Spam()
>>> bar.a = 1
...
1
vote
0answers
44 views
What is the right way to define attributes in python [duplicate]
what is the different between
class d():
d = None
def __init__(self):
.....
and:
class d():
def __init__(self):
self.d = None
0
votes
0answers
85 views
Add attribute to nltk grammar python
I'm creating a function refine(grammar) witch holds certain objectives.
Check if the grammar is on the nonlexical() form.
IF TRUE, create two attributes
grammar_rules => contains a list of all ...
3
votes
1answer
85 views
Attribute access in Python: first slots, then __dict__?
In the example below, attribute x is accessed from the slots of the object even though x is present in __dict__ (this is not a typical or probably useful case, but I'm curious):
>>> class ...
-1
votes
1answer
52 views
Python class error
from Card import Card
class Hand(object):
def __init__(self):
self.cards=[]
def takeCards(self, cards):
self.cards.append(card)
pass
...
4
votes
2answers
83 views
Difference between setting an attribute and calling an in-place mutating method?
I mainly use numpy for doing data analysis, do don't understand the underlying program well, so this might be obvious.
I don't understand the difference between setting an attribute by simply ...
0
votes
1answer
62 views
Python: instance attribute is deleted after shuffling
I have a trouble with a strange behaviour of numpy.random.shuffle function.
I add attribute to instances but it is erased after shuffling.
Here is a code illustrating the problem:
#I'm making a ...
1
vote
5answers
97 views
Python: How to get attribute of attribute of an object with getattr?
How do I evaluate
a = myobject.id.number
and return None if it myobject is None
with built-in getattr? Maybe getattr(myobject, "id.number", None)?
4
votes
6answers
124 views
Python: How to return a default value?
I have an object "myobject", which might return None. If it returns None, it won't return an attribute "id":
a = myobject.id
So when myobject is None, the stament above results in a AttributeError:
...
1
vote
4answers
99 views
in Python Class object, how to auto update attributes?
I have a class which has multiple attributes that are related, for example:
class SomeClass:
def __init__(self, n=0):
self.list = range(n)
self.listsquare = [ x**2 for x in self.a ...
4
votes
5answers
104 views
Can an attribute access another attribute?
I am at the very beginning with Python, and this is a very general question on the logic and implementation of classes. I apologize for the basic level of the question, but hopefully it will be useful ...
0
votes
2answers
61 views
python: multiple objects that can modify the attributes of a single 'master' object
Suppose I have a single instance of a master object that contains a set of parameters, then multiple instances of slave objects that should be able to access and modify the attributes of the master. ...
0
votes
2answers
56 views
Get the content of tag's attribute as a unicode string in BeautifulSoup 4
According to BeautifulSoup documentation, it is possible to get the value of tag's attribute by using a code which looks like this :
from bs4 import BeautifulSoup
soup = BeautifulSoup('<b ...
1
vote
5answers
85 views
Python and class attribute declarations [closed]
I have been told that declaring dynamic attributes within a classes scope is not the 'Python Way' but I do not understand why.
Could someone explain this to me or point me at some documentation as to ...
2
votes
1answer
83 views
Why does setattr and getattr allow whitespace?
Let's say I define this class:
class A:
pass
a = A()
Now obviously I can set attributes like so:
a.x = 5
But with setattr, I can give a attributes which contain whitespace in their names.
...
0
votes
2answers
32 views
Design class attributes to match inconsistent keys in Python
I had some difficulties to write my question, so I have maybe badly written my search queries, but I have not found anything that can help me.
I am trying to parse a file in the following way: I ...
0
votes
2answers
131 views
python __getattribute__ override and @property decorator
I had to write a class of some sort that overrides __getattribute__.
basically my class is a container, which saves every user-added property to self._meta which is a dictionary.
class ...
1
vote
1answer
62 views
Python instance attribute takes initial value from class attribute with the same name?
class bambino(object):
counter = 7
def __init__(self):
print("bambino.counter is self.counter ?", bambino.counter is self.counter)
self.counter += 1
...
0
votes
0answers
192 views
Python feedparser get xml attributes
I posted a question about parsing an XML with elementTree but I was advised to use feedParser instead as it is supposed to be better suited to my feed.
I am struggling though, I can't get information ...
0
votes
2answers
30 views
set one attribute equal to another
sorry about the novice question, but im fairly new to programming. my question is, when inheriting more attributes from a parent class than I need, how can I set one of those attributes equal to ...
0
votes
2answers
68 views
When is it appropriate to dynamically add attributes to a Python object?
I'm creating a Python class as an API to objects managed remotely via REST.
The REST API includes a call that returns a list of dictionaries that define properties of the remote objects. I'm in the ...
0
votes
2answers
171 views
Get root's attributes - elementtree
I've an XML <root> element with several attributes. I've been using the ElementTree package.
After I've parsed a tree from an xml file, I'm getting the document root, but how can I get the ...
2
votes
1answer
156 views
Elementtree setting attribute order
I am trying to write a python script to standardise generic XML files, used to configure websites and website forms. However to do this I would like to either maintain the original attribute ordering ...
0
votes
1answer
46 views
How to use __len__ method rapper, Python 3.x
I'm parsing an XML file, in which i use elements,currently my element name is __word__
In the elements I have an attribute called __attrs__,
When I debug I can see this __attrs__ has a method wrapper ...