#!/usr/bin/python # -*- coding: utf-8 -*- #=====================================================================================================================# #====== Meta =======================================================================================================# #=====================================================================================================================# ''' Description: This area is for notes about the program/script and, if appropriate, should explain what the code does. It would also be prudent to list bugs and any action items still outstanding. Keywords: python, template Depends On: os, sys Depended On By: n/a Usage Example: execfile("PyscriptTemplate.py") Development Status: Pseudo-Code ___ In-Development _X_ Beta ___ Alpha ___ Known Bugs: n/a ''' #=====================================================================================================================# #====== Modules ====================================================================================================# #=====================================================================================================================# import os, sys #=====================================================================================================================# #====== Set Pointers and Declare Global Variables ==================================================================# #=====================================================================================================================# matches = [] #=====================================================================================================================# #====== Functions ==================================================================================================# #=====================================================================================================================# def findPythonFiles(folderPath): for file in os.listdir(folderPath): if file.endswith(('.py','.pyc')): matches.append(file) return matches #=====================================================================================================================# #====== Main =======================================================================================================# #=====================================================================================================================# # N/A