472,358 Members | 1,845 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,358 software developers and data experts.

Python for Asset Management!

Hi!

Im working on some research for a asset management system. We will use
python as our primary platform. As a opensource programmer the obvious
question is; are there any opensource systems available?

I found an article about ilm's system (story from python.org), sounds
very interesting. Im looking for more information about similar
systems (of course python based!), all feedback is welcome!

I hope there's someone outthere who knows some more about this!

Thanks!

-- Mike
Jul 18 '05 #1
8 6886
> Im working on some research for a asset management system. We will use
python as our primary platform. As a opensource programmer the obvious
question is; are there any opensource systems available?


if you start with Python, please immediately go to
fixedpoint.sourceforge.net and load that module down!

it is ABSOLUTELY great, and it really is a must in developing financial
applications
Harald
*ceterum censeo, fixedpoint should be added to the standard library*

Jul 18 '05 #2
Harald Massa wrote:
Im working on some research for a asset management system. We will use
python as our primary platform. As a opensource programmer the obvious
question is; are there any opensource systems available?


if you start with Python, please immediately go to
fixedpoint.sourceforge.net and load that module down!

it is ABSOLUTELY great, and it really is a must in developing financial
applications


Asset management doesn't _necessarily_ have anything to do with
financial applications. Depending on their needs, they may want
nothing more than to track serial numbers, locations, warranty
remaining, item history, and such things. What little financial
data I'd want in an asset management tool could be represented
as strings...

-Peter
Jul 18 '05 #3
There is a fairly lame asset management demo that comes or came with
MS Office, written in Access, IIRC. You might start with that and
convert it to python.

Having written a fairly big asset-management package myself, IDK why
anyone would really want to do this. You can find various shareware
packages starting about $15 and up. Good commercial packages, like
mine, can be had for around $1,000 and up. (My product is targeted
at a specific niche, so I am not in any way suggesting that it is
what you need.)

Meanwhile, MS has acquired some companies that do accounting packages
and offers some complete accounting packages that include fixed assets
for around $5,000 IIRC. They have been trying to offer some nearly-
complete packages for around $1,500 that have not included fixed
assets, but that might change at their whim, depending. It's very
hard to compete with MS when the user has MS all over their desktop,
and that's almost everyone for such markets. All of these numbers I
throw about casually are trivial compared to the costs of writing
anything good.

The accounting aspects can be the most interesting to program and there
are some complexities that might make good use of the highly-dynamic
nature of python. For example, most of the full-featured systems
facilitate setting up multiple sets of books covering the same
set of assets (for example, depreciation is different on the tax
return from depreciation reported to shareholders). With multiple
sets of books, multiple accounting rules, schedules, rates, and
policies, something like AOP might be a way to keep all the different
considerations from tangling things up beyond belief.

It's the old software designer problem of how to do something
without doing anything, no matter how dumb.

My goal in developing my fixed assets software was to be able to give
the user a program with a desktop look-and-feel that would be able to
do batch processing of up to 50,000 asseets without more than a minute
or two wait, and thus we didn't use Python. However, I have found
python to be very useful for helping convert customer data from other
systems into mine.

al*@publicpropertysoftware.com
Mike wrote:

Hi!

Im working on some research for a asset management system. We will use
python as our primary platform. As a opensource programmer the obvious
question is; are there any opensource systems available?

I found an article about ilm's system (story from python.org), sounds
very interesting. Im looking for more information about similar
systems (of course python based!), all feedback is welcome!

I hope there's someone outthere who knows some more about this!

Thanks!

-- Mike

Jul 18 '05 #4

<ac*****@easystreet.com> wrote in message
news:3F***************@easystreet.com...

[snip interesting status review of fixed asset software]
My goal in developing my fixed assets software was to be able to give
the user a program with a desktop look-and-feel that would be able to
do batch processing of up to 50,000 asseets without more than a minute
or two wait, and thus we didn't use Python.


I don't agree with your "... and thus..." conclusion. Python with Numeric
and the gui kit that matches your taste is easily up to this task.

For comparison, I've written a python+zope based application that juggles
sales data and provides sub-15 second response time recapping 1M+ records of
~180cols. Sub-selections from any combination of 20 parameters speed things
up further.

With that in mind, doing month-end fixed-asset depreciation schedule
calculations on three sets of books using any of a half dozen or so selected
depreciation methods for a department, division, or company should _always_
be sub-minute.

