24 lines
756 B
Python
24 lines
756 B
Python
#!~/.pyenv/versions/3.11.6/bin/python
|
|
#
|
|
# Copyright (c) 2024 Cutieguwu | Olivia Brooks
|
|
#
|
|
# -*- coding:utf-8 -*-
|
|
# @Title: CutieDecryptor
|
|
# @Author: JellieJayde | Jayde Paquette
|
|
# @Collaborator: Cutieguwu | Olivia Brooks
|
|
# @Email: owen.brooks77@gmail.com | obroo2@ocdsb.ca
|
|
# @Description: Parses an encrypted file for patterns and characteristics.
|
|
#
|
|
# @Script: CutieParser.py
|
|
# @Date Created: 10 Apr, 2024
|
|
# @Last Modified: 15 Apr, 2024
|
|
# @Last Modified by: Cutieguwu | Olivia Brooks
|
|
|
|
# ----------------------------------------------------------
|
|
#
|
|
# Note: Script cannot be called "parser" as that clashes with stdlib module parser.
|
|
#
|
|
# ----------------------------------------------------------
|
|
|
|
with open("dataReference.txt", "r") as f:
|
|
data = f.read() |