| |
- createInitFile()
- Create the __init__.py file.
- getDoubleAfterFirstLetter(word)
- Get the double value of the word after the first letter.
Keyword arguments:
word -- string with value starting after the first letter
- getDoubleForLetter(letter, splitLine)
- Get the double value of the word after the first occurence of the letter in the split line.
- getDoubleFromCharacterSplitLineValue(character, splitLine, value)
- Get the double value of the string after the first occurence of the character in the split line.
- getFeedrateMinute(feedrateMinute, splitLine)
- Get the feedrate per minute if the split line has a feedrate.
- getFileText(filename, readMode='r')
- Get the entire text of a file.
- getFilesWithFileTypeWithoutWords(fileType, words=[], fileInDirectory='')
- Get files which have a given file type, but with do not contain a word in a list.
Keyword arguments:
fileType -- file type required
words -- list of words which the file must not have
- getFilesWithFileTypesWithoutWords(fileTypes, words=[], fileInDirectory='')
- Get files which have a given file type, but with do not contain a word in a list.
Keyword arguments:
fileType -- file types required
words -- list of words which the file must not have
- getFirstWord(splitLine)
- Get the first word of a split line.
- getGcodeFileText(filename, gcodeText)
- Get the gcode text from a file if it the gcode text is empty and if the file is a gcode file.
- getLocationFromSplitLine(oldLocation, splitLine)
- Get the location from the split line.
- getModule(filename, folderName, moduleFilename)
- Get the module from the filename and folder name.
- getPluginFilenames(folderName, moduleFilename)
- Get the filenames of the python plugins in the export_plugins folder.
- getPythonDirectoryNames(directoryName)
- Get the python directories.
- getPythonDirectoryNamesRecursively(directoryName='')
- Get the python directories recursively.
- getPythonFilenamesExceptInit(fileInDirectory='')
- Get the python filenames of the directory which the fileInDirectory is in, except for the __init__.py file.
- getPythonFilenamesExceptInitRecursively(directoryName='')
- Get the python filenames of the directory recursively, except for the __init__.py files.
- getSummarizedFilename(filename)
- Get the filename basename if the file is in the current working directory, otherwise return the original full name.
- getTextLines(text)
- Get the all the lines of text of a text.
- getUnmodifiedGCodeFiles(fileInDirectory='')
- Get gcode files which are not modified.
- indexOfStartingWithSecond(letter, splitLine)
- Get index of the first occurence of the given letter in the split line, starting with the second word. Return - 1 if letter is not found
- isFileWithFileTypeWithoutWords(fileType, filename, words)
- Determine if file has a given file type, but with does not contain a word in a list.
Keyword arguments:
fileType -- file type required
filename -- name of the file
words -- list of words which the filename must not have
- isProcedureDone(gcodeText, procedure)
- Determine if the procedure has been done on the gcode text.
- replaceWords(filenames, original, replacement)
- Replace in files the original with the replacement.
- writeFileMessageEnd(end, filename, fileText, message)
- Write to a filename with a suffix and print a message.
- writeFileText(filename, fileText, writeMode='w+')
- Write a text to a file.
|