Emile van Sebille
em***@fenx.com
Jul 18 '05 #5
Emile van Sebille wrote:


I don't agree with your "... and thus..." conclusion. Python with Numeric
and the gui kit that matches your taste is easily up to this task.

For comparison, I've written a python+zope based application that juggles
sales data and provides sub-15 second response time recapping 1M+ records of
~180cols. Sub-selections from any combination of 20 parameters speed things
up further.


I didn't say it couldn't be done, but I sure didn't want to lose any
sleep figuring out how to do it. This project was done 3 years ago,
we were selling into a market with many slow and old computers about,
and we were dealing with people who like paper, so we wanted to create
pretty reports way up around 1000 pages without any major delay.

Maybe next time we'll do something like this in Python.
Al
Jul 18 '05 #6
thank you all for the replies, very useful!

Our system will primary handle file assets and disk tracking...it will
all be command line at first, then different UI's will be designed...

We already have most of the system written in c/c++, this is okey but
I want to add platform independance and I like the way python handles
different libraries, and its opensource!

So why dont we buy some commercial software? well, we want 100% access
to the source, and we also want to add modules to the system for each
new project.

I will take a look at links and information you all provided, really
useful! Advice on how to setup a system like this is also welcome,
should I use a server/client solution, or just clients accessing the
backbone(db) directly? all of your feedback is interesting, user
experience is unvaluable!

thanks!

-- Mike

ac*****@easystreet.com wrote in message news:<3F**************@easystreet.com>...
Emile van Sebille wrote:


I don't agree with your "... and thus..." conclusion. Python with Numeric
and the gui kit that matches your taste is easily up to this task.

For comparison, I've written a python+zope based application that juggles
sales data and provides sub-15 second response time recapping 1M+ records of
~180cols. Sub-selections from any combination of 20 parameters speed things
up further.


I didn't say it couldn't be done, but I sure didn't want to lose any
sleep figuring out how to do it. This project was done 3 years ago,
we were selling into a market with many slow and old computers about,
and we were dealing with people who like paper, so we wanted to create
pretty reports way up around 1000 pages without any major delay.

Maybe next time we'll do something like this in Python.
Al

Jul 18 '05 #7
thank you all for the replies, very useful!

Our system will primary handle file assets and disk tracking...it will
all be command line at first, then different UI's will be designed...

We already have most of the system written in c/c++, this is okey but
I want to add platform independance and I like the way python handles
different libraries, and its opensource!

So why dont we buy some commercial software? well, we want 100% access
to the source, and we also want to add modules to the system for each
new project.

I will take a look at links and information you all provided, really
useful! Advice on how to setup a system like this is also welcome,
should I use a server/client solution, or just clients accessing the
backbone(db) directly? all of your feedback is interesting, user
experience is unvaluable!

thanks!

-- Mike

ac*****@easystreet.com wrote in message news:<3F**************@easystreet.com>...
Emile van Sebille wrote:


I don't agree with your "... and thus..." conclusion. Python with Numeric
and the gui kit that matches your taste is easily up to this task.

For comparison, I've written a python+zope based application that juggles
sales data and provides sub-15 second response time recapping 1M+ records of
~180cols. Sub-selections from any combination of 20 parameters speed things
up further.


I didn't say it couldn't be done, but I sure didn't want to lose any
sleep figuring out how to do it. This project was done 3 years ago,
we were selling into a market with many slow and old computers about,
and we were dealing with people who like paper, so we wanted to create
pretty reports way up around 1000 pages without any major delay.

Maybe next time we'll do something like this in Python.
Al

Jul 18 '05 #8
Mike wrote:
thank you all for the replies, very useful!

Our system will primary handle file assets and disk tracking...it will
all be command line at first, then different UI's will be designed...
OK, so make sure to build a separate "engine" process (I would suggest
running it as a daemon serving xml-rpc) and "UI" processes (so the GUI,
commandline, web, ..., will all be different programs which access the
same daemon server and ONLY provide user interfacing).

We already have most of the system written in c/c++, this is okey but
I want to add platform independance and I like the way python handles
different libraries, and its opensource!
Sure. you can access your existing C-coded functionality via SWIG, or
C++ coded functionality with Boost (or vice versa, but I find Boost
easiest for C++ interfacing, SWIG for C interfacing, personally).

