473,666 Members | 2,088 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 7107
> 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.sour ceforge.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.sour ceforge.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*@publicprope rtysoftware.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*****@easyst reet.com> wrote in message
news:3F******** *******@easystr eet.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*****@easystr eet.com wrote in message news:<3F******* *******@easystr eet.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*****@easystr eet.com wrote in message news:<3F******* *******@easystr eet.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
3647
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 we would be mutilating the language with that god forsaken @ decorator. I don't know about the rest of you, but I learned python and fell in love with its syntax and simplicity. Python - just works. So please GVR. Don't complicate it. Leave it as...
2
359
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/ software etc and rather than reinventing the wheel :) Cheers Mark
4
14482
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? TIA Randy
2
1917
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 when trying to retreive a file (mostly files over a 100MB) not sending it over http, but use some other (faster) way for that, like calling a batch script or something (I understand there are security issues to be dealt with), but using the local...
5
1910
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 Media Asset Management system (or is it Content Management System - MAM / CMS?). I googled around and found that there are a few available solutions for Mac OSX (i'm not completely sure if they will do exactly what we need), as well as some...
1
1650
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 implemented in a website using html and php. Kindly let me know. I will be ever grateful to u. Thank u karry
2
1555
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 any of them. It's not _totally_ clear about what "single-asset" means, but it gives the impression (and the term somewhat suggests) that this means there's a single executable that does all of this (compare to gcc's design, where support for...
1
2226
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 am struggling with how to do this since I am not savvy in actioncript. I assume the best way is to add it is with a CDATA child node, but do not know how or whatever is the best way to get this done since am on a tight deadline. I need someone to...
1
4410
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 am struggling with how to do this since I am not savvy in actioncript. I assume the best way is to add it is with a CDATA child node, but do not know how or whatever is the best way to get this done since am on a tight deadline. I need someone to...
0
8360
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8876
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8556
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
7387
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6198
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4198
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4371
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
2011
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1777
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.