Instructions to use ModelForge/spam-classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Scikit-learn
How to use ModelForge/spam-classifier with Scikit-learn:
from huggingface_hub import hf_hub_download import joblib model = joblib.load( hf_hub_download("ModelForge/spam-classifier", "sklearn_model.joblib") ) # only load pickle files from sources you trust # read more about it here https://skops.readthedocs.io/en/stable/persistence.html - Notebooks
- Google Colab
- Kaggle
Sam Chaudry commited on
Delete venv
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- venv/bin/Activate.ps1 +0 -247
- venv/bin/activate +0 -69
- venv/bin/activate.csh +0 -26
- venv/bin/activate.fish +0 -69
- venv/bin/f2py +0 -8
- venv/bin/huggingface-cli +0 -8
- venv/bin/normalizer +0 -8
- venv/bin/numpy-config +0 -8
- venv/bin/pip +0 -8
- venv/bin/pip3 +0 -8
- venv/bin/pip3.11 +0 -8
- venv/bin/python +0 -3
- venv/bin/python3 +0 -3
- venv/bin/python3.11 +0 -3
- venv/bin/tqdm +0 -8
- venv/lib/python3.11/site-packages/PyYAML-6.0.2.dist-info/INSTALLER +0 -1
- venv/lib/python3.11/site-packages/PyYAML-6.0.2.dist-info/LICENSE +0 -20
- venv/lib/python3.11/site-packages/PyYAML-6.0.2.dist-info/METADATA +0 -46
- venv/lib/python3.11/site-packages/PyYAML-6.0.2.dist-info/RECORD +0 -43
- venv/lib/python3.11/site-packages/PyYAML-6.0.2.dist-info/WHEEL +0 -5
- venv/lib/python3.11/site-packages/PyYAML-6.0.2.dist-info/top_level.txt +0 -2
- venv/lib/python3.11/site-packages/__pycache__/six.cpython-311.pyc +0 -0
- venv/lib/python3.11/site-packages/__pycache__/threadpoolctl.cpython-311.pyc +0 -0
- venv/lib/python3.11/site-packages/__pycache__/typing_extensions.cpython-311.pyc +0 -3
- venv/lib/python3.11/site-packages/_distutils_hack/__init__.py +0 -222
- venv/lib/python3.11/site-packages/_distutils_hack/__pycache__/__init__.cpython-311.pyc +0 -0
- venv/lib/python3.11/site-packages/_distutils_hack/__pycache__/override.cpython-311.pyc +0 -0
- venv/lib/python3.11/site-packages/_distutils_hack/override.py +0 -1
- venv/lib/python3.11/site-packages/_yaml/__init__.py +0 -33
- venv/lib/python3.11/site-packages/_yaml/__pycache__/__init__.cpython-311.pyc +0 -0
- venv/lib/python3.11/site-packages/certifi-2025.4.26.dist-info/INSTALLER +0 -1
- venv/lib/python3.11/site-packages/certifi-2025.4.26.dist-info/METADATA +0 -78
- venv/lib/python3.11/site-packages/certifi-2025.4.26.dist-info/RECORD +0 -14
- venv/lib/python3.11/site-packages/certifi-2025.4.26.dist-info/WHEEL +0 -5
- venv/lib/python3.11/site-packages/certifi-2025.4.26.dist-info/licenses/LICENSE +0 -20
- venv/lib/python3.11/site-packages/certifi-2025.4.26.dist-info/top_level.txt +0 -1
- venv/lib/python3.11/site-packages/certifi/__init__.py +0 -4
- venv/lib/python3.11/site-packages/certifi/__main__.py +0 -12
- venv/lib/python3.11/site-packages/certifi/__pycache__/__init__.cpython-311.pyc +0 -0
- venv/lib/python3.11/site-packages/certifi/__pycache__/__main__.cpython-311.pyc +0 -0
- venv/lib/python3.11/site-packages/certifi/__pycache__/core.cpython-311.pyc +0 -0
- venv/lib/python3.11/site-packages/certifi/cacert.pem +0 -0
- venv/lib/python3.11/site-packages/certifi/core.py +0 -114
- venv/lib/python3.11/site-packages/certifi/py.typed +0 -0
- venv/lib/python3.11/site-packages/charset_normalizer-3.4.2.dist-info/INSTALLER +0 -1
- venv/lib/python3.11/site-packages/charset_normalizer-3.4.2.dist-info/METADATA +0 -731
- venv/lib/python3.11/site-packages/charset_normalizer-3.4.2.dist-info/RECORD +0 -35
- venv/lib/python3.11/site-packages/charset_normalizer-3.4.2.dist-info/WHEEL +0 -6
- venv/lib/python3.11/site-packages/charset_normalizer-3.4.2.dist-info/entry_points.txt +0 -2
- venv/lib/python3.11/site-packages/charset_normalizer-3.4.2.dist-info/licenses/LICENSE +0 -21
venv/bin/Activate.ps1
DELETED
|
@@ -1,247 +0,0 @@
|
|
| 1 |
-
<#
|
| 2 |
-
.Synopsis
|
| 3 |
-
Activate a Python virtual environment for the current PowerShell session.
|
| 4 |
-
|
| 5 |
-
.Description
|
| 6 |
-
Pushes the python executable for a virtual environment to the front of the
|
| 7 |
-
$Env:PATH environment variable and sets the prompt to signify that you are
|
| 8 |
-
in a Python virtual environment. Makes use of the command line switches as
|
| 9 |
-
well as the `pyvenv.cfg` file values present in the virtual environment.
|
| 10 |
-
|
| 11 |
-
.Parameter VenvDir
|
| 12 |
-
Path to the directory that contains the virtual environment to activate. The
|
| 13 |
-
default value for this is the parent of the directory that the Activate.ps1
|
| 14 |
-
script is located within.
|
| 15 |
-
|
| 16 |
-
.Parameter Prompt
|
| 17 |
-
The prompt prefix to display when this virtual environment is activated. By
|
| 18 |
-
default, this prompt is the name of the virtual environment folder (VenvDir)
|
| 19 |
-
surrounded by parentheses and followed by a single space (ie. '(.venv) ').
|
| 20 |
-
|
| 21 |
-
.Example
|
| 22 |
-
Activate.ps1
|
| 23 |
-
Activates the Python virtual environment that contains the Activate.ps1 script.
|
| 24 |
-
|
| 25 |
-
.Example
|
| 26 |
-
Activate.ps1 -Verbose
|
| 27 |
-
Activates the Python virtual environment that contains the Activate.ps1 script,
|
| 28 |
-
and shows extra information about the activation as it executes.
|
| 29 |
-
|
| 30 |
-
.Example
|
| 31 |
-
Activate.ps1 -VenvDir C:\Users\MyUser\Common\.venv
|
| 32 |
-
Activates the Python virtual environment located in the specified location.
|
| 33 |
-
|
| 34 |
-
.Example
|
| 35 |
-
Activate.ps1 -Prompt "MyPython"
|
| 36 |
-
Activates the Python virtual environment that contains the Activate.ps1 script,
|
| 37 |
-
and prefixes the current prompt with the specified string (surrounded in
|
| 38 |
-
parentheses) while the virtual environment is active.
|
| 39 |
-
|
| 40 |
-
.Notes
|
| 41 |
-
On Windows, it may be required to enable this Activate.ps1 script by setting the
|
| 42 |
-
execution policy for the user. You can do this by issuing the following PowerShell
|
| 43 |
-
command:
|
| 44 |
-
|
| 45 |
-
PS C:\> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
|
| 46 |
-
|
| 47 |
-
For more information on Execution Policies:
|
| 48 |
-
https://go.microsoft.com/fwlink/?LinkID=135170
|
| 49 |
-
|
| 50 |
-
#>
|
| 51 |
-
Param(
|
| 52 |
-
[Parameter(Mandatory = $false)]
|
| 53 |
-
[String]
|
| 54 |
-
$VenvDir,
|
| 55 |
-
[Parameter(Mandatory = $false)]
|
| 56 |
-
[String]
|
| 57 |
-
$Prompt
|
| 58 |
-
)
|
| 59 |
-
|
| 60 |
-
<# Function declarations --------------------------------------------------- #>
|
| 61 |
-
|
| 62 |
-
<#
|
| 63 |
-
.Synopsis
|
| 64 |
-
Remove all shell session elements added by the Activate script, including the
|
| 65 |
-
addition of the virtual environment's Python executable from the beginning of
|
| 66 |
-
the PATH variable.
|
| 67 |
-
|
| 68 |
-
.Parameter NonDestructive
|
| 69 |
-
If present, do not remove this function from the global namespace for the
|
| 70 |
-
session.
|
| 71 |
-
|
| 72 |
-
#>
|
| 73 |
-
function global:deactivate ([switch]$NonDestructive) {
|
| 74 |
-
# Revert to original values
|
| 75 |
-
|
| 76 |
-
# The prior prompt:
|
| 77 |
-
if (Test-Path -Path Function:_OLD_VIRTUAL_PROMPT) {
|
| 78 |
-
Copy-Item -Path Function:_OLD_VIRTUAL_PROMPT -Destination Function:prompt
|
| 79 |
-
Remove-Item -Path Function:_OLD_VIRTUAL_PROMPT
|
| 80 |
-
}
|
| 81 |
-
|
| 82 |
-
# The prior PYTHONHOME:
|
| 83 |
-
if (Test-Path -Path Env:_OLD_VIRTUAL_PYTHONHOME) {
|
| 84 |
-
Copy-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME -Destination Env:PYTHONHOME
|
| 85 |
-
Remove-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME
|
| 86 |
-
}
|
| 87 |
-
|
| 88 |
-
# The prior PATH:
|
| 89 |
-
if (Test-Path -Path Env:_OLD_VIRTUAL_PATH) {
|
| 90 |
-
Copy-Item -Path Env:_OLD_VIRTUAL_PATH -Destination Env:PATH
|
| 91 |
-
Remove-Item -Path Env:_OLD_VIRTUAL_PATH
|
| 92 |
-
}
|
| 93 |
-
|
| 94 |
-
# Just remove the VIRTUAL_ENV altogether:
|
| 95 |
-
if (Test-Path -Path Env:VIRTUAL_ENV) {
|
| 96 |
-
Remove-Item -Path env:VIRTUAL_ENV
|
| 97 |
-
}
|
| 98 |
-
|
| 99 |
-
# Just remove VIRTUAL_ENV_PROMPT altogether.
|
| 100 |
-
if (Test-Path -Path Env:VIRTUAL_ENV_PROMPT) {
|
| 101 |
-
Remove-Item -Path env:VIRTUAL_ENV_PROMPT
|
| 102 |
-
}
|
| 103 |
-
|
| 104 |
-
# Just remove the _PYTHON_VENV_PROMPT_PREFIX altogether:
|
| 105 |
-
if (Get-Variable -Name "_PYTHON_VENV_PROMPT_PREFIX" -ErrorAction SilentlyContinue) {
|
| 106 |
-
Remove-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Scope Global -Force
|
| 107 |
-
}
|
| 108 |
-
|
| 109 |
-
# Leave deactivate function in the global namespace if requested:
|
| 110 |
-
if (-not $NonDestructive) {
|
| 111 |
-
Remove-Item -Path function:deactivate
|
| 112 |
-
}
|
| 113 |
-
}
|
| 114 |
-
|
| 115 |
-
<#
|
| 116 |
-
.Description
|
| 117 |
-
Get-PyVenvConfig parses the values from the pyvenv.cfg file located in the
|
| 118 |
-
given folder, and returns them in a map.
|
| 119 |
-
|
| 120 |
-
For each line in the pyvenv.cfg file, if that line can be parsed into exactly
|
| 121 |
-
two strings separated by `=` (with any amount of whitespace surrounding the =)
|
| 122 |
-
then it is considered a `key = value` line. The left hand string is the key,
|
| 123 |
-
the right hand is the value.
|
| 124 |
-
|
| 125 |
-
If the value starts with a `'` or a `"` then the first and last character is
|
| 126 |
-
stripped from the value before being captured.
|
| 127 |
-
|
| 128 |
-
.Parameter ConfigDir
|
| 129 |
-
Path to the directory that contains the `pyvenv.cfg` file.
|
| 130 |
-
#>
|
| 131 |
-
function Get-PyVenvConfig(
|
| 132 |
-
[String]
|
| 133 |
-
$ConfigDir
|
| 134 |
-
) {
|
| 135 |
-
Write-Verbose "Given ConfigDir=$ConfigDir, obtain values in pyvenv.cfg"
|
| 136 |
-
|
| 137 |
-
# Ensure the file exists, and issue a warning if it doesn't (but still allow the function to continue).
|
| 138 |
-
$pyvenvConfigPath = Join-Path -Resolve -Path $ConfigDir -ChildPath 'pyvenv.cfg' -ErrorAction Continue
|
| 139 |
-
|
| 140 |
-
# An empty map will be returned if no config file is found.
|
| 141 |
-
$pyvenvConfig = @{ }
|
| 142 |
-
|
| 143 |
-
if ($pyvenvConfigPath) {
|
| 144 |
-
|
| 145 |
-
Write-Verbose "File exists, parse `key = value` lines"
|
| 146 |
-
$pyvenvConfigContent = Get-Content -Path $pyvenvConfigPath
|
| 147 |
-
|
| 148 |
-
$pyvenvConfigContent | ForEach-Object {
|
| 149 |
-
$keyval = $PSItem -split "\s*=\s*", 2
|
| 150 |
-
if ($keyval[0] -and $keyval[1]) {
|
| 151 |
-
$val = $keyval[1]
|
| 152 |
-
|
| 153 |
-
# Remove extraneous quotations around a string value.
|
| 154 |
-
if ("'""".Contains($val.Substring(0, 1))) {
|
| 155 |
-
$val = $val.Substring(1, $val.Length - 2)
|
| 156 |
-
}
|
| 157 |
-
|
| 158 |
-
$pyvenvConfig[$keyval[0]] = $val
|
| 159 |
-
Write-Verbose "Adding Key: '$($keyval[0])'='$val'"
|
| 160 |
-
}
|
| 161 |
-
}
|
| 162 |
-
}
|
| 163 |
-
return $pyvenvConfig
|
| 164 |
-
}
|
| 165 |
-
|
| 166 |
-
|
| 167 |
-
<# Begin Activate script --------------------------------------------------- #>
|
| 168 |
-
|
| 169 |
-
# Determine the containing directory of this script
|
| 170 |
-
$VenvExecPath = Split-Path -Parent $MyInvocation.MyCommand.Definition
|
| 171 |
-
$VenvExecDir = Get-Item -Path $VenvExecPath
|
| 172 |
-
|
| 173 |
-
Write-Verbose "Activation script is located in path: '$VenvExecPath'"
|
| 174 |
-
Write-Verbose "VenvExecDir Fullname: '$($VenvExecDir.FullName)"
|
| 175 |
-
Write-Verbose "VenvExecDir Name: '$($VenvExecDir.Name)"
|
| 176 |
-
|
| 177 |
-
# Set values required in priority: CmdLine, ConfigFile, Default
|
| 178 |
-
# First, get the location of the virtual environment, it might not be
|
| 179 |
-
# VenvExecDir if specified on the command line.
|
| 180 |
-
if ($VenvDir) {
|
| 181 |
-
Write-Verbose "VenvDir given as parameter, using '$VenvDir' to determine values"
|
| 182 |
-
}
|
| 183 |
-
else {
|
| 184 |
-
Write-Verbose "VenvDir not given as a parameter, using parent directory name as VenvDir."
|
| 185 |
-
$VenvDir = $VenvExecDir.Parent.FullName.TrimEnd("\\/")
|
| 186 |
-
Write-Verbose "VenvDir=$VenvDir"
|
| 187 |
-
}
|
| 188 |
-
|
| 189 |
-
# Next, read the `pyvenv.cfg` file to determine any required value such
|
| 190 |
-
# as `prompt`.
|
| 191 |
-
$pyvenvCfg = Get-PyVenvConfig -ConfigDir $VenvDir
|
| 192 |
-
|
| 193 |
-
# Next, set the prompt from the command line, or the config file, or
|
| 194 |
-
# just use the name of the virtual environment folder.
|
| 195 |
-
if ($Prompt) {
|
| 196 |
-
Write-Verbose "Prompt specified as argument, using '$Prompt'"
|
| 197 |
-
}
|
| 198 |
-
else {
|
| 199 |
-
Write-Verbose "Prompt not specified as argument to script, checking pyvenv.cfg value"
|
| 200 |
-
if ($pyvenvCfg -and $pyvenvCfg['prompt']) {
|
| 201 |
-
Write-Verbose " Setting based on value in pyvenv.cfg='$($pyvenvCfg['prompt'])'"
|
| 202 |
-
$Prompt = $pyvenvCfg['prompt'];
|
| 203 |
-
}
|
| 204 |
-
else {
|
| 205 |
-
Write-Verbose " Setting prompt based on parent's directory's name. (Is the directory name passed to venv module when creating the virtual environment)"
|
| 206 |
-
Write-Verbose " Got leaf-name of $VenvDir='$(Split-Path -Path $venvDir -Leaf)'"
|
| 207 |
-
$Prompt = Split-Path -Path $venvDir -Leaf
|
| 208 |
-
}
|
| 209 |
-
}
|
| 210 |
-
|
| 211 |
-
Write-Verbose "Prompt = '$Prompt'"
|
| 212 |
-
Write-Verbose "VenvDir='$VenvDir'"
|
| 213 |
-
|
| 214 |
-
# Deactivate any currently active virtual environment, but leave the
|
| 215 |
-
# deactivate function in place.
|
| 216 |
-
deactivate -nondestructive
|
| 217 |
-
|
| 218 |
-
# Now set the environment variable VIRTUAL_ENV, used by many tools to determine
|
| 219 |
-
# that there is an activated venv.
|
| 220 |
-
$env:VIRTUAL_ENV = $VenvDir
|
| 221 |
-
|
| 222 |
-
if (-not $Env:VIRTUAL_ENV_DISABLE_PROMPT) {
|
| 223 |
-
|
| 224 |
-
Write-Verbose "Setting prompt to '$Prompt'"
|
| 225 |
-
|
| 226 |
-
# Set the prompt to include the env name
|
| 227 |
-
# Make sure _OLD_VIRTUAL_PROMPT is global
|
| 228 |
-
function global:_OLD_VIRTUAL_PROMPT { "" }
|
| 229 |
-
Copy-Item -Path function:prompt -Destination function:_OLD_VIRTUAL_PROMPT
|
| 230 |
-
New-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Description "Python virtual environment prompt prefix" -Scope Global -Option ReadOnly -Visibility Public -Value $Prompt
|
| 231 |
-
|
| 232 |
-
function global:prompt {
|
| 233 |
-
Write-Host -NoNewline -ForegroundColor Green "($_PYTHON_VENV_PROMPT_PREFIX) "
|
| 234 |
-
_OLD_VIRTUAL_PROMPT
|
| 235 |
-
}
|
| 236 |
-
$env:VIRTUAL_ENV_PROMPT = $Prompt
|
| 237 |
-
}
|
| 238 |
-
|
| 239 |
-
# Clear PYTHONHOME
|
| 240 |
-
if (Test-Path -Path Env:PYTHONHOME) {
|
| 241 |
-
Copy-Item -Path Env:PYTHONHOME -Destination Env:_OLD_VIRTUAL_PYTHONHOME
|
| 242 |
-
Remove-Item -Path Env:PYTHONHOME
|
| 243 |
-
}
|
| 244 |
-
|
| 245 |
-
# Add the venv to the PATH
|
| 246 |
-
Copy-Item -Path Env:PATH -Destination Env:_OLD_VIRTUAL_PATH
|
| 247 |
-
$Env:PATH = "$VenvExecDir$([System.IO.Path]::PathSeparator)$Env:PATH"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
venv/bin/activate
DELETED
|
@@ -1,69 +0,0 @@
|
|
| 1 |
-
# This file must be used with "source bin/activate" *from bash*
|
| 2 |
-
# you cannot run it directly
|
| 3 |
-
|
| 4 |
-
deactivate () {
|
| 5 |
-
# reset old environment variables
|
| 6 |
-
if [ -n "${_OLD_VIRTUAL_PATH:-}" ] ; then
|
| 7 |
-
PATH="${_OLD_VIRTUAL_PATH:-}"
|
| 8 |
-
export PATH
|
| 9 |
-
unset _OLD_VIRTUAL_PATH
|
| 10 |
-
fi
|
| 11 |
-
if [ -n "${_OLD_VIRTUAL_PYTHONHOME:-}" ] ; then
|
| 12 |
-
PYTHONHOME="${_OLD_VIRTUAL_PYTHONHOME:-}"
|
| 13 |
-
export PYTHONHOME
|
| 14 |
-
unset _OLD_VIRTUAL_PYTHONHOME
|
| 15 |
-
fi
|
| 16 |
-
|
| 17 |
-
# This should detect bash and zsh, which have a hash command that must
|
| 18 |
-
# be called to get it to forget past commands. Without forgetting
|
| 19 |
-
# past commands the $PATH changes we made may not be respected
|
| 20 |
-
if [ -n "${BASH:-}" -o -n "${ZSH_VERSION:-}" ] ; then
|
| 21 |
-
hash -r 2> /dev/null
|
| 22 |
-
fi
|
| 23 |
-
|
| 24 |
-
if [ -n "${_OLD_VIRTUAL_PS1:-}" ] ; then
|
| 25 |
-
PS1="${_OLD_VIRTUAL_PS1:-}"
|
| 26 |
-
export PS1
|
| 27 |
-
unset _OLD_VIRTUAL_PS1
|
| 28 |
-
fi
|
| 29 |
-
|
| 30 |
-
unset VIRTUAL_ENV
|
| 31 |
-
unset VIRTUAL_ENV_PROMPT
|
| 32 |
-
if [ ! "${1:-}" = "nondestructive" ] ; then
|
| 33 |
-
# Self destruct!
|
| 34 |
-
unset -f deactivate
|
| 35 |
-
fi
|
| 36 |
-
}
|
| 37 |
-
|
| 38 |
-
# unset irrelevant variables
|
| 39 |
-
deactivate nondestructive
|
| 40 |
-
|
| 41 |
-
VIRTUAL_ENV="/Users/samchaudry/Desktop/spam_classifier_project/venv"
|
| 42 |
-
export VIRTUAL_ENV
|
| 43 |
-
|
| 44 |
-
_OLD_VIRTUAL_PATH="$PATH"
|
| 45 |
-
PATH="$VIRTUAL_ENV/bin:$PATH"
|
| 46 |
-
export PATH
|
| 47 |
-
|
| 48 |
-
# unset PYTHONHOME if set
|
| 49 |
-
# this will fail if PYTHONHOME is set to the empty string (which is bad anyway)
|
| 50 |
-
# could use `if (set -u; : $PYTHONHOME) ;` in bash
|
| 51 |
-
if [ -n "${PYTHONHOME:-}" ] ; then
|
| 52 |
-
_OLD_VIRTUAL_PYTHONHOME="${PYTHONHOME:-}"
|
| 53 |
-
unset PYTHONHOME
|
| 54 |
-
fi
|
| 55 |
-
|
| 56 |
-
if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT:-}" ] ; then
|
| 57 |
-
_OLD_VIRTUAL_PS1="${PS1:-}"
|
| 58 |
-
PS1="(venv) ${PS1:-}"
|
| 59 |
-
export PS1
|
| 60 |
-
VIRTUAL_ENV_PROMPT="(venv) "
|
| 61 |
-
export VIRTUAL_ENV_PROMPT
|
| 62 |
-
fi
|
| 63 |
-
|
| 64 |
-
# This should detect bash and zsh, which have a hash command that must
|
| 65 |
-
# be called to get it to forget past commands. Without forgetting
|
| 66 |
-
# past commands the $PATH changes we made may not be respected
|
| 67 |
-
if [ -n "${BASH:-}" -o -n "${ZSH_VERSION:-}" ] ; then
|
| 68 |
-
hash -r 2> /dev/null
|
| 69 |
-
fi
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
venv/bin/activate.csh
DELETED
|
@@ -1,26 +0,0 @@
|
|
| 1 |
-
# This file must be used with "source bin/activate.csh" *from csh*.
|
| 2 |
-
# You cannot run it directly.
|
| 3 |
-
# Created by Davide Di Blasi <davidedb@gmail.com>.
|
| 4 |
-
# Ported to Python 3.3 venv by Andrew Svetlov <andrew.svetlov@gmail.com>
|
| 5 |
-
|
| 6 |
-
alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT" && unset _OLD_VIRTUAL_PROMPT; unsetenv VIRTUAL_ENV; unsetenv VIRTUAL_ENV_PROMPT; test "\!:*" != "nondestructive" && unalias deactivate'
|
| 7 |
-
|
| 8 |
-
# Unset irrelevant variables.
|
| 9 |
-
deactivate nondestructive
|
| 10 |
-
|
| 11 |
-
setenv VIRTUAL_ENV "/Users/samchaudry/Desktop/spam_classifier_project/venv"
|
| 12 |
-
|
| 13 |
-
set _OLD_VIRTUAL_PATH="$PATH"
|
| 14 |
-
setenv PATH "$VIRTUAL_ENV/bin:$PATH"
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
set _OLD_VIRTUAL_PROMPT="$prompt"
|
| 18 |
-
|
| 19 |
-
if (! "$?VIRTUAL_ENV_DISABLE_PROMPT") then
|
| 20 |
-
set prompt = "(venv) $prompt"
|
| 21 |
-
setenv VIRTUAL_ENV_PROMPT "(venv) "
|
| 22 |
-
endif
|
| 23 |
-
|
| 24 |
-
alias pydoc python -m pydoc
|
| 25 |
-
|
| 26 |
-
rehash
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
venv/bin/activate.fish
DELETED
|
@@ -1,69 +0,0 @@
|
|
| 1 |
-
# This file must be used with "source <venv>/bin/activate.fish" *from fish*
|
| 2 |
-
# (https://fishshell.com/); you cannot run it directly.
|
| 3 |
-
|
| 4 |
-
function deactivate -d "Exit virtual environment and return to normal shell environment"
|
| 5 |
-
# reset old environment variables
|
| 6 |
-
if test -n "$_OLD_VIRTUAL_PATH"
|
| 7 |
-
set -gx PATH $_OLD_VIRTUAL_PATH
|
| 8 |
-
set -e _OLD_VIRTUAL_PATH
|
| 9 |
-
end
|
| 10 |
-
if test -n "$_OLD_VIRTUAL_PYTHONHOME"
|
| 11 |
-
set -gx PYTHONHOME $_OLD_VIRTUAL_PYTHONHOME
|
| 12 |
-
set -e _OLD_VIRTUAL_PYTHONHOME
|
| 13 |
-
end
|
| 14 |
-
|
| 15 |
-
if test -n "$_OLD_FISH_PROMPT_OVERRIDE"
|
| 16 |
-
set -e _OLD_FISH_PROMPT_OVERRIDE
|
| 17 |
-
# prevents error when using nested fish instances (Issue #93858)
|
| 18 |
-
if functions -q _old_fish_prompt
|
| 19 |
-
functions -e fish_prompt
|
| 20 |
-
functions -c _old_fish_prompt fish_prompt
|
| 21 |
-
functions -e _old_fish_prompt
|
| 22 |
-
end
|
| 23 |
-
end
|
| 24 |
-
|
| 25 |
-
set -e VIRTUAL_ENV
|
| 26 |
-
set -e VIRTUAL_ENV_PROMPT
|
| 27 |
-
if test "$argv[1]" != "nondestructive"
|
| 28 |
-
# Self-destruct!
|
| 29 |
-
functions -e deactivate
|
| 30 |
-
end
|
| 31 |
-
end
|
| 32 |
-
|
| 33 |
-
# Unset irrelevant variables.
|
| 34 |
-
deactivate nondestructive
|
| 35 |
-
|
| 36 |
-
set -gx VIRTUAL_ENV "/Users/samchaudry/Desktop/spam_classifier_project/venv"
|
| 37 |
-
|
| 38 |
-
set -gx _OLD_VIRTUAL_PATH $PATH
|
| 39 |
-
set -gx PATH "$VIRTUAL_ENV/bin" $PATH
|
| 40 |
-
|
| 41 |
-
# Unset PYTHONHOME if set.
|
| 42 |
-
if set -q PYTHONHOME
|
| 43 |
-
set -gx _OLD_VIRTUAL_PYTHONHOME $PYTHONHOME
|
| 44 |
-
set -e PYTHONHOME
|
| 45 |
-
end
|
| 46 |
-
|
| 47 |
-
if test -z "$VIRTUAL_ENV_DISABLE_PROMPT"
|
| 48 |
-
# fish uses a function instead of an env var to generate the prompt.
|
| 49 |
-
|
| 50 |
-
# Save the current fish_prompt function as the function _old_fish_prompt.
|
| 51 |
-
functions -c fish_prompt _old_fish_prompt
|
| 52 |
-
|
| 53 |
-
# With the original prompt function renamed, we can override with our own.
|
| 54 |
-
function fish_prompt
|
| 55 |
-
# Save the return status of the last command.
|
| 56 |
-
set -l old_status $status
|
| 57 |
-
|
| 58 |
-
# Output the venv prompt; color taken from the blue of the Python logo.
|
| 59 |
-
printf "%s%s%s" (set_color 4B8BBE) "(venv) " (set_color normal)
|
| 60 |
-
|
| 61 |
-
# Restore the return status of the previous command.
|
| 62 |
-
echo "exit $old_status" | .
|
| 63 |
-
# Output the original/"old" prompt.
|
| 64 |
-
_old_fish_prompt
|
| 65 |
-
end
|
| 66 |
-
|
| 67 |
-
set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV"
|
| 68 |
-
set -gx VIRTUAL_ENV_PROMPT "(venv) "
|
| 69 |
-
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
venv/bin/f2py
DELETED
|
@@ -1,8 +0,0 @@
|
|
| 1 |
-
#!/Users/samchaudry/Desktop/spam_classifier_project/venv/bin/python3.11
|
| 2 |
-
# -*- coding: utf-8 -*-
|
| 3 |
-
import re
|
| 4 |
-
import sys
|
| 5 |
-
from numpy.f2py.f2py2e import main
|
| 6 |
-
if __name__ == '__main__':
|
| 7 |
-
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
| 8 |
-
sys.exit(main())
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
venv/bin/huggingface-cli
DELETED
|
@@ -1,8 +0,0 @@
|
|
| 1 |
-
#!/Users/samchaudry/Desktop/spam_classifier_project/venv/bin/python3.11
|
| 2 |
-
# -*- coding: utf-8 -*-
|
| 3 |
-
import re
|
| 4 |
-
import sys
|
| 5 |
-
from huggingface_hub.commands.huggingface_cli import main
|
| 6 |
-
if __name__ == '__main__':
|
| 7 |
-
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
| 8 |
-
sys.exit(main())
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
venv/bin/normalizer
DELETED
|
@@ -1,8 +0,0 @@
|
|
| 1 |
-
#!/Users/samchaudry/Desktop/spam_classifier_project/venv/bin/python3.11
|
| 2 |
-
# -*- coding: utf-8 -*-
|
| 3 |
-
import re
|
| 4 |
-
import sys
|
| 5 |
-
from charset_normalizer import cli
|
| 6 |
-
if __name__ == '__main__':
|
| 7 |
-
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
| 8 |
-
sys.exit(cli.cli_detect())
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
venv/bin/numpy-config
DELETED
|
@@ -1,8 +0,0 @@
|
|
| 1 |
-
#!/Users/samchaudry/Desktop/spam_classifier_project/venv/bin/python3.11
|
| 2 |
-
# -*- coding: utf-8 -*-
|
| 3 |
-
import re
|
| 4 |
-
import sys
|
| 5 |
-
from numpy._configtool import main
|
| 6 |
-
if __name__ == '__main__':
|
| 7 |
-
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
| 8 |
-
sys.exit(main())
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
venv/bin/pip
DELETED
|
@@ -1,8 +0,0 @@
|
|
| 1 |
-
#!/Users/samchaudry/Desktop/spam_classifier_project/venv/bin/python3.11
|
| 2 |
-
# -*- coding: utf-8 -*-
|
| 3 |
-
import re
|
| 4 |
-
import sys
|
| 5 |
-
from pip._internal.cli.main import main
|
| 6 |
-
if __name__ == '__main__':
|
| 7 |
-
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
| 8 |
-
sys.exit(main())
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
venv/bin/pip3
DELETED
|
@@ -1,8 +0,0 @@
|
|
| 1 |
-
#!/Users/samchaudry/Desktop/spam_classifier_project/venv/bin/python3.11
|
| 2 |
-
# -*- coding: utf-8 -*-
|
| 3 |
-
import re
|
| 4 |
-
import sys
|
| 5 |
-
from pip._internal.cli.main import main
|
| 6 |
-
if __name__ == '__main__':
|
| 7 |
-
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
| 8 |
-
sys.exit(main())
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
venv/bin/pip3.11
DELETED
|
@@ -1,8 +0,0 @@
|
|
| 1 |
-
#!/Users/samchaudry/Desktop/spam_classifier_project/venv/bin/python3.11
|
| 2 |
-
# -*- coding: utf-8 -*-
|
| 3 |
-
import re
|
| 4 |
-
import sys
|
| 5 |
-
from pip._internal.cli.main import main
|
| 6 |
-
if __name__ == '__main__':
|
| 7 |
-
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
| 8 |
-
sys.exit(main())
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
venv/bin/python
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:ff2d7180d4aa2dcc03193194c1999509239e00101ade54fcdd736d9fc25bd0c6
|
| 3 |
-
size 152624
|
|
|
|
|
|
|
|
|
|
|
|
venv/bin/python3
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:ff2d7180d4aa2dcc03193194c1999509239e00101ade54fcdd736d9fc25bd0c6
|
| 3 |
-
size 152624
|
|
|
|
|
|
|
|
|
|
|
|
venv/bin/python3.11
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:ff2d7180d4aa2dcc03193194c1999509239e00101ade54fcdd736d9fc25bd0c6
|
| 3 |
-
size 152624
|
|
|
|
|
|
|
|
|
|
|
|
venv/bin/tqdm
DELETED
|
@@ -1,8 +0,0 @@
|
|
| 1 |
-
#!/Users/samchaudry/Desktop/spam_classifier_project/venv/bin/python3.11
|
| 2 |
-
# -*- coding: utf-8 -*-
|
| 3 |
-
import re
|
| 4 |
-
import sys
|
| 5 |
-
from tqdm.cli import main
|
| 6 |
-
if __name__ == '__main__':
|
| 7 |
-
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
| 8 |
-
sys.exit(main())
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
venv/lib/python3.11/site-packages/PyYAML-6.0.2.dist-info/INSTALLER
DELETED
|
@@ -1 +0,0 @@
|
|
| 1 |
-
pip
|
|
|
|
|
|
venv/lib/python3.11/site-packages/PyYAML-6.0.2.dist-info/LICENSE
DELETED
|
@@ -1,20 +0,0 @@
|
|
| 1 |
-
Copyright (c) 2017-2021 Ingy döt Net
|
| 2 |
-
Copyright (c) 2006-2016 Kirill Simonov
|
| 3 |
-
|
| 4 |
-
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
| 5 |
-
this software and associated documentation files (the "Software"), to deal in
|
| 6 |
-
the Software without restriction, including without limitation the rights to
|
| 7 |
-
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
| 8 |
-
of the Software, and to permit persons to whom the Software is furnished to do
|
| 9 |
-
so, subject to the following conditions:
|
| 10 |
-
|
| 11 |
-
The above copyright notice and this permission notice shall be included in all
|
| 12 |
-
copies or substantial portions of the Software.
|
| 13 |
-
|
| 14 |
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 15 |
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 16 |
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 17 |
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 18 |
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| 19 |
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
| 20 |
-
SOFTWARE.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
venv/lib/python3.11/site-packages/PyYAML-6.0.2.dist-info/METADATA
DELETED
|
@@ -1,46 +0,0 @@
|
|
| 1 |
-
Metadata-Version: 2.1
|
| 2 |
-
Name: PyYAML
|
| 3 |
-
Version: 6.0.2
|
| 4 |
-
Summary: YAML parser and emitter for Python
|
| 5 |
-
Home-page: https://pyyaml.org/
|
| 6 |
-
Download-URL: https://pypi.org/project/PyYAML/
|
| 7 |
-
Author: Kirill Simonov
|
| 8 |
-
Author-email: xi@resolvent.net
|
| 9 |
-
License: MIT
|
| 10 |
-
Project-URL: Bug Tracker, https://github.com/yaml/pyyaml/issues
|
| 11 |
-
Project-URL: CI, https://github.com/yaml/pyyaml/actions
|
| 12 |
-
Project-URL: Documentation, https://pyyaml.org/wiki/PyYAMLDocumentation
|
| 13 |
-
Project-URL: Mailing lists, http://lists.sourceforge.net/lists/listinfo/yaml-core
|
| 14 |
-
Project-URL: Source Code, https://github.com/yaml/pyyaml
|
| 15 |
-
Platform: Any
|
| 16 |
-
Classifier: Development Status :: 5 - Production/Stable
|
| 17 |
-
Classifier: Intended Audience :: Developers
|
| 18 |
-
Classifier: License :: OSI Approved :: MIT License
|
| 19 |
-
Classifier: Operating System :: OS Independent
|
| 20 |
-
Classifier: Programming Language :: Cython
|
| 21 |
-
Classifier: Programming Language :: Python
|
| 22 |
-
Classifier: Programming Language :: Python :: 3
|
| 23 |
-
Classifier: Programming Language :: Python :: 3.8
|
| 24 |
-
Classifier: Programming Language :: Python :: 3.9
|
| 25 |
-
Classifier: Programming Language :: Python :: 3.10
|
| 26 |
-
Classifier: Programming Language :: Python :: 3.11
|
| 27 |
-
Classifier: Programming Language :: Python :: 3.12
|
| 28 |
-
Classifier: Programming Language :: Python :: 3.13
|
| 29 |
-
Classifier: Programming Language :: Python :: Implementation :: CPython
|
| 30 |
-
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
| 31 |
-
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
| 32 |
-
Classifier: Topic :: Text Processing :: Markup
|
| 33 |
-
Requires-Python: >=3.8
|
| 34 |
-
License-File: LICENSE
|
| 35 |
-
|
| 36 |
-
YAML is a data serialization format designed for human readability
|
| 37 |
-
and interaction with scripting languages. PyYAML is a YAML parser
|
| 38 |
-
and emitter for Python.
|
| 39 |
-
|
| 40 |
-
PyYAML features a complete YAML 1.1 parser, Unicode support, pickle
|
| 41 |
-
support, capable extension API, and sensible error messages. PyYAML
|
| 42 |
-
supports standard YAML tags and provides Python-specific tags that
|
| 43 |
-
allow to represent an arbitrary Python object.
|
| 44 |
-
|
| 45 |
-
PyYAML is applicable for a broad range of tasks from complex
|
| 46 |
-
configuration files to object serialization and persistence.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
venv/lib/python3.11/site-packages/PyYAML-6.0.2.dist-info/RECORD
DELETED
|
@@ -1,43 +0,0 @@
|
|
| 1 |
-
PyYAML-6.0.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
| 2 |
-
PyYAML-6.0.2.dist-info/LICENSE,sha256=jTko-dxEkP1jVwfLiOsmvXZBAqcoKVQwfT5RZ6V36KQ,1101
|
| 3 |
-
PyYAML-6.0.2.dist-info/METADATA,sha256=9-odFB5seu4pGPcEv7E8iyxNF51_uKnaNGjLAhz2lto,2060
|
| 4 |
-
PyYAML-6.0.2.dist-info/RECORD,,
|
| 5 |
-
PyYAML-6.0.2.dist-info/WHEEL,sha256=LFVzND6nAdWMS-norKkn42oL86bk-j1PiLvh1xzptX0,110
|
| 6 |
-
PyYAML-6.0.2.dist-info/top_level.txt,sha256=rpj0IVMTisAjh_1vG3Ccf9v5jpCQwAz6cD1IVU5ZdhQ,11
|
| 7 |
-
_yaml/__init__.py,sha256=04Ae_5osxahpJHa3XBZUAf4wi6XX32gR8D6X6p64GEA,1402
|
| 8 |
-
_yaml/__pycache__/__init__.cpython-311.pyc,,
|
| 9 |
-
yaml/__init__.py,sha256=N35S01HMesFTe0aRRMWkPj0Pa8IEbHpE9FK7cr5Bdtw,12311
|
| 10 |
-
yaml/__pycache__/__init__.cpython-311.pyc,,
|
| 11 |
-
yaml/__pycache__/composer.cpython-311.pyc,,
|
| 12 |
-
yaml/__pycache__/constructor.cpython-311.pyc,,
|
| 13 |
-
yaml/__pycache__/cyaml.cpython-311.pyc,,
|
| 14 |
-
yaml/__pycache__/dumper.cpython-311.pyc,,
|
| 15 |
-
yaml/__pycache__/emitter.cpython-311.pyc,,
|
| 16 |
-
yaml/__pycache__/error.cpython-311.pyc,,
|
| 17 |
-
yaml/__pycache__/events.cpython-311.pyc,,
|
| 18 |
-
yaml/__pycache__/loader.cpython-311.pyc,,
|
| 19 |
-
yaml/__pycache__/nodes.cpython-311.pyc,,
|
| 20 |
-
yaml/__pycache__/parser.cpython-311.pyc,,
|
| 21 |
-
yaml/__pycache__/reader.cpython-311.pyc,,
|
| 22 |
-
yaml/__pycache__/representer.cpython-311.pyc,,
|
| 23 |
-
yaml/__pycache__/resolver.cpython-311.pyc,,
|
| 24 |
-
yaml/__pycache__/scanner.cpython-311.pyc,,
|
| 25 |
-
yaml/__pycache__/serializer.cpython-311.pyc,,
|
| 26 |
-
yaml/__pycache__/tokens.cpython-311.pyc,,
|
| 27 |
-
yaml/_yaml.cpython-311-darwin.so,sha256=YdahBTjS8KitV8Lm6bzs2ON1yRZtfHTI-UguNFhwElI,359272
|
| 28 |
-
yaml/composer.py,sha256=_Ko30Wr6eDWUeUpauUGT3Lcg9QPBnOPVlTnIMRGJ9FM,4883
|
| 29 |
-
yaml/constructor.py,sha256=kNgkfaeLUkwQYY_Q6Ff1Tz2XVw_pG1xVE9Ak7z-viLA,28639
|
| 30 |
-
yaml/cyaml.py,sha256=6ZrAG9fAYvdVe2FK_w0hmXoG7ZYsoYUwapG8CiC72H0,3851
|
| 31 |
-
yaml/dumper.py,sha256=PLctZlYwZLp7XmeUdwRuv4nYOZ2UBnDIUy8-lKfLF-o,2837
|
| 32 |
-
yaml/emitter.py,sha256=jghtaU7eFwg31bG0B7RZea_29Adi9CKmXq_QjgQpCkQ,43006
|
| 33 |
-
yaml/error.py,sha256=Ah9z-toHJUbE9j-M8YpxgSRM5CgLCcwVzJgLLRF2Fxo,2533
|
| 34 |
-
yaml/events.py,sha256=50_TksgQiE4up-lKo_V-nBy-tAIxkIPQxY5qDhKCeHw,2445
|
| 35 |
-
yaml/loader.py,sha256=UVa-zIqmkFSCIYq_PgSGm4NSJttHY2Rf_zQ4_b1fHN0,2061
|
| 36 |
-
yaml/nodes.py,sha256=gPKNj8pKCdh2d4gr3gIYINnPOaOxGhJAUiYhGRnPE84,1440
|
| 37 |
-
yaml/parser.py,sha256=ilWp5vvgoHFGzvOZDItFoGjD6D42nhlZrZyjAwa0oJo,25495
|
| 38 |
-
yaml/reader.py,sha256=0dmzirOiDG4Xo41RnuQS7K9rkY3xjHiVasfDMNTqCNw,6794
|
| 39 |
-
yaml/representer.py,sha256=IuWP-cAW9sHKEnS0gCqSa894k1Bg4cgTxaDwIcbRQ-Y,14190
|
| 40 |
-
yaml/resolver.py,sha256=9L-VYfm4mWHxUD1Vg4X7rjDRK_7VZd6b92wzq7Y2IKY,9004
|
| 41 |
-
yaml/scanner.py,sha256=YEM3iLZSaQwXcQRg2l2R4MdT0zGP2F9eHkKGKnHyWQY,51279
|
| 42 |
-
yaml/serializer.py,sha256=ChuFgmhU01hj4xgI8GaKv6vfM2Bujwa9i7d2FAHj7cA,4165
|
| 43 |
-
yaml/tokens.py,sha256=lTQIzSVw8Mg9wv459-TjiOQe6wVziqaRlqX2_89rp54,2573
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
venv/lib/python3.11/site-packages/PyYAML-6.0.2.dist-info/WHEEL
DELETED
|
@@ -1,5 +0,0 @@
|
|
| 1 |
-
Wheel-Version: 1.0
|
| 2 |
-
Generator: bdist_wheel (0.44.0)
|
| 3 |
-
Root-Is-Purelib: false
|
| 4 |
-
Tag: cp311-cp311-macosx_11_0_arm64
|
| 5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
venv/lib/python3.11/site-packages/PyYAML-6.0.2.dist-info/top_level.txt
DELETED
|
@@ -1,2 +0,0 @@
|
|
| 1 |
-
_yaml
|
| 2 |
-
yaml
|
|
|
|
|
|
|
|
|
venv/lib/python3.11/site-packages/__pycache__/six.cpython-311.pyc
DELETED
|
Binary file (46.6 kB)
|
|
|
venv/lib/python3.11/site-packages/__pycache__/threadpoolctl.cpython-311.pyc
DELETED
|
Binary file (64.8 kB)
|
|
|
venv/lib/python3.11/site-packages/__pycache__/typing_extensions.cpython-311.pyc
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:c2c77968c31d622bac1bc48ab44fa09a32fa23e58a3a783b6c48a8a2910a1899
|
| 3 |
-
size 189585
|
|
|
|
|
|
|
|
|
|
|
|
venv/lib/python3.11/site-packages/_distutils_hack/__init__.py
DELETED
|
@@ -1,222 +0,0 @@
|
|
| 1 |
-
# don't import any costly modules
|
| 2 |
-
import sys
|
| 3 |
-
import os
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
is_pypy = '__pypy__' in sys.builtin_module_names
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
def warn_distutils_present():
|
| 10 |
-
if 'distutils' not in sys.modules:
|
| 11 |
-
return
|
| 12 |
-
if is_pypy and sys.version_info < (3, 7):
|
| 13 |
-
# PyPy for 3.6 unconditionally imports distutils, so bypass the warning
|
| 14 |
-
# https://foss.heptapod.net/pypy/pypy/-/blob/be829135bc0d758997b3566062999ee8b23872b4/lib-python/3/site.py#L250
|
| 15 |
-
return
|
| 16 |
-
import warnings
|
| 17 |
-
|
| 18 |
-
warnings.warn(
|
| 19 |
-
"Distutils was imported before Setuptools, but importing Setuptools "
|
| 20 |
-
"also replaces the `distutils` module in `sys.modules`. This may lead "
|
| 21 |
-
"to undesirable behaviors or errors. To avoid these issues, avoid "
|
| 22 |
-
"using distutils directly, ensure that setuptools is installed in the "
|
| 23 |
-
"traditional way (e.g. not an editable install), and/or make sure "
|
| 24 |
-
"that setuptools is always imported before distutils."
|
| 25 |
-
)
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
def clear_distutils():
|
| 29 |
-
if 'distutils' not in sys.modules:
|
| 30 |
-
return
|
| 31 |
-
import warnings
|
| 32 |
-
|
| 33 |
-
warnings.warn("Setuptools is replacing distutils.")
|
| 34 |
-
mods = [
|
| 35 |
-
name
|
| 36 |
-
for name in sys.modules
|
| 37 |
-
if name == "distutils" or name.startswith("distutils.")
|
| 38 |
-
]
|
| 39 |
-
for name in mods:
|
| 40 |
-
del sys.modules[name]
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
def enabled():
|
| 44 |
-
"""
|
| 45 |
-
Allow selection of distutils by environment variable.
|
| 46 |
-
"""
|
| 47 |
-
which = os.environ.get('SETUPTOOLS_USE_DISTUTILS', 'local')
|
| 48 |
-
return which == 'local'
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
def ensure_local_distutils():
|
| 52 |
-
import importlib
|
| 53 |
-
|
| 54 |
-
clear_distutils()
|
| 55 |
-
|
| 56 |
-
# With the DistutilsMetaFinder in place,
|
| 57 |
-
# perform an import to cause distutils to be
|
| 58 |
-
# loaded from setuptools._distutils. Ref #2906.
|
| 59 |
-
with shim():
|
| 60 |
-
importlib.import_module('distutils')
|
| 61 |
-
|
| 62 |
-
# check that submodules load as expected
|
| 63 |
-
core = importlib.import_module('distutils.core')
|
| 64 |
-
assert '_distutils' in core.__file__, core.__file__
|
| 65 |
-
assert 'setuptools._distutils.log' not in sys.modules
|
| 66 |
-
|
| 67 |
-
|
| 68 |
-
def do_override():
|
| 69 |
-
"""
|
| 70 |
-
Ensure that the local copy of distutils is preferred over stdlib.
|
| 71 |
-
|
| 72 |
-
See https://github.com/pypa/setuptools/issues/417#issuecomment-392298401
|
| 73 |
-
for more motivation.
|
| 74 |
-
"""
|
| 75 |
-
if enabled():
|
| 76 |
-
warn_distutils_present()
|
| 77 |
-
ensure_local_distutils()
|
| 78 |
-
|
| 79 |
-
|
| 80 |
-
class _TrivialRe:
|
| 81 |
-
def __init__(self, *patterns):
|
| 82 |
-
self._patterns = patterns
|
| 83 |
-
|
| 84 |
-
def match(self, string):
|
| 85 |
-
return all(pat in string for pat in self._patterns)
|
| 86 |
-
|
| 87 |
-
|
| 88 |
-
class DistutilsMetaFinder:
|
| 89 |
-
def find_spec(self, fullname, path, target=None):
|
| 90 |
-
# optimization: only consider top level modules and those
|
| 91 |
-
# found in the CPython test suite.
|
| 92 |
-
if path is not None and not fullname.startswith('test.'):
|
| 93 |
-
return
|
| 94 |
-
|
| 95 |
-
method_name = 'spec_for_{fullname}'.format(**locals())
|
| 96 |
-
method = getattr(self, method_name, lambda: None)
|
| 97 |
-
return method()
|
| 98 |
-
|
| 99 |
-
def spec_for_distutils(self):
|
| 100 |
-
if self.is_cpython():
|
| 101 |
-
return
|
| 102 |
-
|
| 103 |
-
import importlib
|
| 104 |
-
import importlib.abc
|
| 105 |
-
import importlib.util
|
| 106 |
-
|
| 107 |
-
try:
|
| 108 |
-
mod = importlib.import_module('setuptools._distutils')
|
| 109 |
-
except Exception:
|
| 110 |
-
# There are a couple of cases where setuptools._distutils
|
| 111 |
-
# may not be present:
|
| 112 |
-
# - An older Setuptools without a local distutils is
|
| 113 |
-
# taking precedence. Ref #2957.
|
| 114 |
-
# - Path manipulation during sitecustomize removes
|
| 115 |
-
# setuptools from the path but only after the hook
|
| 116 |
-
# has been loaded. Ref #2980.
|
| 117 |
-
# In either case, fall back to stdlib behavior.
|
| 118 |
-
return
|
| 119 |
-
|
| 120 |
-
class DistutilsLoader(importlib.abc.Loader):
|
| 121 |
-
def create_module(self, spec):
|
| 122 |
-
mod.__name__ = 'distutils'
|
| 123 |
-
return mod
|
| 124 |
-
|
| 125 |
-
def exec_module(self, module):
|
| 126 |
-
pass
|
| 127 |
-
|
| 128 |
-
return importlib.util.spec_from_loader(
|
| 129 |
-
'distutils', DistutilsLoader(), origin=mod.__file__
|
| 130 |
-
)
|
| 131 |
-
|
| 132 |
-
@staticmethod
|
| 133 |
-
def is_cpython():
|
| 134 |
-
"""
|
| 135 |
-
Suppress supplying distutils for CPython (build and tests).
|
| 136 |
-
Ref #2965 and #3007.
|
| 137 |
-
"""
|
| 138 |
-
return os.path.isfile('pybuilddir.txt')
|
| 139 |
-
|
| 140 |
-
def spec_for_pip(self):
|
| 141 |
-
"""
|
| 142 |
-
Ensure stdlib distutils when running under pip.
|
| 143 |
-
See pypa/pip#8761 for rationale.
|
| 144 |
-
"""
|
| 145 |
-
if self.pip_imported_during_build():
|
| 146 |
-
return
|
| 147 |
-
clear_distutils()
|
| 148 |
-
self.spec_for_distutils = lambda: None
|
| 149 |
-
|
| 150 |
-
@classmethod
|
| 151 |
-
def pip_imported_during_build(cls):
|
| 152 |
-
"""
|
| 153 |
-
Detect if pip is being imported in a build script. Ref #2355.
|
| 154 |
-
"""
|
| 155 |
-
import traceback
|
| 156 |
-
|
| 157 |
-
return any(
|
| 158 |
-
cls.frame_file_is_setup(frame) for frame, line in traceback.walk_stack(None)
|
| 159 |
-
)
|
| 160 |
-
|
| 161 |
-
@staticmethod
|
| 162 |
-
def frame_file_is_setup(frame):
|
| 163 |
-
"""
|
| 164 |
-
Return True if the indicated frame suggests a setup.py file.
|
| 165 |
-
"""
|
| 166 |
-
# some frames may not have __file__ (#2940)
|
| 167 |
-
return frame.f_globals.get('__file__', '').endswith('setup.py')
|
| 168 |
-
|
| 169 |
-
def spec_for_sensitive_tests(self):
|
| 170 |
-
"""
|
| 171 |
-
Ensure stdlib distutils when running select tests under CPython.
|
| 172 |
-
|
| 173 |
-
python/cpython#91169
|
| 174 |
-
"""
|
| 175 |
-
clear_distutils()
|
| 176 |
-
self.spec_for_distutils = lambda: None
|
| 177 |
-
|
| 178 |
-
sensitive_tests = (
|
| 179 |
-
[
|
| 180 |
-
'test.test_distutils',
|
| 181 |
-
'test.test_peg_generator',
|
| 182 |
-
'test.test_importlib',
|
| 183 |
-
]
|
| 184 |
-
if sys.version_info < (3, 10)
|
| 185 |
-
else [
|
| 186 |
-
'test.test_distutils',
|
| 187 |
-
]
|
| 188 |
-
)
|
| 189 |
-
|
| 190 |
-
|
| 191 |
-
for name in DistutilsMetaFinder.sensitive_tests:
|
| 192 |
-
setattr(
|
| 193 |
-
DistutilsMetaFinder,
|
| 194 |
-
f'spec_for_{name}',
|
| 195 |
-
DistutilsMetaFinder.spec_for_sensitive_tests,
|
| 196 |
-
)
|
| 197 |
-
|
| 198 |
-
|
| 199 |
-
DISTUTILS_FINDER = DistutilsMetaFinder()
|
| 200 |
-
|
| 201 |
-
|
| 202 |
-
def add_shim():
|
| 203 |
-
DISTUTILS_FINDER in sys.meta_path or insert_shim()
|
| 204 |
-
|
| 205 |
-
|
| 206 |
-
class shim:
|
| 207 |
-
def __enter__(self):
|
| 208 |
-
insert_shim()
|
| 209 |
-
|
| 210 |
-
def __exit__(self, exc, value, tb):
|
| 211 |
-
remove_shim()
|
| 212 |
-
|
| 213 |
-
|
| 214 |
-
def insert_shim():
|
| 215 |
-
sys.meta_path.insert(0, DISTUTILS_FINDER)
|
| 216 |
-
|
| 217 |
-
|
| 218 |
-
def remove_shim():
|
| 219 |
-
try:
|
| 220 |
-
sys.meta_path.remove(DISTUTILS_FINDER)
|
| 221 |
-
except ValueError:
|
| 222 |
-
pass
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
venv/lib/python3.11/site-packages/_distutils_hack/__pycache__/__init__.cpython-311.pyc
DELETED
|
Binary file (11.2 kB)
|
|
|
venv/lib/python3.11/site-packages/_distutils_hack/__pycache__/override.cpython-311.pyc
DELETED
|
Binary file (342 Bytes)
|
|
|
venv/lib/python3.11/site-packages/_distutils_hack/override.py
DELETED
|
@@ -1 +0,0 @@
|
|
| 1 |
-
__import__('_distutils_hack').do_override()
|
|
|
|
|
|
venv/lib/python3.11/site-packages/_yaml/__init__.py
DELETED
|
@@ -1,33 +0,0 @@
|
|
| 1 |
-
# This is a stub package designed to roughly emulate the _yaml
|
| 2 |
-
# extension module, which previously existed as a standalone module
|
| 3 |
-
# and has been moved into the `yaml` package namespace.
|
| 4 |
-
# It does not perfectly mimic its old counterpart, but should get
|
| 5 |
-
# close enough for anyone who's relying on it even when they shouldn't.
|
| 6 |
-
import yaml
|
| 7 |
-
|
| 8 |
-
# in some circumstances, the yaml module we imoprted may be from a different version, so we need
|
| 9 |
-
# to tread carefully when poking at it here (it may not have the attributes we expect)
|
| 10 |
-
if not getattr(yaml, '__with_libyaml__', False):
|
| 11 |
-
from sys import version_info
|
| 12 |
-
|
| 13 |
-
exc = ModuleNotFoundError if version_info >= (3, 6) else ImportError
|
| 14 |
-
raise exc("No module named '_yaml'")
|
| 15 |
-
else:
|
| 16 |
-
from yaml._yaml import *
|
| 17 |
-
import warnings
|
| 18 |
-
warnings.warn(
|
| 19 |
-
'The _yaml extension module is now located at yaml._yaml'
|
| 20 |
-
' and its location is subject to change. To use the'
|
| 21 |
-
' LibYAML-based parser and emitter, import from `yaml`:'
|
| 22 |
-
' `from yaml import CLoader as Loader, CDumper as Dumper`.',
|
| 23 |
-
DeprecationWarning
|
| 24 |
-
)
|
| 25 |
-
del warnings
|
| 26 |
-
# Don't `del yaml` here because yaml is actually an existing
|
| 27 |
-
# namespace member of _yaml.
|
| 28 |
-
|
| 29 |
-
__name__ = '_yaml'
|
| 30 |
-
# If the module is top-level (i.e. not a part of any specific package)
|
| 31 |
-
# then the attribute should be set to ''.
|
| 32 |
-
# https://docs.python.org/3.8/library/types.html
|
| 33 |
-
__package__ = ''
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
venv/lib/python3.11/site-packages/_yaml/__pycache__/__init__.cpython-311.pyc
DELETED
|
Binary file (959 Bytes)
|
|
|
venv/lib/python3.11/site-packages/certifi-2025.4.26.dist-info/INSTALLER
DELETED
|
@@ -1 +0,0 @@
|
|
| 1 |
-
pip
|
|
|
|
|
|
venv/lib/python3.11/site-packages/certifi-2025.4.26.dist-info/METADATA
DELETED
|
@@ -1,78 +0,0 @@
|
|
| 1 |
-
Metadata-Version: 2.4
|
| 2 |
-
Name: certifi
|
| 3 |
-
Version: 2025.4.26
|
| 4 |
-
Summary: Python package for providing Mozilla's CA Bundle.
|
| 5 |
-
Home-page: https://github.com/certifi/python-certifi
|
| 6 |
-
Author: Kenneth Reitz
|
| 7 |
-
Author-email: me@kennethreitz.com
|
| 8 |
-
License: MPL-2.0
|
| 9 |
-
Project-URL: Source, https://github.com/certifi/python-certifi
|
| 10 |
-
Classifier: Development Status :: 5 - Production/Stable
|
| 11 |
-
Classifier: Intended Audience :: Developers
|
| 12 |
-
Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
|
| 13 |
-
Classifier: Natural Language :: English
|
| 14 |
-
Classifier: Programming Language :: Python
|
| 15 |
-
Classifier: Programming Language :: Python :: 3
|
| 16 |
-
Classifier: Programming Language :: Python :: 3 :: Only
|
| 17 |
-
Classifier: Programming Language :: Python :: 3.6
|
| 18 |
-
Classifier: Programming Language :: Python :: 3.7
|
| 19 |
-
Classifier: Programming Language :: Python :: 3.8
|
| 20 |
-
Classifier: Programming Language :: Python :: 3.9
|
| 21 |
-
Classifier: Programming Language :: Python :: 3.10
|
| 22 |
-
Classifier: Programming Language :: Python :: 3.11
|
| 23 |
-
Classifier: Programming Language :: Python :: 3.12
|
| 24 |
-
Classifier: Programming Language :: Python :: 3.13
|
| 25 |
-
Requires-Python: >=3.6
|
| 26 |
-
License-File: LICENSE
|
| 27 |
-
Dynamic: author
|
| 28 |
-
Dynamic: author-email
|
| 29 |
-
Dynamic: classifier
|
| 30 |
-
Dynamic: description
|
| 31 |
-
Dynamic: home-page
|
| 32 |
-
Dynamic: license
|
| 33 |
-
Dynamic: license-file
|
| 34 |
-
Dynamic: project-url
|
| 35 |
-
Dynamic: requires-python
|
| 36 |
-
Dynamic: summary
|
| 37 |
-
|
| 38 |
-
Certifi: Python SSL Certificates
|
| 39 |
-
================================
|
| 40 |
-
|
| 41 |
-
Certifi provides Mozilla's carefully curated collection of Root Certificates for
|
| 42 |
-
validating the trustworthiness of SSL certificates while verifying the identity
|
| 43 |
-
of TLS hosts. It has been extracted from the `Requests`_ project.
|
| 44 |
-
|
| 45 |
-
Installation
|
| 46 |
-
------------
|
| 47 |
-
|
| 48 |
-
``certifi`` is available on PyPI. Simply install it with ``pip``::
|
| 49 |
-
|
| 50 |
-
$ pip install certifi
|
| 51 |
-
|
| 52 |
-
Usage
|
| 53 |
-
-----
|
| 54 |
-
|
| 55 |
-
To reference the installed certificate authority (CA) bundle, you can use the
|
| 56 |
-
built-in function::
|
| 57 |
-
|
| 58 |
-
>>> import certifi
|
| 59 |
-
|
| 60 |
-
>>> certifi.where()
|
| 61 |
-
'/usr/local/lib/python3.7/site-packages/certifi/cacert.pem'
|
| 62 |
-
|
| 63 |
-
Or from the command line::
|
| 64 |
-
|
| 65 |
-
$ python -m certifi
|
| 66 |
-
/usr/local/lib/python3.7/site-packages/certifi/cacert.pem
|
| 67 |
-
|
| 68 |
-
Enjoy!
|
| 69 |
-
|
| 70 |
-
.. _`Requests`: https://requests.readthedocs.io/en/master/
|
| 71 |
-
|
| 72 |
-
Addition/Removal of Certificates
|
| 73 |
-
--------------------------------
|
| 74 |
-
|
| 75 |
-
Certifi does not support any addition/removal or other modification of the
|
| 76 |
-
CA trust store content. This project is intended to provide a reliable and
|
| 77 |
-
highly portable root of trust to python deployments. Look to upstream projects
|
| 78 |
-
for methods to use alternate trust.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
venv/lib/python3.11/site-packages/certifi-2025.4.26.dist-info/RECORD
DELETED
|
@@ -1,14 +0,0 @@
|
|
| 1 |
-
certifi-2025.4.26.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
| 2 |
-
certifi-2025.4.26.dist-info/METADATA,sha256=Q1SDFkY5LOQAJmDltZz2wU3VTv1Kh5X-rjGI4KiPHNM,2473
|
| 3 |
-
certifi-2025.4.26.dist-info/RECORD,,
|
| 4 |
-
certifi-2025.4.26.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
|
| 5 |
-
certifi-2025.4.26.dist-info/licenses/LICENSE,sha256=6TcW2mucDVpKHfYP5pWzcPBpVgPSH2-D8FPkLPwQyvc,989
|
| 6 |
-
certifi-2025.4.26.dist-info/top_level.txt,sha256=KMu4vUCfsjLrkPbSNdgdekS-pVJzBAJFO__nI8NF6-U,8
|
| 7 |
-
certifi/__init__.py,sha256=9pyWUGr6sbAlksfOHo0BTV0Gxljjh4IK1kXAjHgjL4I,94
|
| 8 |
-
certifi/__main__.py,sha256=xBBoj905TUWBLRGANOcf7oi6e-3dMP4cEoG9OyMs11g,243
|
| 9 |
-
certifi/__pycache__/__init__.cpython-311.pyc,,
|
| 10 |
-
certifi/__pycache__/__main__.cpython-311.pyc,,
|
| 11 |
-
certifi/__pycache__/core.cpython-311.pyc,,
|
| 12 |
-
certifi/cacert.pem,sha256=K3sQJvGKKX4hSBicoMvn0-f578NvcjHMwoIKQE_rVZY,283771
|
| 13 |
-
certifi/core.py,sha256=qRDDFyXVJwTB_EmoGppaXU_R9qCZvhl-EzxPMuV3nTA,4426
|
| 14 |
-
certifi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
venv/lib/python3.11/site-packages/certifi-2025.4.26.dist-info/WHEEL
DELETED
|
@@ -1,5 +0,0 @@
|
|
| 1 |
-
Wheel-Version: 1.0
|
| 2 |
-
Generator: setuptools (79.0.1)
|
| 3 |
-
Root-Is-Purelib: true
|
| 4 |
-
Tag: py3-none-any
|
| 5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
venv/lib/python3.11/site-packages/certifi-2025.4.26.dist-info/licenses/LICENSE
DELETED
|
@@ -1,20 +0,0 @@
|
|
| 1 |
-
This package contains a modified version of ca-bundle.crt:
|
| 2 |
-
|
| 3 |
-
ca-bundle.crt -- Bundle of CA Root Certificates
|
| 4 |
-
|
| 5 |
-
This is a bundle of X.509 certificates of public Certificate Authorities
|
| 6 |
-
(CA). These were automatically extracted from Mozilla's root certificates
|
| 7 |
-
file (certdata.txt). This file can be found in the mozilla source tree:
|
| 8 |
-
https://hg.mozilla.org/mozilla-central/file/tip/security/nss/lib/ckfw/builtins/certdata.txt
|
| 9 |
-
It contains the certificates in PEM format and therefore
|
| 10 |
-
can be directly used with curl / libcurl / php_curl, or with
|
| 11 |
-
an Apache+mod_ssl webserver for SSL client authentication.
|
| 12 |
-
Just configure this file as the SSLCACertificateFile.#
|
| 13 |
-
|
| 14 |
-
***** BEGIN LICENSE BLOCK *****
|
| 15 |
-
This Source Code Form is subject to the terms of the Mozilla Public License,
|
| 16 |
-
v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain
|
| 17 |
-
one at http://mozilla.org/MPL/2.0/.
|
| 18 |
-
|
| 19 |
-
***** END LICENSE BLOCK *****
|
| 20 |
-
@(#) $RCSfile: certdata.txt,v $ $Revision: 1.80 $ $Date: 2011/11/03 15:11:58 $
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
venv/lib/python3.11/site-packages/certifi-2025.4.26.dist-info/top_level.txt
DELETED
|
@@ -1 +0,0 @@
|
|
| 1 |
-
certifi
|
|
|
|
|
|
venv/lib/python3.11/site-packages/certifi/__init__.py
DELETED
|
@@ -1,4 +0,0 @@
|
|
| 1 |
-
from .core import contents, where
|
| 2 |
-
|
| 3 |
-
__all__ = ["contents", "where"]
|
| 4 |
-
__version__ = "2025.04.26"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
venv/lib/python3.11/site-packages/certifi/__main__.py
DELETED
|
@@ -1,12 +0,0 @@
|
|
| 1 |
-
import argparse
|
| 2 |
-
|
| 3 |
-
from certifi import contents, where
|
| 4 |
-
|
| 5 |
-
parser = argparse.ArgumentParser()
|
| 6 |
-
parser.add_argument("-c", "--contents", action="store_true")
|
| 7 |
-
args = parser.parse_args()
|
| 8 |
-
|
| 9 |
-
if args.contents:
|
| 10 |
-
print(contents())
|
| 11 |
-
else:
|
| 12 |
-
print(where())
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
venv/lib/python3.11/site-packages/certifi/__pycache__/__init__.cpython-311.pyc
DELETED
|
Binary file (354 Bytes)
|
|
|
venv/lib/python3.11/site-packages/certifi/__pycache__/__main__.cpython-311.pyc
DELETED
|
Binary file (743 Bytes)
|
|
|
venv/lib/python3.11/site-packages/certifi/__pycache__/core.cpython-311.pyc
DELETED
|
Binary file (3.78 kB)
|
|
|
venv/lib/python3.11/site-packages/certifi/cacert.pem
DELETED
|
The diff for this file is too large to render.
See raw diff
|
|
|
venv/lib/python3.11/site-packages/certifi/core.py
DELETED
|
@@ -1,114 +0,0 @@
|
|
| 1 |
-
"""
|
| 2 |
-
certifi.py
|
| 3 |
-
~~~~~~~~~~
|
| 4 |
-
|
| 5 |
-
This module returns the installation location of cacert.pem or its contents.
|
| 6 |
-
"""
|
| 7 |
-
import sys
|
| 8 |
-
import atexit
|
| 9 |
-
|
| 10 |
-
def exit_cacert_ctx() -> None:
|
| 11 |
-
_CACERT_CTX.__exit__(None, None, None) # type: ignore[union-attr]
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
if sys.version_info >= (3, 11):
|
| 15 |
-
|
| 16 |
-
from importlib.resources import as_file, files
|
| 17 |
-
|
| 18 |
-
_CACERT_CTX = None
|
| 19 |
-
_CACERT_PATH = None
|
| 20 |
-
|
| 21 |
-
def where() -> str:
|
| 22 |
-
# This is slightly terrible, but we want to delay extracting the file
|
| 23 |
-
# in cases where we're inside of a zipimport situation until someone
|
| 24 |
-
# actually calls where(), but we don't want to re-extract the file
|
| 25 |
-
# on every call of where(), so we'll do it once then store it in a
|
| 26 |
-
# global variable.
|
| 27 |
-
global _CACERT_CTX
|
| 28 |
-
global _CACERT_PATH
|
| 29 |
-
if _CACERT_PATH is None:
|
| 30 |
-
# This is slightly janky, the importlib.resources API wants you to
|
| 31 |
-
# manage the cleanup of this file, so it doesn't actually return a
|
| 32 |
-
# path, it returns a context manager that will give you the path
|
| 33 |
-
# when you enter it and will do any cleanup when you leave it. In
|
| 34 |
-
# the common case of not needing a temporary file, it will just
|
| 35 |
-
# return the file system location and the __exit__() is a no-op.
|
| 36 |
-
#
|
| 37 |
-
# We also have to hold onto the actual context manager, because
|
| 38 |
-
# it will do the cleanup whenever it gets garbage collected, so
|
| 39 |
-
# we will also store that at the global level as well.
|
| 40 |
-
_CACERT_CTX = as_file(files("certifi").joinpath("cacert.pem"))
|
| 41 |
-
_CACERT_PATH = str(_CACERT_CTX.__enter__())
|
| 42 |
-
atexit.register(exit_cacert_ctx)
|
| 43 |
-
|
| 44 |
-
return _CACERT_PATH
|
| 45 |
-
|
| 46 |
-
def contents() -> str:
|
| 47 |
-
return files("certifi").joinpath("cacert.pem").read_text(encoding="ascii")
|
| 48 |
-
|
| 49 |
-
elif sys.version_info >= (3, 7):
|
| 50 |
-
|
| 51 |
-
from importlib.resources import path as get_path, read_text
|
| 52 |
-
|
| 53 |
-
_CACERT_CTX = None
|
| 54 |
-
_CACERT_PATH = None
|
| 55 |
-
|
| 56 |
-
def where() -> str:
|
| 57 |
-
# This is slightly terrible, but we want to delay extracting the
|
| 58 |
-
# file in cases where we're inside of a zipimport situation until
|
| 59 |
-
# someone actually calls where(), but we don't want to re-extract
|
| 60 |
-
# the file on every call of where(), so we'll do it once then store
|
| 61 |
-
# it in a global variable.
|
| 62 |
-
global _CACERT_CTX
|
| 63 |
-
global _CACERT_PATH
|
| 64 |
-
if _CACERT_PATH is None:
|
| 65 |
-
# This is slightly janky, the importlib.resources API wants you
|
| 66 |
-
# to manage the cleanup of this file, so it doesn't actually
|
| 67 |
-
# return a path, it returns a context manager that will give
|
| 68 |
-
# you the path when you enter it and will do any cleanup when
|
| 69 |
-
# you leave it. In the common case of not needing a temporary
|
| 70 |
-
# file, it will just return the file system location and the
|
| 71 |
-
# __exit__() is a no-op.
|
| 72 |
-
#
|
| 73 |
-
# We also have to hold onto the actual context manager, because
|
| 74 |
-
# it will do the cleanup whenever it gets garbage collected, so
|
| 75 |
-
# we will also store that at the global level as well.
|
| 76 |
-
_CACERT_CTX = get_path("certifi", "cacert.pem")
|
| 77 |
-
_CACERT_PATH = str(_CACERT_CTX.__enter__())
|
| 78 |
-
atexit.register(exit_cacert_ctx)
|
| 79 |
-
|
| 80 |
-
return _CACERT_PATH
|
| 81 |
-
|
| 82 |
-
def contents() -> str:
|
| 83 |
-
return read_text("certifi", "cacert.pem", encoding="ascii")
|
| 84 |
-
|
| 85 |
-
else:
|
| 86 |
-
import os
|
| 87 |
-
import types
|
| 88 |
-
from typing import Union
|
| 89 |
-
|
| 90 |
-
Package = Union[types.ModuleType, str]
|
| 91 |
-
Resource = Union[str, "os.PathLike"]
|
| 92 |
-
|
| 93 |
-
# This fallback will work for Python versions prior to 3.7 that lack the
|
| 94 |
-
# importlib.resources module but relies on the existing `where` function
|
| 95 |
-
# so won't address issues with environments like PyOxidizer that don't set
|
| 96 |
-
# __file__ on modules.
|
| 97 |
-
def read_text(
|
| 98 |
-
package: Package,
|
| 99 |
-
resource: Resource,
|
| 100 |
-
encoding: str = 'utf-8',
|
| 101 |
-
errors: str = 'strict'
|
| 102 |
-
) -> str:
|
| 103 |
-
with open(where(), encoding=encoding) as data:
|
| 104 |
-
return data.read()
|
| 105 |
-
|
| 106 |
-
# If we don't have importlib.resources, then we will just do the old logic
|
| 107 |
-
# of assuming we're on the filesystem and munge the path directly.
|
| 108 |
-
def where() -> str:
|
| 109 |
-
f = os.path.dirname(__file__)
|
| 110 |
-
|
| 111 |
-
return os.path.join(f, "cacert.pem")
|
| 112 |
-
|
| 113 |
-
def contents() -> str:
|
| 114 |
-
return read_text("certifi", "cacert.pem", encoding="ascii")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
venv/lib/python3.11/site-packages/certifi/py.typed
DELETED
|
File without changes
|
venv/lib/python3.11/site-packages/charset_normalizer-3.4.2.dist-info/INSTALLER
DELETED
|
@@ -1 +0,0 @@
|
|
| 1 |
-
pip
|
|
|
|
|
|
venv/lib/python3.11/site-packages/charset_normalizer-3.4.2.dist-info/METADATA
DELETED
|
@@ -1,731 +0,0 @@
|
|
| 1 |
-
Metadata-Version: 2.4
|
| 2 |
-
Name: charset-normalizer
|
| 3 |
-
Version: 3.4.2
|
| 4 |
-
Summary: The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet.
|
| 5 |
-
Author-email: "Ahmed R. TAHRI" <tahri.ahmed@proton.me>
|
| 6 |
-
Maintainer-email: "Ahmed R. TAHRI" <tahri.ahmed@proton.me>
|
| 7 |
-
License: MIT
|
| 8 |
-
Project-URL: Changelog, https://github.com/jawah/charset_normalizer/blob/master/CHANGELOG.md
|
| 9 |
-
Project-URL: Documentation, https://charset-normalizer.readthedocs.io/
|
| 10 |
-
Project-URL: Code, https://github.com/jawah/charset_normalizer
|
| 11 |
-
Project-URL: Issue tracker, https://github.com/jawah/charset_normalizer/issues
|
| 12 |
-
Keywords: encoding,charset,charset-detector,detector,normalization,unicode,chardet,detect
|
| 13 |
-
Classifier: Development Status :: 5 - Production/Stable
|
| 14 |
-
Classifier: Intended Audience :: Developers
|
| 15 |
-
Classifier: License :: OSI Approved :: MIT License
|
| 16 |
-
Classifier: Operating System :: OS Independent
|
| 17 |
-
Classifier: Programming Language :: Python
|
| 18 |
-
Classifier: Programming Language :: Python :: 3
|
| 19 |
-
Classifier: Programming Language :: Python :: 3.7
|
| 20 |
-
Classifier: Programming Language :: Python :: 3.8
|
| 21 |
-
Classifier: Programming Language :: Python :: 3.9
|
| 22 |
-
Classifier: Programming Language :: Python :: 3.10
|
| 23 |
-
Classifier: Programming Language :: Python :: 3.11
|
| 24 |
-
Classifier: Programming Language :: Python :: 3.12
|
| 25 |
-
Classifier: Programming Language :: Python :: 3.13
|
| 26 |
-
Classifier: Programming Language :: Python :: 3 :: Only
|
| 27 |
-
Classifier: Programming Language :: Python :: Implementation :: CPython
|
| 28 |
-
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
| 29 |
-
Classifier: Topic :: Text Processing :: Linguistic
|
| 30 |
-
Classifier: Topic :: Utilities
|
| 31 |
-
Classifier: Typing :: Typed
|
| 32 |
-
Requires-Python: >=3.7
|
| 33 |
-
Description-Content-Type: text/markdown
|
| 34 |
-
License-File: LICENSE
|
| 35 |
-
Provides-Extra: unicode-backport
|
| 36 |
-
Dynamic: license-file
|
| 37 |
-
|
| 38 |
-
<h1 align="center">Charset Detection, for Everyone 👋</h1>
|
| 39 |
-
|
| 40 |
-
<p align="center">
|
| 41 |
-
<sup>The Real First Universal Charset Detector</sup><br>
|
| 42 |
-
<a href="https://pypi.org/project/charset-normalizer">
|
| 43 |
-
<img src="https://img.shields.io/pypi/pyversions/charset_normalizer.svg?orange=blue" />
|
| 44 |
-
</a>
|
| 45 |
-
<a href="https://pepy.tech/project/charset-normalizer/">
|
| 46 |
-
<img alt="Download Count Total" src="https://static.pepy.tech/badge/charset-normalizer/month" />
|
| 47 |
-
</a>
|
| 48 |
-
<a href="https://bestpractices.coreinfrastructure.org/projects/7297">
|
| 49 |
-
<img src="https://bestpractices.coreinfrastructure.org/projects/7297/badge">
|
| 50 |
-
</a>
|
| 51 |
-
</p>
|
| 52 |
-
<p align="center">
|
| 53 |
-
<sup><i>Featured Packages</i></sup><br>
|
| 54 |
-
<a href="https://github.com/jawah/niquests">
|
| 55 |
-
<img alt="Static Badge" src="https://img.shields.io/badge/Niquests-Best_HTTP_Client-cyan">
|
| 56 |
-
</a>
|
| 57 |
-
<a href="https://github.com/jawah/wassima">
|
| 58 |
-
<img alt="Static Badge" src="https://img.shields.io/badge/Wassima-Certifi_Killer-cyan">
|
| 59 |
-
</a>
|
| 60 |
-
</p>
|
| 61 |
-
<p align="center">
|
| 62 |
-
<sup><i>In other language (unofficial port - by the community)</i></sup><br>
|
| 63 |
-
<a href="https://github.com/nickspring/charset-normalizer-rs">
|
| 64 |
-
<img alt="Static Badge" src="https://img.shields.io/badge/Rust-red">
|
| 65 |
-
</a>
|
| 66 |
-
</p>
|
| 67 |
-
|
| 68 |
-
> A library that helps you read text from an unknown charset encoding.<br /> Motivated by `chardet`,
|
| 69 |
-
> I'm trying to resolve the issue by taking a new approach.
|
| 70 |
-
> All IANA character set names for which the Python core library provides codecs are supported.
|
| 71 |
-
|
| 72 |
-
<p align="center">
|
| 73 |
-
>>>>> <a href="https://charsetnormalizerweb.ousret.now.sh" target="_blank">👉 Try Me Online Now, Then Adopt Me 👈 </a> <<<<<
|
| 74 |
-
</p>
|
| 75 |
-
|
| 76 |
-
This project offers you an alternative to **Universal Charset Encoding Detector**, also known as **Chardet**.
|
| 77 |
-
|
| 78 |
-
| Feature | [Chardet](https://github.com/chardet/chardet) | Charset Normalizer | [cChardet](https://github.com/PyYoshi/cChardet) |
|
| 79 |
-
|--------------------------------------------------|:---------------------------------------------:|:--------------------------------------------------------------------------------------------------:|:-----------------------------------------------:|
|
| 80 |
-
| `Fast` | ❌ | ✅ | ✅ |
|
| 81 |
-
| `Universal**` | ❌ | ✅ | ❌ |
|
| 82 |
-
| `Reliable` **without** distinguishable standards | ❌ | ✅ | ✅ |
|
| 83 |
-
| `Reliable` **with** distinguishable standards | ✅ | ✅ | ✅ |
|
| 84 |
-
| `License` | LGPL-2.1<br>_restrictive_ | MIT | MPL-1.1<br>_restrictive_ |
|
| 85 |
-
| `Native Python` | ✅ | ✅ | ❌ |
|
| 86 |
-
| `Detect spoken language` | ❌ | ✅ | N/A |
|
| 87 |
-
| `UnicodeDecodeError Safety` | ❌ | ✅ | ❌ |
|
| 88 |
-
| `Whl Size (min)` | 193.6 kB | 42 kB | ~200 kB |
|
| 89 |
-
| `Supported Encoding` | 33 | 🎉 [99](https://charset-normalizer.readthedocs.io/en/latest/user/support.html#supported-encodings) | 40 |
|
| 90 |
-
|
| 91 |
-
<p align="center">
|
| 92 |
-
<img src="https://i.imgflip.com/373iay.gif" alt="Reading Normalized Text" width="226"/><img src="https://media.tenor.com/images/c0180f70732a18b4965448d33adba3d0/tenor.gif" alt="Cat Reading Text" width="200"/>
|
| 93 |
-
</p>
|
| 94 |
-
|
| 95 |
-
*\*\* : They are clearly using specific code for a specific encoding even if covering most of used one*<br>
|
| 96 |
-
|
| 97 |
-
## ⚡ Performance
|
| 98 |
-
|
| 99 |
-
This package offer better performance than its counterpart Chardet. Here are some numbers.
|
| 100 |
-
|
| 101 |
-
| Package | Accuracy | Mean per file (ms) | File per sec (est) |
|
| 102 |
-
|-----------------------------------------------|:--------:|:------------------:|:------------------:|
|
| 103 |
-
| [chardet](https://github.com/chardet/chardet) | 86 % | 63 ms | 16 file/sec |
|
| 104 |
-
| charset-normalizer | **98 %** | **10 ms** | 100 file/sec |
|
| 105 |
-
|
| 106 |
-
| Package | 99th percentile | 95th percentile | 50th percentile |
|
| 107 |
-
|-----------------------------------------------|:---------------:|:---------------:|:---------------:|
|
| 108 |
-
| [chardet](https://github.com/chardet/chardet) | 265 ms | 71 ms | 7 ms |
|
| 109 |
-
| charset-normalizer | 100 ms | 50 ms | 5 ms |
|
| 110 |
-
|
| 111 |
-
_updated as of december 2024 using CPython 3.12_
|
| 112 |
-
|
| 113 |
-
Chardet's performance on larger file (1MB+) are very poor. Expect huge difference on large payload.
|
| 114 |
-
|
| 115 |
-
> Stats are generated using 400+ files using default parameters. More details on used files, see GHA workflows.
|
| 116 |
-
> And yes, these results might change at any time. The dataset can be updated to include more files.
|
| 117 |
-
> The actual delays heavily depends on your CPU capabilities. The factors should remain the same.
|
| 118 |
-
> Keep in mind that the stats are generous and that Chardet accuracy vs our is measured using Chardet initial capability
|
| 119 |
-
> (e.g. Supported Encoding) Challenge-them if you want.
|
| 120 |
-
|
| 121 |
-
## ✨ Installation
|
| 122 |
-
|
| 123 |
-
Using pip:
|
| 124 |
-
|
| 125 |
-
```sh
|
| 126 |
-
pip install charset-normalizer -U
|
| 127 |
-
```
|
| 128 |
-
|
| 129 |
-
## 🚀 Basic Usage
|
| 130 |
-
|
| 131 |
-
### CLI
|
| 132 |
-
This package comes with a CLI.
|
| 133 |
-
|
| 134 |
-
```
|
| 135 |
-
usage: normalizer [-h] [-v] [-a] [-n] [-m] [-r] [-f] [-t THRESHOLD]
|
| 136 |
-
file [file ...]
|
| 137 |
-
|
| 138 |
-
The Real First Universal Charset Detector. Discover originating encoding used
|
| 139 |
-
on text file. Normalize text to unicode.
|
| 140 |
-
|
| 141 |
-
positional arguments:
|
| 142 |
-
files File(s) to be analysed
|
| 143 |
-
|
| 144 |
-
optional arguments:
|
| 145 |
-
-h, --help show this help message and exit
|
| 146 |
-
-v, --verbose Display complementary information about file if any.
|
| 147 |
-
Stdout will contain logs about the detection process.
|
| 148 |
-
-a, --with-alternative
|
| 149 |
-
Output complementary possibilities if any. Top-level
|
| 150 |
-
JSON WILL be a list.
|
| 151 |
-
-n, --normalize Permit to normalize input file. If not set, program
|
| 152 |
-
does not write anything.
|
| 153 |
-
-m, --minimal Only output the charset detected to STDOUT. Disabling
|
| 154 |
-
JSON output.
|
| 155 |
-
-r, --replace Replace file when trying to normalize it instead of
|
| 156 |
-
creating a new one.
|
| 157 |
-
-f, --force Replace file without asking if you are sure, use this
|
| 158 |
-
flag with caution.
|
| 159 |
-
-t THRESHOLD, --threshold THRESHOLD
|
| 160 |
-
Define a custom maximum amount of chaos allowed in
|
| 161 |
-
decoded content. 0. <= chaos <= 1.
|
| 162 |
-
--version Show version information and exit.
|
| 163 |
-
```
|
| 164 |
-
|
| 165 |
-
```bash
|
| 166 |
-
normalizer ./data/sample.1.fr.srt
|
| 167 |
-
```
|
| 168 |
-
|
| 169 |
-
or
|
| 170 |
-
|
| 171 |
-
```bash
|
| 172 |
-
python -m charset_normalizer ./data/sample.1.fr.srt
|
| 173 |
-
```
|
| 174 |
-
|
| 175 |
-
🎉 Since version 1.4.0 the CLI produce easily usable stdout result in JSON format.
|
| 176 |
-
|
| 177 |
-
```json
|
| 178 |
-
{
|
| 179 |
-
"path": "/home/default/projects/charset_normalizer/data/sample.1.fr.srt",
|
| 180 |
-
"encoding": "cp1252",
|
| 181 |
-
"encoding_aliases": [
|
| 182 |
-
"1252",
|
| 183 |
-
"windows_1252"
|
| 184 |
-
],
|
| 185 |
-
"alternative_encodings": [
|
| 186 |
-
"cp1254",
|
| 187 |
-
"cp1256",
|
| 188 |
-
"cp1258",
|
| 189 |
-
"iso8859_14",
|
| 190 |
-
"iso8859_15",
|
| 191 |
-
"iso8859_16",
|
| 192 |
-
"iso8859_3",
|
| 193 |
-
"iso8859_9",
|
| 194 |
-
"latin_1",
|
| 195 |
-
"mbcs"
|
| 196 |
-
],
|
| 197 |
-
"language": "French",
|
| 198 |
-
"alphabets": [
|
| 199 |
-
"Basic Latin",
|
| 200 |
-
"Latin-1 Supplement"
|
| 201 |
-
],
|
| 202 |
-
"has_sig_or_bom": false,
|
| 203 |
-
"chaos": 0.149,
|
| 204 |
-
"coherence": 97.152,
|
| 205 |
-
"unicode_path": null,
|
| 206 |
-
"is_preferred": true
|
| 207 |
-
}
|
| 208 |
-
```
|
| 209 |
-
|
| 210 |
-
### Python
|
| 211 |
-
*Just print out normalized text*
|
| 212 |
-
```python
|
| 213 |
-
from charset_normalizer import from_path
|
| 214 |
-
|
| 215 |
-
results = from_path('./my_subtitle.srt')
|
| 216 |
-
|
| 217 |
-
print(str(results.best()))
|
| 218 |
-
```
|
| 219 |
-
|
| 220 |
-
*Upgrade your code without effort*
|
| 221 |
-
```python
|
| 222 |
-
from charset_normalizer import detect
|
| 223 |
-
```
|
| 224 |
-
|
| 225 |
-
The above code will behave the same as **chardet**. We ensure that we offer the best (reasonable) BC result possible.
|
| 226 |
-
|
| 227 |
-
See the docs for advanced usage : [readthedocs.io](https://charset-normalizer.readthedocs.io/en/latest/)
|
| 228 |
-
|
| 229 |
-
## 😇 Why
|
| 230 |
-
|
| 231 |
-
When I started using Chardet, I noticed that it was not suited to my expectations, and I wanted to propose a
|
| 232 |
-
reliable alternative using a completely different method. Also! I never back down on a good challenge!
|
| 233 |
-
|
| 234 |
-
I **don't care** about the **originating charset** encoding, because **two different tables** can
|
| 235 |
-
produce **two identical rendered string.**
|
| 236 |
-
What I want is to get readable text, the best I can.
|
| 237 |
-
|
| 238 |
-
In a way, **I'm brute forcing text decoding.** How cool is that ? 😎
|
| 239 |
-
|
| 240 |
-
Don't confuse package **ftfy** with charset-normalizer or chardet. ftfy goal is to repair Unicode string whereas charset-normalizer to convert raw file in unknown encoding to unicode.
|
| 241 |
-
|
| 242 |
-
## 🍰 How
|
| 243 |
-
|
| 244 |
-
- Discard all charset encoding table that could not fit the binary content.
|
| 245 |
-
- Measure noise, or the mess once opened (by chunks) with a corresponding charset encoding.
|
| 246 |
-
- Extract matches with the lowest mess detected.
|
| 247 |
-
- Additionally, we measure coherence / probe for a language.
|
| 248 |
-
|
| 249 |
-
**Wait a minute**, what is noise/mess and coherence according to **YOU ?**
|
| 250 |
-
|
| 251 |
-
*Noise :* I opened hundred of text files, **written by humans**, with the wrong encoding table. **I observed**, then
|
| 252 |
-
**I established** some ground rules about **what is obvious** when **it seems like** a mess (aka. defining noise in rendered text).
|
| 253 |
-
I know that my interpretation of what is noise is probably incomplete, feel free to contribute in order to
|
| 254 |
-
improve or rewrite it.
|
| 255 |
-
|
| 256 |
-
*Coherence :* For each language there is on earth, we have computed ranked letter appearance occurrences (the best we can). So I thought
|
| 257 |
-
that intel is worth something here. So I use those records against decoded text to check if I can detect intelligent design.
|
| 258 |
-
|
| 259 |
-
## ⚡ Known limitations
|
| 260 |
-
|
| 261 |
-
- Language detection is unreliable when text contains two or more languages sharing identical letters. (eg. HTML (english tags) + Turkish content (Sharing Latin characters))
|
| 262 |
-
- Every charset detector heavily depends on sufficient content. In common cases, do not bother run detection on very tiny content.
|
| 263 |
-
|
| 264 |
-
## ⚠️ About Python EOLs
|
| 265 |
-
|
| 266 |
-
**If you are running:**
|
| 267 |
-
|
| 268 |
-
- Python >=2.7,<3.5: Unsupported
|
| 269 |
-
- Python 3.5: charset-normalizer < 2.1
|
| 270 |
-
- Python 3.6: charset-normalizer < 3.1
|
| 271 |
-
- Python 3.7: charset-normalizer < 4.0
|
| 272 |
-
|
| 273 |
-
Upgrade your Python interpreter as soon as possible.
|
| 274 |
-
|
| 275 |
-
## 👤 Contributing
|
| 276 |
-
|
| 277 |
-
Contributions, issues and feature requests are very much welcome.<br />
|
| 278 |
-
Feel free to check [issues page](https://github.com/ousret/charset_normalizer/issues) if you want to contribute.
|
| 279 |
-
|
| 280 |
-
## 📝 License
|
| 281 |
-
|
| 282 |
-
Copyright © [Ahmed TAHRI @Ousret](https://github.com/Ousret).<br />
|
| 283 |
-
This project is [MIT](https://github.com/Ousret/charset_normalizer/blob/master/LICENSE) licensed.
|
| 284 |
-
|
| 285 |
-
Characters frequencies used in this project © 2012 [Denny Vrandečić](http://simia.net/letters/)
|
| 286 |
-
|
| 287 |
-
## 💼 For Enterprise
|
| 288 |
-
|
| 289 |
-
Professional support for charset-normalizer is available as part of the [Tidelift
|
| 290 |
-
Subscription][1]. Tidelift gives software development teams a single source for
|
| 291 |
-
purchasing and maintaining their software, with professional grade assurances
|
| 292 |
-
from the experts who know it best, while seamlessly integrating with existing
|
| 293 |
-
tools.
|
| 294 |
-
|
| 295 |
-
[1]: https://tidelift.com/subscription/pkg/pypi-charset-normalizer?utm_source=pypi-charset-normalizer&utm_medium=readme
|
| 296 |
-
|
| 297 |
-
[](https://www.bestpractices.dev/projects/7297)
|
| 298 |
-
|
| 299 |
-
# Changelog
|
| 300 |
-
All notable changes to charset-normalizer will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
| 301 |
-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
| 302 |
-
|
| 303 |
-
## [3.4.2](https://github.com/Ousret/charset_normalizer/compare/3.4.1...3.4.2) (2025-05-02)
|
| 304 |
-
|
| 305 |
-
### Fixed
|
| 306 |
-
- Addressed the DeprecationWarning in our CLI regarding `argparse.FileType` by backporting the target class into the package. (#591)
|
| 307 |
-
- Improved the overall reliability of the detector with CJK Ideographs. (#605) (#587)
|
| 308 |
-
|
| 309 |
-
### Changed
|
| 310 |
-
- Optional mypyc compilation upgraded to version 1.15 for Python >= 3.8
|
| 311 |
-
|
| 312 |
-
## [3.4.1](https://github.com/Ousret/charset_normalizer/compare/3.4.0...3.4.1) (2024-12-24)
|
| 313 |
-
|
| 314 |
-
### Changed
|
| 315 |
-
- Project metadata are now stored using `pyproject.toml` instead of `setup.cfg` using setuptools as the build backend.
|
| 316 |
-
- Enforce annotation delayed loading for a simpler and consistent types in the project.
|
| 317 |
-
- Optional mypyc compilation upgraded to version 1.14 for Python >= 3.8
|
| 318 |
-
|
| 319 |
-
### Added
|
| 320 |
-
- pre-commit configuration.
|
| 321 |
-
- noxfile.
|
| 322 |
-
|
| 323 |
-
### Removed
|
| 324 |
-
- `build-requirements.txt` as per using `pyproject.toml` native build configuration.
|
| 325 |
-
- `bin/integration.py` and `bin/serve.py` in favor of downstream integration test (see noxfile).
|
| 326 |
-
- `setup.cfg` in favor of `pyproject.toml` metadata configuration.
|
| 327 |
-
- Unused `utils.range_scan` function.
|
| 328 |
-
|
| 329 |
-
### Fixed
|
| 330 |
-
- Converting content to Unicode bytes may insert `utf_8` instead of preferred `utf-8`. (#572)
|
| 331 |
-
- Deprecation warning "'count' is passed as positional argument" when converting to Unicode bytes on Python 3.13+
|
| 332 |
-
|
| 333 |
-
## [3.4.0](https://github.com/Ousret/charset_normalizer/compare/3.3.2...3.4.0) (2024-10-08)
|
| 334 |
-
|
| 335 |
-
### Added
|
| 336 |
-
- Argument `--no-preemptive` in the CLI to prevent the detector to search for hints.
|
| 337 |
-
- Support for Python 3.13 (#512)
|
| 338 |
-
|
| 339 |
-
### Fixed
|
| 340 |
-
- Relax the TypeError exception thrown when trying to compare a CharsetMatch with anything else than a CharsetMatch.
|
| 341 |
-
- Improved the general reliability of the detector based on user feedbacks. (#520) (#509) (#498) (#407) (#537)
|
| 342 |
-
- Declared charset in content (preemptive detection) not changed when converting to utf-8 bytes. (#381)
|
| 343 |
-
|
| 344 |
-
## [3.3.2](https://github.com/Ousret/charset_normalizer/compare/3.3.1...3.3.2) (2023-10-31)
|
| 345 |
-
|
| 346 |
-
### Fixed
|
| 347 |
-
- Unintentional memory usage regression when using large payload that match several encoding (#376)
|
| 348 |
-
- Regression on some detection case showcased in the documentation (#371)
|
| 349 |
-
|
| 350 |
-
### Added
|
| 351 |
-
- Noise (md) probe that identify malformed arabic representation due to the presence of letters in isolated form (credit to my wife)
|
| 352 |
-
|
| 353 |
-
## [3.3.1](https://github.com/Ousret/charset_normalizer/compare/3.3.0...3.3.1) (2023-10-22)
|
| 354 |
-
|
| 355 |
-
### Changed
|
| 356 |
-
- Optional mypyc compilation upgraded to version 1.6.1 for Python >= 3.8
|
| 357 |
-
- Improved the general detection reliability based on reports from the community
|
| 358 |
-
|
| 359 |
-
## [3.3.0](https://github.com/Ousret/charset_normalizer/compare/3.2.0...3.3.0) (2023-09-30)
|
| 360 |
-
|
| 361 |
-
### Added
|
| 362 |
-
- Allow to execute the CLI (e.g. normalizer) through `python -m charset_normalizer.cli` or `python -m charset_normalizer`
|
| 363 |
-
- Support for 9 forgotten encoding that are supported by Python but unlisted in `encoding.aliases` as they have no alias (#323)
|
| 364 |
-
|
| 365 |
-
### Removed
|
| 366 |
-
- (internal) Redundant utils.is_ascii function and unused function is_private_use_only
|
| 367 |
-
- (internal) charset_normalizer.assets is moved inside charset_normalizer.constant
|
| 368 |
-
|
| 369 |
-
### Changed
|
| 370 |
-
- (internal) Unicode code blocks in constants are updated using the latest v15.0.0 definition to improve detection
|
| 371 |
-
- Optional mypyc compilation upgraded to version 1.5.1 for Python >= 3.8
|
| 372 |
-
|
| 373 |
-
### Fixed
|
| 374 |
-
- Unable to properly sort CharsetMatch when both chaos/noise and coherence were close due to an unreachable condition in \_\_lt\_\_ (#350)
|
| 375 |
-
|
| 376 |
-
## [3.2.0](https://github.com/Ousret/charset_normalizer/compare/3.1.0...3.2.0) (2023-06-07)
|
| 377 |
-
|
| 378 |
-
### Changed
|
| 379 |
-
- Typehint for function `from_path` no longer enforce `PathLike` as its first argument
|
| 380 |
-
- Minor improvement over the global detection reliability
|
| 381 |
-
|
| 382 |
-
### Added
|
| 383 |
-
- Introduce function `is_binary` that relies on main capabilities, and optimized to detect binaries
|
| 384 |
-
- Propagate `enable_fallback` argument throughout `from_bytes`, `from_path`, and `from_fp` that allow a deeper control over the detection (default True)
|
| 385 |
-
- Explicit support for Python 3.12
|
| 386 |
-
|
| 387 |
-
### Fixed
|
| 388 |
-
- Edge case detection failure where a file would contain 'very-long' camel cased word (Issue #289)
|
| 389 |
-
|
| 390 |
-
## [3.1.0](https://github.com/Ousret/charset_normalizer/compare/3.0.1...3.1.0) (2023-03-06)
|
| 391 |
-
|
| 392 |
-
### Added
|
| 393 |
-
- Argument `should_rename_legacy` for legacy function `detect` and disregard any new arguments without errors (PR #262)
|
| 394 |
-
|
| 395 |
-
### Removed
|
| 396 |
-
- Support for Python 3.6 (PR #260)
|
| 397 |
-
|
| 398 |
-
### Changed
|
| 399 |
-
- Optional speedup provided by mypy/c 1.0.1
|
| 400 |
-
|
| 401 |
-
## [3.0.1](https://github.com/Ousret/charset_normalizer/compare/3.0.0...3.0.1) (2022-11-18)
|
| 402 |
-
|
| 403 |
-
### Fixed
|
| 404 |
-
- Multi-bytes cutter/chunk generator did not always cut correctly (PR #233)
|
| 405 |
-
|
| 406 |
-
### Changed
|
| 407 |
-
- Speedup provided by mypy/c 0.990 on Python >= 3.7
|
| 408 |
-
|
| 409 |
-
## [3.0.0](https://github.com/Ousret/charset_normalizer/compare/2.1.1...3.0.0) (2022-10-20)
|
| 410 |
-
|
| 411 |
-
### Added
|
| 412 |
-
- Extend the capability of explain=True when cp_isolation contains at most two entries (min one), will log in details of the Mess-detector results
|
| 413 |
-
- Support for alternative language frequency set in charset_normalizer.assets.FREQUENCIES
|
| 414 |
-
- Add parameter `language_threshold` in `from_bytes`, `from_path` and `from_fp` to adjust the minimum expected coherence ratio
|
| 415 |
-
- `normalizer --version` now specify if current version provide extra speedup (meaning mypyc compilation whl)
|
| 416 |
-
|
| 417 |
-
### Changed
|
| 418 |
-
- Build with static metadata using 'build' frontend
|
| 419 |
-
- Make the language detection stricter
|
| 420 |
-
- Optional: Module `md.py` can be compiled using Mypyc to provide an extra speedup up to 4x faster than v2.1
|
| 421 |
-
|
| 422 |
-
### Fixed
|
| 423 |
-
- CLI with opt --normalize fail when using full path for files
|
| 424 |
-
- TooManyAccentuatedPlugin induce false positive on the mess detection when too few alpha character have been fed to it
|
| 425 |
-
- Sphinx warnings when generating the documentation
|
| 426 |
-
|
| 427 |
-
### Removed
|
| 428 |
-
- Coherence detector no longer return 'Simple English' instead return 'English'
|
| 429 |
-
- Coherence detector no longer return 'Classical Chinese' instead return 'Chinese'
|
| 430 |
-
- Breaking: Method `first()` and `best()` from CharsetMatch
|
| 431 |
-
- UTF-7 will no longer appear as "detected" without a recognized SIG/mark (is unreliable/conflict with ASCII)
|
| 432 |
-
- Breaking: Class aliases CharsetDetector, CharsetDoctor, CharsetNormalizerMatch and CharsetNormalizerMatches
|
| 433 |
-
- Breaking: Top-level function `normalize`
|
| 434 |
-
- Breaking: Properties `chaos_secondary_pass`, `coherence_non_latin` and `w_counter` from CharsetMatch
|
| 435 |
-
- Support for the backport `unicodedata2`
|
| 436 |
-
|
| 437 |
-
## [3.0.0rc1](https://github.com/Ousret/charset_normalizer/compare/3.0.0b2...3.0.0rc1) (2022-10-18)
|
| 438 |
-
|
| 439 |
-
### Added
|
| 440 |
-
- Extend the capability of explain=True when cp_isolation contains at most two entries (min one), will log in details of the Mess-detector results
|
| 441 |
-
- Support for alternative language frequency set in charset_normalizer.assets.FREQUENCIES
|
| 442 |
-
- Add parameter `language_threshold` in `from_bytes`, `from_path` and `from_fp` to adjust the minimum expected coherence ratio
|
| 443 |
-
|
| 444 |
-
### Changed
|
| 445 |
-
- Build with static metadata using 'build' frontend
|
| 446 |
-
- Make the language detection stricter
|
| 447 |
-
|
| 448 |
-
### Fixed
|
| 449 |
-
- CLI with opt --normalize fail when using full path for files
|
| 450 |
-
- TooManyAccentuatedPlugin induce false positive on the mess detection when too few alpha character have been fed to it
|
| 451 |
-
|
| 452 |
-
### Removed
|
| 453 |
-
- Coherence detector no longer return 'Simple English' instead return 'English'
|
| 454 |
-
- Coherence detector no longer return 'Classical Chinese' instead return 'Chinese'
|
| 455 |
-
|
| 456 |
-
## [3.0.0b2](https://github.com/Ousret/charset_normalizer/compare/3.0.0b1...3.0.0b2) (2022-08-21)
|
| 457 |
-
|
| 458 |
-
### Added
|
| 459 |
-
- `normalizer --version` now specify if current version provide extra speedup (meaning mypyc compilation whl)
|
| 460 |
-
|
| 461 |
-
### Removed
|
| 462 |
-
- Breaking: Method `first()` and `best()` from CharsetMatch
|
| 463 |
-
- UTF-7 will no longer appear as "detected" without a recognized SIG/mark (is unreliable/conflict with ASCII)
|
| 464 |
-
|
| 465 |
-
### Fixed
|
| 466 |
-
- Sphinx warnings when generating the documentation
|
| 467 |
-
|
| 468 |
-
## [3.0.0b1](https://github.com/Ousret/charset_normalizer/compare/2.1.0...3.0.0b1) (2022-08-15)
|
| 469 |
-
|
| 470 |
-
### Changed
|
| 471 |
-
- Optional: Module `md.py` can be compiled using Mypyc to provide an extra speedup up to 4x faster than v2.1
|
| 472 |
-
|
| 473 |
-
### Removed
|
| 474 |
-
- Breaking: Class aliases CharsetDetector, CharsetDoctor, CharsetNormalizerMatch and CharsetNormalizerMatches
|
| 475 |
-
- Breaking: Top-level function `normalize`
|
| 476 |
-
- Breaking: Properties `chaos_secondary_pass`, `coherence_non_latin` and `w_counter` from CharsetMatch
|
| 477 |
-
- Support for the backport `unicodedata2`
|
| 478 |
-
|
| 479 |
-
## [2.1.1](https://github.com/Ousret/charset_normalizer/compare/2.1.0...2.1.1) (2022-08-19)
|
| 480 |
-
|
| 481 |
-
### Deprecated
|
| 482 |
-
- Function `normalize` scheduled for removal in 3.0
|
| 483 |
-
|
| 484 |
-
### Changed
|
| 485 |
-
- Removed useless call to decode in fn is_unprintable (#206)
|
| 486 |
-
|
| 487 |
-
### Fixed
|
| 488 |
-
- Third-party library (i18n xgettext) crashing not recognizing utf_8 (PEP 263) with underscore from [@aleksandernovikov](https://github.com/aleksandernovikov) (#204)
|
| 489 |
-
|
| 490 |
-
## [2.1.0](https://github.com/Ousret/charset_normalizer/compare/2.0.12...2.1.0) (2022-06-19)
|
| 491 |
-
|
| 492 |
-
### Added
|
| 493 |
-
- Output the Unicode table version when running the CLI with `--version` (PR #194)
|
| 494 |
-
|
| 495 |
-
### Changed
|
| 496 |
-
- Re-use decoded buffer for single byte character sets from [@nijel](https://github.com/nijel) (PR #175)
|
| 497 |
-
- Fixing some performance bottlenecks from [@deedy5](https://github.com/deedy5) (PR #183)
|
| 498 |
-
|
| 499 |
-
### Fixed
|
| 500 |
-
- Workaround potential bug in cpython with Zero Width No-Break Space located in Arabic Presentation Forms-B, Unicode 1.1 not acknowledged as space (PR #175)
|
| 501 |
-
- CLI default threshold aligned with the API threshold from [@oleksandr-kuzmenko](https://github.com/oleksandr-kuzmenko) (PR #181)
|
| 502 |
-
|
| 503 |
-
### Removed
|
| 504 |
-
- Support for Python 3.5 (PR #192)
|
| 505 |
-
|
| 506 |
-
### Deprecated
|
| 507 |
-
- Use of backport unicodedata from `unicodedata2` as Python is quickly catching up, scheduled for removal in 3.0 (PR #194)
|
| 508 |
-
|
| 509 |
-
## [2.0.12](https://github.com/Ousret/charset_normalizer/compare/2.0.11...2.0.12) (2022-02-12)
|
| 510 |
-
|
| 511 |
-
### Fixed
|
| 512 |
-
- ASCII miss-detection on rare cases (PR #170)
|
| 513 |
-
|
| 514 |
-
## [2.0.11](https://github.com/Ousret/charset_normalizer/compare/2.0.10...2.0.11) (2022-01-30)
|
| 515 |
-
|
| 516 |
-
### Added
|
| 517 |
-
- Explicit support for Python 3.11 (PR #164)
|
| 518 |
-
|
| 519 |
-
### Changed
|
| 520 |
-
- The logging behavior have been completely reviewed, now using only TRACE and DEBUG levels (PR #163 #165)
|
| 521 |
-
|
| 522 |
-
## [2.0.10](https://github.com/Ousret/charset_normalizer/compare/2.0.9...2.0.10) (2022-01-04)
|
| 523 |
-
|
| 524 |
-
### Fixed
|
| 525 |
-
- Fallback match entries might lead to UnicodeDecodeError for large bytes sequence (PR #154)
|
| 526 |
-
|
| 527 |
-
### Changed
|
| 528 |
-
- Skipping the language-detection (CD) on ASCII (PR #155)
|
| 529 |
-
|
| 530 |
-
## [2.0.9](https://github.com/Ousret/charset_normalizer/compare/2.0.8...2.0.9) (2021-12-03)
|
| 531 |
-
|
| 532 |
-
### Changed
|
| 533 |
-
- Moderating the logging impact (since 2.0.8) for specific environments (PR #147)
|
| 534 |
-
|
| 535 |
-
### Fixed
|
| 536 |
-
- Wrong logging level applied when setting kwarg `explain` to True (PR #146)
|
| 537 |
-
|
| 538 |
-
## [2.0.8](https://github.com/Ousret/charset_normalizer/compare/2.0.7...2.0.8) (2021-11-24)
|
| 539 |
-
### Changed
|
| 540 |
-
- Improvement over Vietnamese detection (PR #126)
|
| 541 |
-
- MD improvement on trailing data and long foreign (non-pure latin) data (PR #124)
|
| 542 |
-
- Efficiency improvements in cd/alphabet_languages from [@adbar](https://github.com/adbar) (PR #122)
|
| 543 |
-
- call sum() without an intermediary list following PEP 289 recommendations from [@adbar](https://github.com/adbar) (PR #129)
|
| 544 |
-
- Code style as refactored by Sourcery-AI (PR #131)
|
| 545 |
-
- Minor adjustment on the MD around european words (PR #133)
|
| 546 |
-
- Remove and replace SRTs from assets / tests (PR #139)
|
| 547 |
-
- Initialize the library logger with a `NullHandler` by default from [@nmaynes](https://github.com/nmaynes) (PR #135)
|
| 548 |
-
- Setting kwarg `explain` to True will add provisionally (bounded to function lifespan) a specific stream handler (PR #135)
|
| 549 |
-
|
| 550 |
-
### Fixed
|
| 551 |
-
- Fix large (misleading) sequence giving UnicodeDecodeError (PR #137)
|
| 552 |
-
- Avoid using too insignificant chunk (PR #137)
|
| 553 |
-
|
| 554 |
-
### Added
|
| 555 |
-
- Add and expose function `set_logging_handler` to configure a specific StreamHandler from [@nmaynes](https://github.com/nmaynes) (PR #135)
|
| 556 |
-
- Add `CHANGELOG.md` entries, format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) (PR #141)
|
| 557 |
-
|
| 558 |
-
## [2.0.7](https://github.com/Ousret/charset_normalizer/compare/2.0.6...2.0.7) (2021-10-11)
|
| 559 |
-
### Added
|
| 560 |
-
- Add support for Kazakh (Cyrillic) language detection (PR #109)
|
| 561 |
-
|
| 562 |
-
### Changed
|
| 563 |
-
- Further, improve inferring the language from a given single-byte code page (PR #112)
|
| 564 |
-
- Vainly trying to leverage PEP263 when PEP3120 is not supported (PR #116)
|
| 565 |
-
- Refactoring for potential performance improvements in loops from [@adbar](https://github.com/adbar) (PR #113)
|
| 566 |
-
- Various detection improvement (MD+CD) (PR #117)
|
| 567 |
-
|
| 568 |
-
### Removed
|
| 569 |
-
- Remove redundant logging entry about detected language(s) (PR #115)
|
| 570 |
-
|
| 571 |
-
### Fixed
|
| 572 |
-
- Fix a minor inconsistency between Python 3.5 and other versions regarding language detection (PR #117 #102)
|
| 573 |
-
|
| 574 |
-
## [2.0.6](https://github.com/Ousret/charset_normalizer/compare/2.0.5...2.0.6) (2021-09-18)
|
| 575 |
-
### Fixed
|
| 576 |
-
- Unforeseen regression with the loss of the backward-compatibility with some older minor of Python 3.5.x (PR #100)
|
| 577 |
-
- Fix CLI crash when using --minimal output in certain cases (PR #103)
|
| 578 |
-
|
| 579 |
-
### Changed
|
| 580 |
-
- Minor improvement to the detection efficiency (less than 1%) (PR #106 #101)
|
| 581 |
-
|
| 582 |
-
## [2.0.5](https://github.com/Ousret/charset_normalizer/compare/2.0.4...2.0.5) (2021-09-14)
|
| 583 |
-
### Changed
|
| 584 |
-
- The project now comply with: flake8, mypy, isort and black to ensure a better overall quality (PR #81)
|
| 585 |
-
- The BC-support with v1.x was improved, the old staticmethods are restored (PR #82)
|
| 586 |
-
- The Unicode detection is slightly improved (PR #93)
|
| 587 |
-
- Add syntax sugar \_\_bool\_\_ for results CharsetMatches list-container (PR #91)
|
| 588 |
-
|
| 589 |
-
### Removed
|
| 590 |
-
- The project no longer raise warning on tiny content given for detection, will be simply logged as warning instead (PR #92)
|
| 591 |
-
|
| 592 |
-
### Fixed
|
| 593 |
-
- In some rare case, the chunks extractor could cut in the middle of a multi-byte character and could mislead the mess detection (PR #95)
|
| 594 |
-
- Some rare 'space' characters could trip up the UnprintablePlugin/Mess detection (PR #96)
|
| 595 |
-
- The MANIFEST.in was not exhaustive (PR #78)
|
| 596 |
-
|
| 597 |
-
## [2.0.4](https://github.com/Ousret/charset_normalizer/compare/2.0.3...2.0.4) (2021-07-30)
|
| 598 |
-
### Fixed
|
| 599 |
-
- The CLI no longer raise an unexpected exception when no encoding has been found (PR #70)
|
| 600 |
-
- Fix accessing the 'alphabets' property when the payload contains surrogate characters (PR #68)
|
| 601 |
-
- The logger could mislead (explain=True) on detected languages and the impact of one MBCS match (PR #72)
|
| 602 |
-
- Submatch factoring could be wrong in rare edge cases (PR #72)
|
| 603 |
-
- Multiple files given to the CLI were ignored when publishing results to STDOUT. (After the first path) (PR #72)
|
| 604 |
-
- Fix line endings from CRLF to LF for certain project files (PR #67)
|
| 605 |
-
|
| 606 |
-
### Changed
|
| 607 |
-
- Adjust the MD to lower the sensitivity, thus improving the global detection reliability (PR #69 #76)
|
| 608 |
-
- Allow fallback on specified encoding if any (PR #71)
|
| 609 |
-
|
| 610 |
-
## [2.0.3](https://github.com/Ousret/charset_normalizer/compare/2.0.2...2.0.3) (2021-07-16)
|
| 611 |
-
### Changed
|
| 612 |
-
- Part of the detection mechanism has been improved to be less sensitive, resulting in more accurate detection results. Especially ASCII. (PR #63)
|
| 613 |
-
- According to the community wishes, the detection will fall back on ASCII or UTF-8 in a last-resort case. (PR #64)
|
| 614 |
-
|
| 615 |
-
## [2.0.2](https://github.com/Ousret/charset_normalizer/compare/2.0.1...2.0.2) (2021-07-15)
|
| 616 |
-
### Fixed
|
| 617 |
-
- Empty/Too small JSON payload miss-detection fixed. Report from [@tseaver](https://github.com/tseaver) (PR #59)
|
| 618 |
-
|
| 619 |
-
### Changed
|
| 620 |
-
- Don't inject unicodedata2 into sys.modules from [@akx](https://github.com/akx) (PR #57)
|
| 621 |
-
|
| 622 |
-
## [2.0.1](https://github.com/Ousret/charset_normalizer/compare/2.0.0...2.0.1) (2021-07-13)
|
| 623 |
-
### Fixed
|
| 624 |
-
- Make it work where there isn't a filesystem available, dropping assets frequencies.json. Report from [@sethmlarson](https://github.com/sethmlarson). (PR #55)
|
| 625 |
-
- Using explain=False permanently disable the verbose output in the current runtime (PR #47)
|
| 626 |
-
- One log entry (language target preemptive) was not show in logs when using explain=True (PR #47)
|
| 627 |
-
- Fix undesired exception (ValueError) on getitem of instance CharsetMatches (PR #52)
|
| 628 |
-
|
| 629 |
-
### Changed
|
| 630 |
-
- Public function normalize default args values were not aligned with from_bytes (PR #53)
|
| 631 |
-
|
| 632 |
-
### Added
|
| 633 |
-
- You may now use charset aliases in cp_isolation and cp_exclusion arguments (PR #47)
|
| 634 |
-
|
| 635 |
-
## [2.0.0](https://github.com/Ousret/charset_normalizer/compare/1.4.1...2.0.0) (2021-07-02)
|
| 636 |
-
### Changed
|
| 637 |
-
- 4x to 5 times faster than the previous 1.4.0 release. At least 2x faster than Chardet.
|
| 638 |
-
- Accent has been made on UTF-8 detection, should perform rather instantaneous.
|
| 639 |
-
- The backward compatibility with Chardet has been greatly improved. The legacy detect function returns an identical charset name whenever possible.
|
| 640 |
-
- The detection mechanism has been slightly improved, now Turkish content is detected correctly (most of the time)
|
| 641 |
-
- The program has been rewritten to ease the readability and maintainability. (+Using static typing)+
|
| 642 |
-
- utf_7 detection has been reinstated.
|
| 643 |
-
|
| 644 |
-
### Removed
|
| 645 |
-
- This package no longer require anything when used with Python 3.5 (Dropped cached_property)
|
| 646 |
-
- Removed support for these languages: Catalan, Esperanto, Kazakh, Baque, Volapük, Azeri, Galician, Nynorsk, Macedonian, and Serbocroatian.
|
| 647 |
-
- The exception hook on UnicodeDecodeError has been removed.
|
| 648 |
-
|
| 649 |
-
### Deprecated
|
| 650 |
-
- Methods coherence_non_latin, w_counter, chaos_secondary_pass of the class CharsetMatch are now deprecated and scheduled for removal in v3.0
|
| 651 |
-
|
| 652 |
-
### Fixed
|
| 653 |
-
- The CLI output used the relative path of the file(s). Should be absolute.
|
| 654 |
-
|
| 655 |
-
## [1.4.1](https://github.com/Ousret/charset_normalizer/compare/1.4.0...1.4.1) (2021-05-28)
|
| 656 |
-
### Fixed
|
| 657 |
-
- Logger configuration/usage no longer conflict with others (PR #44)
|
| 658 |
-
|
| 659 |
-
## [1.4.0](https://github.com/Ousret/charset_normalizer/compare/1.3.9...1.4.0) (2021-05-21)
|
| 660 |
-
### Removed
|
| 661 |
-
- Using standard logging instead of using the package loguru.
|
| 662 |
-
- Dropping nose test framework in favor of the maintained pytest.
|
| 663 |
-
- Choose to not use dragonmapper package to help with gibberish Chinese/CJK text.
|
| 664 |
-
- Require cached_property only for Python 3.5 due to constraint. Dropping for every other interpreter version.
|
| 665 |
-
- Stop support for UTF-7 that does not contain a SIG.
|
| 666 |
-
- Dropping PrettyTable, replaced with pure JSON output in CLI.
|
| 667 |
-
|
| 668 |
-
### Fixed
|
| 669 |
-
- BOM marker in a CharsetNormalizerMatch instance could be False in rare cases even if obviously present. Due to the sub-match factoring process.
|
| 670 |
-
- Not searching properly for the BOM when trying utf32/16 parent codec.
|
| 671 |
-
|
| 672 |
-
### Changed
|
| 673 |
-
- Improving the package final size by compressing frequencies.json.
|
| 674 |
-
- Huge improvement over the larges payload.
|
| 675 |
-
|
| 676 |
-
### Added
|
| 677 |
-
- CLI now produces JSON consumable output.
|
| 678 |
-
- Return ASCII if given sequences fit. Given reasonable confidence.
|
| 679 |
-
|
| 680 |
-
## [1.3.9](https://github.com/Ousret/charset_normalizer/compare/1.3.8...1.3.9) (2021-05-13)
|
| 681 |
-
|
| 682 |
-
### Fixed
|
| 683 |
-
- In some very rare cases, you may end up getting encode/decode errors due to a bad bytes payload (PR #40)
|
| 684 |
-
|
| 685 |
-
## [1.3.8](https://github.com/Ousret/charset_normalizer/compare/1.3.7...1.3.8) (2021-05-12)
|
| 686 |
-
|
| 687 |
-
### Fixed
|
| 688 |
-
- Empty given payload for detection may cause an exception if trying to access the `alphabets` property. (PR #39)
|
| 689 |
-
|
| 690 |
-
## [1.3.7](https://github.com/Ousret/charset_normalizer/compare/1.3.6...1.3.7) (2021-05-12)
|
| 691 |
-
|
| 692 |
-
### Fixed
|
| 693 |
-
- The legacy detect function should return UTF-8-SIG if sig is present in the payload. (PR #38)
|
| 694 |
-
|
| 695 |
-
## [1.3.6](https://github.com/Ousret/charset_normalizer/compare/1.3.5...1.3.6) (2021-02-09)
|
| 696 |
-
|
| 697 |
-
### Changed
|
| 698 |
-
- Amend the previous release to allow prettytable 2.0 (PR #35)
|
| 699 |
-
|
| 700 |
-
## [1.3.5](https://github.com/Ousret/charset_normalizer/compare/1.3.4...1.3.5) (2021-02-08)
|
| 701 |
-
|
| 702 |
-
### Fixed
|
| 703 |
-
- Fix error while using the package with a python pre-release interpreter (PR #33)
|
| 704 |
-
|
| 705 |
-
### Changed
|
| 706 |
-
- Dependencies refactoring, constraints revised.
|
| 707 |
-
|
| 708 |
-
### Added
|
| 709 |
-
- Add python 3.9 and 3.10 to the supported interpreters
|
| 710 |
-
|
| 711 |
-
MIT License
|
| 712 |
-
|
| 713 |
-
Copyright (c) 2025 TAHRI Ahmed R.
|
| 714 |
-
|
| 715 |
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 716 |
-
of this software and associated documentation files (the "Software"), to deal
|
| 717 |
-
in the Software without restriction, including without limitation the rights
|
| 718 |
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| 719 |
-
copies of the Software, and to permit persons to whom the Software is
|
| 720 |
-
furnished to do so, subject to the following conditions:
|
| 721 |
-
|
| 722 |
-
The above copyright notice and this permission notice shall be included in all
|
| 723 |
-
copies or substantial portions of the Software.
|
| 724 |
-
|
| 725 |
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 726 |
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 727 |
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 728 |
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 729 |
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| 730 |
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
| 731 |
-
SOFTWARE.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
venv/lib/python3.11/site-packages/charset_normalizer-3.4.2.dist-info/RECORD
DELETED
|
@@ -1,35 +0,0 @@
|
|
| 1 |
-
../../../bin/normalizer,sha256=dRT7vRHPoj_FrRwOO-yEXjok_ZsD1D4stgK41LmIkAU,279
|
| 2 |
-
charset_normalizer-3.4.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
| 3 |
-
charset_normalizer-3.4.2.dist-info/METADATA,sha256=zNVWE4rQW-YZIMHKSayMypu37bLj_xayLorHl0-HAHQ,35743
|
| 4 |
-
charset_normalizer-3.4.2.dist-info/RECORD,,
|
| 5 |
-
charset_normalizer-3.4.2.dist-info/WHEEL,sha256=gWaBDgxGdecPs5wcSd3Ix5hwoJiejBJI3KP4z-xhRbc,141
|
| 6 |
-
charset_normalizer-3.4.2.dist-info/entry_points.txt,sha256=8C-Y3iXIfyXQ83Tpir2B8t-XLJYpxF5xbb38d_js-h4,65
|
| 7 |
-
charset_normalizer-3.4.2.dist-info/licenses/LICENSE,sha256=bQ1Bv-FwrGx9wkjJpj4lTQ-0WmDVCoJX0K-SxuJJuIc,1071
|
| 8 |
-
charset_normalizer-3.4.2.dist-info/top_level.txt,sha256=7ASyzePr8_xuZWJsnqJjIBtyV8vhEo0wBCv1MPRRi3Q,19
|
| 9 |
-
charset_normalizer/__init__.py,sha256=OKRxRv2Zhnqk00tqkN0c1BtJjm165fWXLydE52IKuHc,1590
|
| 10 |
-
charset_normalizer/__main__.py,sha256=yzYxMR-IhKRHYwcSlavEv8oGdwxsR89mr2X09qXGdps,109
|
| 11 |
-
charset_normalizer/__pycache__/__init__.cpython-311.pyc,,
|
| 12 |
-
charset_normalizer/__pycache__/__main__.cpython-311.pyc,,
|
| 13 |
-
charset_normalizer/__pycache__/api.cpython-311.pyc,,
|
| 14 |
-
charset_normalizer/__pycache__/cd.cpython-311.pyc,,
|
| 15 |
-
charset_normalizer/__pycache__/constant.cpython-311.pyc,,
|
| 16 |
-
charset_normalizer/__pycache__/legacy.cpython-311.pyc,,
|
| 17 |
-
charset_normalizer/__pycache__/md.cpython-311.pyc,,
|
| 18 |
-
charset_normalizer/__pycache__/models.cpython-311.pyc,,
|
| 19 |
-
charset_normalizer/__pycache__/utils.cpython-311.pyc,,
|
| 20 |
-
charset_normalizer/__pycache__/version.cpython-311.pyc,,
|
| 21 |
-
charset_normalizer/api.py,sha256=qBRz8mJ_R5E713R6TOyqHEdnmyxbEDnCSHvx32ubDGg,22617
|
| 22 |
-
charset_normalizer/cd.py,sha256=WKTo1HDb-H9HfCDc3Bfwq5jzS25Ziy9SE2a74SgTq88,12522
|
| 23 |
-
charset_normalizer/cli/__init__.py,sha256=D8I86lFk2-py45JvqxniTirSj_sFyE6sjaY_0-G1shc,136
|
| 24 |
-
charset_normalizer/cli/__main__.py,sha256=dMaXG6IJXRvqq8z2tig7Qb83-BpWTln55ooiku5_uvg,12646
|
| 25 |
-
charset_normalizer/cli/__pycache__/__init__.cpython-311.pyc,,
|
| 26 |
-
charset_normalizer/cli/__pycache__/__main__.cpython-311.pyc,,
|
| 27 |
-
charset_normalizer/constant.py,sha256=7UVY4ldYhmQMHUdgQ_sgZmzcQ0xxYxpBunqSZ-XJZ8U,42713
|
| 28 |
-
charset_normalizer/legacy.py,sha256=SZE_AJujOYB1y9Y3-FkFOW9Ye4H1EHTzPbZR8DEsgl8,2287
|
| 29 |
-
charset_normalizer/md.cpython-311-darwin.so,sha256=8U-LLYuhIpxUmIYeMALH_3C0KkqRH5CKc8Y5MtUi0g4,115744
|
| 30 |
-
charset_normalizer/md.py,sha256=-_oN3h3_X99nkFfqamD3yu45DC_wfk5odH0Tr_CQiXs,20145
|
| 31 |
-
charset_normalizer/md__mypyc.cpython-311-darwin.so,sha256=Psvf4jrNsfrbhqOFGQF4aYOxS7eowj4tmi0P1_kjWB0,481976
|
| 32 |
-
charset_normalizer/models.py,sha256=lKXhOnIPtiakbK3i__J9wpOfzx3JDTKj7Dn3Rg0VaRI,12394
|
| 33 |
-
charset_normalizer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 34 |
-
charset_normalizer/utils.py,sha256=sTejPgrdlNsKNucZfJCxJ95lMTLA0ShHLLE3n5wpT9Q,12170
|
| 35 |
-
charset_normalizer/version.py,sha256=koLXlDwKAU5IlYP4qkOpFnsncn74hlphHAlBhlDKzyw,115
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
venv/lib/python3.11/site-packages/charset_normalizer-3.4.2.dist-info/WHEEL
DELETED
|
@@ -1,6 +0,0 @@
|
|
| 1 |
-
Wheel-Version: 1.0
|
| 2 |
-
Generator: setuptools (80.1.0)
|
| 3 |
-
Root-Is-Purelib: false
|
| 4 |
-
Tag: cp311-cp311-macosx_10_9_universal2
|
| 5 |
-
Generator: delocate 0.13.0
|
| 6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
venv/lib/python3.11/site-packages/charset_normalizer-3.4.2.dist-info/entry_points.txt
DELETED
|
@@ -1,2 +0,0 @@
|
|
| 1 |
-
[console_scripts]
|
| 2 |
-
normalizer = charset_normalizer:cli.cli_detect
|
|
|
|
|
|
|
|
|
venv/lib/python3.11/site-packages/charset_normalizer-3.4.2.dist-info/licenses/LICENSE
DELETED
|
@@ -1,21 +0,0 @@
|
|
| 1 |
-
MIT License
|
| 2 |
-
|
| 3 |
-
Copyright (c) 2025 TAHRI Ahmed R.
|
| 4 |
-
|
| 5 |
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 6 |
-
of this software and associated documentation files (the "Software"), to deal
|
| 7 |
-
in the Software without restriction, including without limitation the rights
|
| 8 |
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| 9 |
-
copies of the Software, and to permit persons to whom the Software is
|
| 10 |
-
furnished to do so, subject to the following conditions:
|
| 11 |
-
|
| 12 |
-
The above copyright notice and this permission notice shall be included in all
|
| 13 |
-
copies or substantial portions of the Software.
|
| 14 |
-
|
| 15 |
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 16 |
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 17 |
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 18 |
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 19 |
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| 20 |
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
| 21 |
-
SOFTWARE.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|