1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
/*
* Argus-5.0 Client Software. Tools to read, analyze and manage Argus data.
* Copyright (c) 2000-2024 QoSient, LLC
* All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
Argus-5.0 Pythonlib
QoSient, LLC
argus@qosient.com
http://openargus.org
This directory contains source code for the core python library
for processing binary and csv,json argus data, and to make
available the argus clients library routines to python scripts.
-rw-r--r-- 1 carter staff 2462 Jan 31 11:20 Makefile
-rw-r--r-- 1 carter staff 2425 Jan 31 11:19 Makefile.in
-rw-r--r-- 1 carter staff 2393 Jan 31 13:44 README
-rw-r--r-- 1 carter staff 143392 Jan 31 11:19 argusPython.c
-rw-r--r-- 1 carter staff 34675 Jan 31 11:19 argusPython.h
-rw-r--r-- 1 carter staff 648 Jan 31 11:19 argusPython.i
-rw-r--r-- 1 carter staff 1052 Jan 31 11:19 argusPython.test.py
-rw-r--r-- 1 carter staff 13549662 Jan 31 11:19 myFlow.csv
-rw-r--r-- 1 carter staff 104507 Jan 31 11:19 numpy.i
-rw-r--r-- 1 carter staff 1152 Jan 31 11:19 setup.py
-rw-r--r-- 1 carter staff 217 Jan 31 11:19 test.py
The key to generating a working python library is to provide
acccess to the key python libraries needed, in particular,
the tensorflow_framework. This may require some hand editing to
get the path correct, at this time if you have a non-standard
python install ...
This library assumes that you have installed:
python3-devel
numpy (pip install numpy)
libcurl-devel
Problems, bugs, questions, desirable enhancements, source code
contributions, etc., should be sent to the Argus mailing list
email address, "argus-info@lists.andrew.cmu.edu".
************************************************************
IMPORTANT:
Send bug (error) reports, questions and comments to the mailing
list at argus-info@lists.andrew.cmu.edu.
Please use the './bin/argusclientbug' script when posting bug reports
about Argus clients. Argusclientbug will gather some information about your
system and start your editor with a form in which you can describe
your problem. Delete information that you consider non-relevant
to your problem. Bug reports not generated by Argusbug might
be silently ignored by the Argus maintainers, so please use the
tool. A report that says 'Argus does not work. Why?' will
not be considered a valid bug report.
************************************************************
Carter Bullard
carter@qosient.com
|