We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Symbol | |
US5949181045 | |
US0378331005 | |
US67066G1040 | |
US0231351067 | |
US02079K3059 | |
US30303M1027 | |
US02079K1079 | |
US5324571083 | |
US11135F1012 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Arch: win64 | |
Creation_Date: | |
Custom_Path: false | |
DLL_Overrides: {} | |
DXVK: | |
Environment: Custom | |
Environment_Variables: {} | |
Installed_Dependencies: | |
- allfonts | |
- dotnet40 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This Script uses the following dependancies | |
# pip install nums_from_string | |
# | |
# To Run this script type: | |
# python snow.py <Log File Name> | |
# | |
# Example: | |
# python snow.py snow.log | |
# | |
# Written By Allstreamer_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
import re | |
#Text to be Encoded | |
text = "This is a test sentance this should come out garbled but readable" | |
#Regex to strip out any special characters | |
regex = re.compile('[^a-zA-Z ]') | |
cleaned = regex.sub('', text) |