So why dont we buy some commercial software? well, we want 100% access
to the source, and we also want to add modules to the system for each
new project.
Sure, why go closed source if you can avoid it. Note that you can
also get open source software commercially if you need support &c (as
to whether you prefer to SAVE those $$$, that's a different issue).

I will take a look at links and information you all provided, really
useful! Advice on how to setup a system like this is also welcome,
should I use a server/client solution, or just clients accessing the
backbone(db) directly? all of your feedback is interesting, user
experience is unvaluable!


I would write the central engine as an xml-rpc server and give it
exclusive access to "the backbone db" (except for such "offline"
bulk operations as db dumps/restores, to be presumably performed
by different administrative access). This way you can alter the
central DB without recoding all clients, etc -- the clients will
just be xml-rpc clients and you need only maintain that interface
to leave old clients unaltered. Should the central engine ever
become a bottleneck, running it on (e.g.) a 3GHz / gargantuan
caching / multiGB fast DDR dedicated AMD-64bit box, with the DB
on a nearby similarly overblown puppy with the fastest SCSI disks,
and a gigabit Ethernet in between, will provide you quite a bit of
headroom -- you may never feel a need to spread it over multiple
boxes with the attendand cache-consistency headaches (perhaps some
particularly nasty and strictly computational bottleneck might be
hied off, but from your description of your system you're unlikely
to ever get any). If you DO think in terms of scalability to
thousands or tens of thousands of concurrent accesses then some
even-more-multilayered architecture may be worth considering from
the start, but I would advise against getting too ambitious in
these terms for a budding system -- there is a real risk that by
not wanting to build anything unless it can scale up by hundreds
of times you may end up not building anything useful at all...;-).
Alex

Jul 18 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

47
by: Michael Scarlett | last post by:
There is an amazing article by paul graham about python, and an even better discussion about it on slashdot. The reason I point this out, is the more I read both articles, the more I realised how...
2
by: Mark | last post by:
Hi, does anyone know of some open source asset management software developed using the .NET framework?? Our IT department needs some software written that keeps track of computers/ printers/...
4
by: Randy Harris | last post by:
I need to set up an application in Access to track computer systems (hardware, software, networking details, lease info, etc). Would someone please recommend a good template to get started with? ...
2
by: JHN | last post by:
Hi all, I'm planning on building an asset management tool for our local network. I have a question I would like to ask: Is it possible to use PHP/MYSQL/JS etc. as a "metadata" structure and...
5
by: ateale | last post by:
Hi Guys, I work for a small television commercial post-production facility in Bangkok, Thailand. We are in the process of setting up our workflow management and are now looking to buy/build a...
1
by: karry555 | last post by:
Hi guys... this is a sincere request and requirement.. i need serious help for doing this project using html and php along with MySql. I Need DAMS(Digital Asset Management System) to be...
2
by: Jean-Paul Calderone | last post by:
On Wed, 14 May 2008 06:53:02 -0400, "J. Clifford Dyer" <jcd@sdf.lonestar.orgwrote: The web page explains. It's a compiler that runs on 8 platforms and can generate executables for any of them on...
1
by: danka21819 | last post by:
Hi, I am a front end web designer/developer and analyst...struggling with putting an accordian flash xml menu together. I have it done except I need to add a simple trademark symbol circle with r. I...
1
by: danka21819 | last post by:
Hi, I am a front end web designer/developer and analyst...struggling with putting an accordian flash xml menu together. I have it done except I need to add a simple trademark symbol circle with r. I...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge required to effectively administer and manage Oracle...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was proposed, which integrated multiple engines and...
2
by: Matthew3360 | last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it so the python app could use a http request to get...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and...
1
by: Matthew3360 | last post by:
Hi, I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web server and have made sure to enable curl. I get a...
0
by: Carina712 | last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand. Background colors can be used to highlight important...
0
BLUEPANDA
by: BLUEPANDA | last post by:
At BluePanda Dev, we're passionate about building high-quality software and sharing our knowledge with the community. That's why we've created a SaaS starter kit that's not only easy to use but also...
0
by: Rahul1995seven | last post by:
Introduction: In the realm of programming languages, Python has emerged as a powerhouse. With its simplicity, versatility, and robustness, Python has gained popularity among beginners and experts...
0
by: Ricardo de Mila | last post by:
Dear people, good afternoon... I have a form in msAccess with lots of controls and a specific routine must be triggered if the mouse_down event happens in any control. Than I need to discover what...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.