Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Beercow authored Nov 4, 2022
1 parent fd39799 commit 16f3522
Show file tree
Hide file tree
Showing 40 changed files with 1,721 additions and 359 deletions.
Binary file added OneDriveExplorer/Images/PDF-16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added OneDriveExplorer/Images/PNG-16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added OneDriveExplorer/Images/favicon.ico
Binary file not shown.
Binary file added OneDriveExplorer/Images/format_normal.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added OneDriveExplorer/Images/language_blue.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added OneDriveExplorer/Images/ode.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added OneDriveExplorer/Images/ode_small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added OneDriveExplorer/Images/question.ico
Binary file not shown.
Binary file added OneDriveExplorer/Images/question_small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified OneDriveExplorer/Images/splashv.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added OneDriveExplorer/Images/table_sort_asc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added OneDriveExplorer/Images/table_sort_desc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added OneDriveExplorer/Images/windows_tile.ico
Binary file not shown.
9 changes: 5 additions & 4 deletions OneDriveExplorer/OneDriveExplorer.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@
from ode.renderers.json import print_json
from ode.renderers.csv_file import print_csv
from ode.renderers.html import print_html
from ode.parsers.dat_new import parse_dat
from ode.parsers.dat import parse_dat
from ode.parsers.onedrive import parse_onedrive
from ode.parsers.odl import parse_odl
from ode.parsers.odl import parse_odl, load_cparser

logging.basicConfig(level=logging.INFO,
format='\n\n%(asctime)s, %(levelname)s, %(message)s\n',
datefmt='%Y-%m-%d %H:%M:%S'
)

__author__ = "Brian Maloney"
__version__ = "2022.06.17"
__version__ = "200.11.04"
__email__ = "[email protected]"
rbin = []

Expand Down Expand Up @@ -79,7 +79,7 @@ def output():
parser.add_argument("-rb", "--RECYCLE_BIN", help="$Recycle.Bin")
parser.add_argument("--csv", help="Directory to save CSV formatted results to. Be sure to include the full path in double quotes.")
parser.add_argument("--csvf", help="File name to save CSV formatted results to. When present, overrides default name.")
parser.add_argument("--html", help="Directory to save xhtml formatted results to. Be sure to include the full path in double quotes.")
parser.add_argument("--html", help="Directory to save html formatted results to. Be sure to include the full path in double quotes.")
parser.add_argument("--json", help="Directory to save json representation to. Use --pretty for a more human readable layout.")
parser.add_argument("--pretty", help="When exporting to json, use a more human readable layout. Default is FALSE", action='store_true')
parser.add_argument("--debug", help="Show debug information during processing.", action='store_true')
Expand Down Expand Up @@ -206,6 +206,7 @@ def output():
output()

if args.logs:
load_cparser()
for key, value in d.items():
for k, v in value.items():
if k == 'logs':
Expand Down
Loading

0 comments on commit 16f3522

Please sign in to comment.