Connecting Tech Pros Worldwide Forums | Help | Site Map

money data type

Stephan Diehl
Guest
 
Posts: n/a
#1: Jun 27 '08
Hi lazyweb,
I'm wondering, if there is a usable money data type for python available.
A quick search in pypi and google didn't convey anything, even though the
decimal data type seemed to be planned as a money data type originaly.
Thanks for any pointers

Stephan

Lie
Guest
 
Posts: n/a
#2: Jun 27 '08

re: money data type


On Jun 9, 10:22*pm, Stephan Diehl <stephan.di...@gmx.netwrote:
Quote:
Hi lazyweb,
I'm wondering, if there is a usable money data type for python available.
A quick search in pypi and google didn't convey anything, even though the
decimal data type seemed to be planned as a money data type originaly.
Thanks for any pointers
>
Stephan
What is it that you feel is lacking in the decimal datatype that makes
you feel you require a money datatype?
Decimal datatype was a general purpose fixed-point number, which is
usually the behavior required for money calculation, but it's not
named 'money' because this behavior isn't only useful for money
calculation, so they don't name it money.
Stephan Diehl
Guest
 
Posts: n/a
#3: Jun 27 '08

re: money data type


Lie wrote:
Quote:
On Jun 9, 10:22Â*pm, Stephan Diehl <stephan.di...@gmx.netwrote:
Quote:
>Hi lazyweb,
>I'm wondering, if there is a usable money data type for python available.
>A quick search in pypi and google didn't convey anything, even though the
>decimal data type seemed to be planned as a money data type originaly.
>Thanks for any pointers
>>
>Stephan
>
What is it that you feel is lacking in the decimal datatype that makes
you feel you require a money datatype?
Decimal datatype was a general purpose fixed-point number, which is
usually the behavior required for money calculation, but it's not
named 'money' because this behavior isn't only useful for money
calculation, so they don't name it money.
I'm actually quite sure that the decimal data type will be sufficient for
what I plan to do, but in a general setting, one would need currency
support, maybe different rounding rules for different currencies, exchange
rates, etc.



Lie
Guest
 
Posts: n/a
#4: Jun 27 '08

re: money data type


On Jun 10, 12:02*am, Stephan Diehl <stephan.di...@gmx.netwrote:
Quote:
Lie wrote:
Quote:
On Jun 9, 10:22*pm, Stephan Diehl <stephan.di...@gmx.netwrote:
Quote:
Hi lazyweb,
I'm wondering, if there is a usable money data type for python available.
A quick search in pypi and google didn't convey anything, even though the
decimal data type seemed to be planned as a money data type originaly.
Thanks for any pointers
>
Quote:
Quote:
Stephan
>
Quote:
What is it that you feel is lacking in the decimal datatype that makes
you feel you require a money datatype?
Decimal datatype was a general purpose fixed-point number, which is
usually the behavior required for money calculation, but it's not
named 'money' because this behavior isn't only useful for money
calculation, so they don't name it money.
>
I'm actually quite sure that the decimal data type will be sufficient for
what I plan to do, but in a general setting, one would need currency
support, maybe different rounding rules for different currencies, exchange
rates, etc.
Shane Geiger wrote to me:
This might be all you need:
http://aspn.activestate.com/ASPN/doc...l-recipes.html

Possibly he mistakenly press "Reply to Author" instead of "Reply" (if
he's accessing the mailing list from Google Groups)
Closed Thread


Similar Python bytes