Python Forum
Can Python Do This? Asset Management
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Can Python Do This? Asset Management
#2
Goals:
  • allow user to input assets into sqlite database
    look at using sqlite with SQLAlchemy, It will make your life easier with models.
    plain sqlite will work as well, just easier to maintain with SQLalchemy
  • assets should have the attributes of asset_type,asset_id,serial_number,hostname,ip_addr,location,os_version and confirmation for new addition
    look at other systems, decide what tables you need and the fields in them, then build routines to maintain each.
  • asset should be able to be removed with one click and confirmation
    easy python task
  • would like to ping asset with 1-click box beside asset to see if asset is online
    easy python task
  • would like to use the rdp protocol to remote into asset
    there are many packages to help with this. see: https://pypi.org/search/?q=rdp
  • should have a easy to view dashboard which can be accessed via web-gui. This would be able to import/export existing assets from a csv file into database
    My choice would be wxpython
    The best way to sample what's availaable in to install wxpython [inline]pip install wxpython[inline]
    Then download demo code here: https://github.com/wxWidgets/Phoenix/
    run demo with python demo.py run from wxpython phoenix source directory
    PyQt5 is probably the best option, but may have to pay fees if you ever decide to make it a paid for product
mbaker_wv likes this post
Reply


Messages In This Thread
Can Python Do This? Asset Management - by mbaker_wv - Oct-28-2020, 02:06 AM
RE: Can Python Do This? Asset Management - by Larz60+ - Oct-28-2020, 02:49 AM
RE: Can Python Do This? Asset Management - by buran - Oct-28-2020, 05:30 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  code management trix 3 777 Oct-23-2023, 05:29 PM
Last Post: buran
  Keep getting Session management error when running imshow in pycharm pace 0 2,232 Mar-25-2021, 10:06 AM
Last Post: pace
  User management library? MuntyScruntfundle 0 1,527 Jan-14-2020, 02:01 PM
Last Post: MuntyScruntfundle
  Too big CSV file management CaptainCsaba 3 2,309 Sep-10-2019, 05:52 AM
Last Post: CaptainCsaba
  flux management chris_thibault 3 2,970 Sep-10-2018, 10:23 AM
Last Post: chris_thibault

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020