| |
Methods defined here:
- __init__(self, encoding, fileending)
- This function initializes the helpers class with the needed parameters.
:param encoding: Encoding of the logfiles.
:param fileending: The fileformat of the logfiles.
- load_files(self)
- This function combines all logfiles inside the input directory into one file and removes the headers.
- read_file(self, filepath)
- This function takes the filepath of the combined logfile and reads each entry into an array of objects.
:param filepath: path to combine logfile
:return: array of all logentrys as Logentry objects
- write_file(self, filepath, data)
- This function takes a path and data und writes a file at the location with the data.
:param filepath: path to file, that should be saved
:param data: data to write to file
Static methods defined here:
- clean_up()
- This function deletes the old text reports and the combined file.
- clean_up_csv()
- This function deletes the old csv files.
- convert_date_into_weekday(input)
- This function takes a date as a string and returns a number representing the weekday
:param input: string with date in following format YYYY-MM-DD
:return: a number, which represents the weekday (0-6)
- convert_day_to_string(input)
- This functions converts a number of a weekday into its string.
:param input: number 0-6
:return: String with weekday
- create_directorys()
- This function generates the needed directorys, if they are missing.
- http_code_description(sc_status)
- This function takes an HTTP statuscode and adds its description.
:param sc_status: HTTP statuscode as integer
:return: A string with the HTTP statuscode and its description
Data descriptors defined here:
- __dict__
- dictionary for instance variables (if defined)
- __weakref__
- list of weak references to the object (if defined)
|