Metadata-Version: 1.1
Name: acs-student-attendance
Version: 1.0.1
Summary: Console app and Python API for analyzing and reporting the lab attendance of our ACS students
Home-page: https://bitbucket.org/petar/acs_student_attendance
Author: Petar Maric
Author-email: petarmaric@uns.ac.rs
License: BSD
Description: About
        =====
        
        Console app and Python API for analyzing and reporting the lab attendance of our
        `ACS`_ students.
        
        .. _`ACS`: http://www.acs.uns.ac.rs/
        
        
        Installation
        ============
        
        To install acs_student_attendance run::
        
            $ pip install acs_student_attendance
        
        
        Console app usage
        =================
        
        Quick start::
        
            $ acs_student_attendance stud_auth.log semester-config.yml
        
        Show help::
        
            $ acs_student_attendance --help
        
        
        Python API usage
        ================
        
        Quick start::
        
            >>> from acs_student_attendance.analysis import StudentAttendanceAnalysisWithExport
            >>> log_lines = open('stud_auth.log')
            >>> analyzer = StudentAttendanceAnalysisWithExport('semester-config.yml')
            >>> results = analyzer(log_lines)
        
        
        Contribute
        ==========
        
        If you find any bugs, or wish to propose new features `please let us know`_. 
        
        If you'd like to contribute, simply fork `the repository`_, commit your changes
        and send a pull request. Make sure you add yourself to `AUTHORS`_.
        
        .. _`please let us know`: https://bitbucket.org/petar/acs_student_attendance/issues/new
        .. _`the repository`: http://bitbucket.org/petar/acs_student_attendance
        .. _`AUTHORS`: https://bitbucket.org/petar/acs_student_attendance/src/default/AUTHORS
        
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Education
Classifier: Topic :: Utilities
