Описание шаблона
This commit is contained in:
parent
55913015c4
commit
847f5b62ea
29
README.md
29
README.md
|
@ -0,0 +1,29 @@
|
||||||
|
```
|
||||||
|
agent = UserAgent().random # Случайный пользователь
|
||||||
|
options = Options() # Инициализация настроек
|
||||||
|
options.add_argument('--no-sandbox') # Выйти из режима песочница
|
||||||
|
options.add_argument("--mute-audio") # Отключить звук
|
||||||
|
if proxy is not None: # Работа с прокси
|
||||||
|
options.add_argument(f"--proxy-server={proxy}")
|
||||||
|
options.add_argument(f"user-agent={agent}") # Добавление пользователя
|
||||||
|
options.add_argument('--disable-gpu') # Отключить видео-карту и работу с графикой
|
||||||
|
options.add_argument('--disable-dev-shm-usage')
|
||||||
|
options.add_argument('--start-maximized') # Оптимизация
|
||||||
|
# options.add_argument('--headless') # Режим без открытия окна !! Не всегда корректно работают сайты с этим режимом
|
||||||
|
options.add_argument("--disable-blink-features=AutomationControlled") # Отключение прослушки
|
||||||
|
options.add_experimental_option("excludeSwitches", ["enable-automation"]) # Отключение прослушки
|
||||||
|
options.add_experimental_option('useAutomationExtension', False) # Отключение прослушки
|
||||||
|
```
|
||||||
|
|
||||||
|
Удаляет всю прослушку с chrome
|
||||||
|
``` python
|
||||||
|
driver = webdriver.Firefox(options= foptions)
|
||||||
|
driver = webdriver.Chrome(options=options)
|
||||||
|
driver.execute_cdp_cmd("Page.addScriptToEvaluateOnNewDocument", {
|
||||||
|
'source': '''
|
||||||
|
for (let prop in window) {
|
||||||
|
if (prop.startsWith('cdc_')) {
|
||||||
|
delete window[prop];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
44
main.py
Normal file
44
main.py
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
import asyncio
|
||||||
|
from time import sleep
|
||||||
|
from typing import Callable, List
|
||||||
|
from selenium import webdriver
|
||||||
|
from selenium.webdriver.common.by import By
|
||||||
|
from selenium.webdriver.chrome.options import Options
|
||||||
|
from selenium.webdriver.chrome.service import Service
|
||||||
|
from selenium.webdriver import Chrome
|
||||||
|
from fake_useragent import UserAgent
|
||||||
|
|
||||||
|
|
||||||
|
def openBrowser( proxy:str|None, ) -> webdriver.Chrome:
|
||||||
|
print(f"--proxy-server={proxy}");
|
||||||
|
agent = UserAgent().random
|
||||||
|
options = Options()
|
||||||
|
options.add_argument('--no-sandbox')
|
||||||
|
options.add_argument("--mute-audio")
|
||||||
|
if proxy is not None:
|
||||||
|
options.add_argument(f"--proxy-server={proxy}")
|
||||||
|
options.add_argument(f"user-agent={agent}")
|
||||||
|
options.add_argument('--disable-gpu')
|
||||||
|
options.add_argument('--disable-dev-shm-usage')
|
||||||
|
options.add_argument('--start-maximized')
|
||||||
|
# options.add_argument('--headless')
|
||||||
|
options.add_argument("--disable-blink-features=AutomationControlled")
|
||||||
|
options.add_argument("--disable-blink-features=AutomationControlled")
|
||||||
|
options.add_experimental_option("excludeSwitches", ["enable-automation"])
|
||||||
|
options.add_experimental_option('useAutomationExtension', False)
|
||||||
|
|
||||||
|
# driver = webdriver.Firefox(options= foptions)
|
||||||
|
driver = webdriver.Chrome(options=options)
|
||||||
|
driver.execute_cdp_cmd("Page.addScriptToEvaluateOnNewDocument", {
|
||||||
|
'source': '''
|
||||||
|
for (let prop in window) {
|
||||||
|
if (prop.startsWith('cdc_')) {
|
||||||
|
delete window[prop];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
'''})
|
||||||
|
driver.execute_script("Object.defineProperty(navigator, 'webdriver', {get: () => undefined})")
|
||||||
|
driver.set_page_load_timeout(100) # Таймаут загрузки страницы
|
||||||
|
driver.implicitly_wait(10) # Неявное ожидание
|
||||||
|
# sleep(10)
|
||||||
|
return driver;
|
247
telecli/bin/Activate.ps1
Normal file
247
telecli/bin/Activate.ps1
Normal file
|
@ -0,0 +1,247 @@
|
||||||
|
<#
|
||||||
|
.Synopsis
|
||||||
|
Activate a Python virtual environment for the current PowerShell session.
|
||||||
|
|
||||||
|
.Description
|
||||||
|
Pushes the python executable for a virtual environment to the front of the
|
||||||
|
$Env:PATH environment variable and sets the prompt to signify that you are
|
||||||
|
in a Python virtual environment. Makes use of the command line switches as
|
||||||
|
well as the `pyvenv.cfg` file values present in the virtual environment.
|
||||||
|
|
||||||
|
.Parameter VenvDir
|
||||||
|
Path to the directory that contains the virtual environment to activate. The
|
||||||
|
default value for this is the parent of the directory that the Activate.ps1
|
||||||
|
script is located within.
|
||||||
|
|
||||||
|
.Parameter Prompt
|
||||||
|
The prompt prefix to display when this virtual environment is activated. By
|
||||||
|
default, this prompt is the name of the virtual environment folder (VenvDir)
|
||||||
|
surrounded by parentheses and followed by a single space (ie. '(.venv) ').
|
||||||
|
|
||||||
|
.Example
|
||||||
|
Activate.ps1
|
||||||
|
Activates the Python virtual environment that contains the Activate.ps1 script.
|
||||||
|
|
||||||
|
.Example
|
||||||
|
Activate.ps1 -Verbose
|
||||||
|
Activates the Python virtual environment that contains the Activate.ps1 script,
|
||||||
|
and shows extra information about the activation as it executes.
|
||||||
|
|
||||||
|
.Example
|
||||||
|
Activate.ps1 -VenvDir C:\Users\MyUser\Common\.venv
|
||||||
|
Activates the Python virtual environment located in the specified location.
|
||||||
|
|
||||||
|
.Example
|
||||||
|
Activate.ps1 -Prompt "MyPython"
|
||||||
|
Activates the Python virtual environment that contains the Activate.ps1 script,
|
||||||
|
and prefixes the current prompt with the specified string (surrounded in
|
||||||
|
parentheses) while the virtual environment is active.
|
||||||
|
|
||||||
|
.Notes
|
||||||
|
On Windows, it may be required to enable this Activate.ps1 script by setting the
|
||||||
|
execution policy for the user. You can do this by issuing the following PowerShell
|
||||||
|
command:
|
||||||
|
|
||||||
|
PS C:\> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
|
||||||
|
|
||||||
|
For more information on Execution Policies:
|
||||||
|
https://go.microsoft.com/fwlink/?LinkID=135170
|
||||||
|
|
||||||
|
#>
|
||||||
|
Param(
|
||||||
|
[Parameter(Mandatory = $false)]
|
||||||
|
[String]
|
||||||
|
$VenvDir,
|
||||||
|
[Parameter(Mandatory = $false)]
|
||||||
|
[String]
|
||||||
|
$Prompt
|
||||||
|
)
|
||||||
|
|
||||||
|
<# Function declarations --------------------------------------------------- #>
|
||||||
|
|
||||||
|
<#
|
||||||
|
.Synopsis
|
||||||
|
Remove all shell session elements added by the Activate script, including the
|
||||||
|
addition of the virtual environment's Python executable from the beginning of
|
||||||
|
the PATH variable.
|
||||||
|
|
||||||
|
.Parameter NonDestructive
|
||||||
|
If present, do not remove this function from the global namespace for the
|
||||||
|
session.
|
||||||
|
|
||||||
|
#>
|
||||||
|
function global:deactivate ([switch]$NonDestructive) {
|
||||||
|
# Revert to original values
|
||||||
|
|
||||||
|
# The prior prompt:
|
||||||
|
if (Test-Path -Path Function:_OLD_VIRTUAL_PROMPT) {
|
||||||
|
Copy-Item -Path Function:_OLD_VIRTUAL_PROMPT -Destination Function:prompt
|
||||||
|
Remove-Item -Path Function:_OLD_VIRTUAL_PROMPT
|
||||||
|
}
|
||||||
|
|
||||||
|
# The prior PYTHONHOME:
|
||||||
|
if (Test-Path -Path Env:_OLD_VIRTUAL_PYTHONHOME) {
|
||||||
|
Copy-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME -Destination Env:PYTHONHOME
|
||||||
|
Remove-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME
|
||||||
|
}
|
||||||
|
|
||||||
|
# The prior PATH:
|
||||||
|
if (Test-Path -Path Env:_OLD_VIRTUAL_PATH) {
|
||||||
|
Copy-Item -Path Env:_OLD_VIRTUAL_PATH -Destination Env:PATH
|
||||||
|
Remove-Item -Path Env:_OLD_VIRTUAL_PATH
|
||||||
|
}
|
||||||
|
|
||||||
|
# Just remove the VIRTUAL_ENV altogether:
|
||||||
|
if (Test-Path -Path Env:VIRTUAL_ENV) {
|
||||||
|
Remove-Item -Path env:VIRTUAL_ENV
|
||||||
|
}
|
||||||
|
|
||||||
|
# Just remove VIRTUAL_ENV_PROMPT altogether.
|
||||||
|
if (Test-Path -Path Env:VIRTUAL_ENV_PROMPT) {
|
||||||
|
Remove-Item -Path env:VIRTUAL_ENV_PROMPT
|
||||||
|
}
|
||||||
|
|
||||||
|
# Just remove the _PYTHON_VENV_PROMPT_PREFIX altogether:
|
||||||
|
if (Get-Variable -Name "_PYTHON_VENV_PROMPT_PREFIX" -ErrorAction SilentlyContinue) {
|
||||||
|
Remove-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Scope Global -Force
|
||||||
|
}
|
||||||
|
|
||||||
|
# Leave deactivate function in the global namespace if requested:
|
||||||
|
if (-not $NonDestructive) {
|
||||||
|
Remove-Item -Path function:deactivate
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
<#
|
||||||
|
.Description
|
||||||
|
Get-PyVenvConfig parses the values from the pyvenv.cfg file located in the
|
||||||
|
given folder, and returns them in a map.
|
||||||
|
|
||||||
|
For each line in the pyvenv.cfg file, if that line can be parsed into exactly
|
||||||
|
two strings separated by `=` (with any amount of whitespace surrounding the =)
|
||||||
|
then it is considered a `key = value` line. The left hand string is the key,
|
||||||
|
the right hand is the value.
|
||||||
|
|
||||||
|
If the value starts with a `'` or a `"` then the first and last character is
|
||||||
|
stripped from the value before being captured.
|
||||||
|
|
||||||
|
.Parameter ConfigDir
|
||||||
|
Path to the directory that contains the `pyvenv.cfg` file.
|
||||||
|
#>
|
||||||
|
function Get-PyVenvConfig(
|
||||||
|
[String]
|
||||||
|
$ConfigDir
|
||||||
|
) {
|
||||||
|
Write-Verbose "Given ConfigDir=$ConfigDir, obtain values in pyvenv.cfg"
|
||||||
|
|
||||||
|
# Ensure the file exists, and issue a warning if it doesn't (but still allow the function to continue).
|
||||||
|
$pyvenvConfigPath = Join-Path -Resolve -Path $ConfigDir -ChildPath 'pyvenv.cfg' -ErrorAction Continue
|
||||||
|
|
||||||
|
# An empty map will be returned if no config file is found.
|
||||||
|
$pyvenvConfig = @{ }
|
||||||
|
|
||||||
|
if ($pyvenvConfigPath) {
|
||||||
|
|
||||||
|
Write-Verbose "File exists, parse `key = value` lines"
|
||||||
|
$pyvenvConfigContent = Get-Content -Path $pyvenvConfigPath
|
||||||
|
|
||||||
|
$pyvenvConfigContent | ForEach-Object {
|
||||||
|
$keyval = $PSItem -split "\s*=\s*", 2
|
||||||
|
if ($keyval[0] -and $keyval[1]) {
|
||||||
|
$val = $keyval[1]
|
||||||
|
|
||||||
|
# Remove extraneous quotations around a string value.
|
||||||
|
if ("'""".Contains($val.Substring(0, 1))) {
|
||||||
|
$val = $val.Substring(1, $val.Length - 2)
|
||||||
|
}
|
||||||
|
|
||||||
|
$pyvenvConfig[$keyval[0]] = $val
|
||||||
|
Write-Verbose "Adding Key: '$($keyval[0])'='$val'"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return $pyvenvConfig
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
<# Begin Activate script --------------------------------------------------- #>
|
||||||
|
|
||||||
|
# Determine the containing directory of this script
|
||||||
|
$VenvExecPath = Split-Path -Parent $MyInvocation.MyCommand.Definition
|
||||||
|
$VenvExecDir = Get-Item -Path $VenvExecPath
|
||||||
|
|
||||||
|
Write-Verbose "Activation script is located in path: '$VenvExecPath'"
|
||||||
|
Write-Verbose "VenvExecDir Fullname: '$($VenvExecDir.FullName)"
|
||||||
|
Write-Verbose "VenvExecDir Name: '$($VenvExecDir.Name)"
|
||||||
|
|
||||||
|
# Set values required in priority: CmdLine, ConfigFile, Default
|
||||||
|
# First, get the location of the virtual environment, it might not be
|
||||||
|
# VenvExecDir if specified on the command line.
|
||||||
|
if ($VenvDir) {
|
||||||
|
Write-Verbose "VenvDir given as parameter, using '$VenvDir' to determine values"
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
Write-Verbose "VenvDir not given as a parameter, using parent directory name as VenvDir."
|
||||||
|
$VenvDir = $VenvExecDir.Parent.FullName.TrimEnd("\\/")
|
||||||
|
Write-Verbose "VenvDir=$VenvDir"
|
||||||
|
}
|
||||||
|
|
||||||
|
# Next, read the `pyvenv.cfg` file to determine any required value such
|
||||||
|
# as `prompt`.
|
||||||
|
$pyvenvCfg = Get-PyVenvConfig -ConfigDir $VenvDir
|
||||||
|
|
||||||
|
# Next, set the prompt from the command line, or the config file, or
|
||||||
|
# just use the name of the virtual environment folder.
|
||||||
|
if ($Prompt) {
|
||||||
|
Write-Verbose "Prompt specified as argument, using '$Prompt'"
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
Write-Verbose "Prompt not specified as argument to script, checking pyvenv.cfg value"
|
||||||
|
if ($pyvenvCfg -and $pyvenvCfg['prompt']) {
|
||||||
|
Write-Verbose " Setting based on value in pyvenv.cfg='$($pyvenvCfg['prompt'])'"
|
||||||
|
$Prompt = $pyvenvCfg['prompt'];
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
Write-Verbose " Setting prompt based on parent's directory's name. (Is the directory name passed to venv module when creating the virtual environment)"
|
||||||
|
Write-Verbose " Got leaf-name of $VenvDir='$(Split-Path -Path $venvDir -Leaf)'"
|
||||||
|
$Prompt = Split-Path -Path $venvDir -Leaf
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Write-Verbose "Prompt = '$Prompt'"
|
||||||
|
Write-Verbose "VenvDir='$VenvDir'"
|
||||||
|
|
||||||
|
# Deactivate any currently active virtual environment, but leave the
|
||||||
|
# deactivate function in place.
|
||||||
|
deactivate -nondestructive
|
||||||
|
|
||||||
|
# Now set the environment variable VIRTUAL_ENV, used by many tools to determine
|
||||||
|
# that there is an activated venv.
|
||||||
|
$env:VIRTUAL_ENV = $VenvDir
|
||||||
|
|
||||||
|
if (-not $Env:VIRTUAL_ENV_DISABLE_PROMPT) {
|
||||||
|
|
||||||
|
Write-Verbose "Setting prompt to '$Prompt'"
|
||||||
|
|
||||||
|
# Set the prompt to include the env name
|
||||||
|
# Make sure _OLD_VIRTUAL_PROMPT is global
|
||||||
|
function global:_OLD_VIRTUAL_PROMPT { "" }
|
||||||
|
Copy-Item -Path function:prompt -Destination function:_OLD_VIRTUAL_PROMPT
|
||||||
|
New-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Description "Python virtual environment prompt prefix" -Scope Global -Option ReadOnly -Visibility Public -Value $Prompt
|
||||||
|
|
||||||
|
function global:prompt {
|
||||||
|
Write-Host -NoNewline -ForegroundColor Green "($_PYTHON_VENV_PROMPT_PREFIX) "
|
||||||
|
_OLD_VIRTUAL_PROMPT
|
||||||
|
}
|
||||||
|
$env:VIRTUAL_ENV_PROMPT = $Prompt
|
||||||
|
}
|
||||||
|
|
||||||
|
# Clear PYTHONHOME
|
||||||
|
if (Test-Path -Path Env:PYTHONHOME) {
|
||||||
|
Copy-Item -Path Env:PYTHONHOME -Destination Env:_OLD_VIRTUAL_PYTHONHOME
|
||||||
|
Remove-Item -Path Env:PYTHONHOME
|
||||||
|
}
|
||||||
|
|
||||||
|
# Add the venv to the PATH
|
||||||
|
Copy-Item -Path Env:PATH -Destination Env:_OLD_VIRTUAL_PATH
|
||||||
|
$Env:PATH = "$VenvExecDir$([System.IO.Path]::PathSeparator)$Env:PATH"
|
69
telecli/bin/activate
Normal file
69
telecli/bin/activate
Normal file
|
@ -0,0 +1,69 @@
|
||||||
|
# This file must be used with "source bin/activate" *from bash*
|
||||||
|
# you cannot run it directly
|
||||||
|
|
||||||
|
deactivate () {
|
||||||
|
# reset old environment variables
|
||||||
|
if [ -n "${_OLD_VIRTUAL_PATH:-}" ] ; then
|
||||||
|
PATH="${_OLD_VIRTUAL_PATH:-}"
|
||||||
|
export PATH
|
||||||
|
unset _OLD_VIRTUAL_PATH
|
||||||
|
fi
|
||||||
|
if [ -n "${_OLD_VIRTUAL_PYTHONHOME:-}" ] ; then
|
||||||
|
PYTHONHOME="${_OLD_VIRTUAL_PYTHONHOME:-}"
|
||||||
|
export PYTHONHOME
|
||||||
|
unset _OLD_VIRTUAL_PYTHONHOME
|
||||||
|
fi
|
||||||
|
|
||||||
|
# This should detect bash and zsh, which have a hash command that must
|
||||||
|
# be called to get it to forget past commands. Without forgetting
|
||||||
|
# past commands the $PATH changes we made may not be respected
|
||||||
|
if [ -n "${BASH:-}" -o -n "${ZSH_VERSION:-}" ] ; then
|
||||||
|
hash -r 2> /dev/null
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -n "${_OLD_VIRTUAL_PS1:-}" ] ; then
|
||||||
|
PS1="${_OLD_VIRTUAL_PS1:-}"
|
||||||
|
export PS1
|
||||||
|
unset _OLD_VIRTUAL_PS1
|
||||||
|
fi
|
||||||
|
|
||||||
|
unset VIRTUAL_ENV
|
||||||
|
unset VIRTUAL_ENV_PROMPT
|
||||||
|
if [ ! "${1:-}" = "nondestructive" ] ; then
|
||||||
|
# Self destruct!
|
||||||
|
unset -f deactivate
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
# unset irrelevant variables
|
||||||
|
deactivate nondestructive
|
||||||
|
|
||||||
|
VIRTUAL_ENV="/Users/flutterdeveloper/development/python_workspace/tele_cli/telecli"
|
||||||
|
export VIRTUAL_ENV
|
||||||
|
|
||||||
|
_OLD_VIRTUAL_PATH="$PATH"
|
||||||
|
PATH="$VIRTUAL_ENV/bin:$PATH"
|
||||||
|
export PATH
|
||||||
|
|
||||||
|
# unset PYTHONHOME if set
|
||||||
|
# this will fail if PYTHONHOME is set to the empty string (which is bad anyway)
|
||||||
|
# could use `if (set -u; : $PYTHONHOME) ;` in bash
|
||||||
|
if [ -n "${PYTHONHOME:-}" ] ; then
|
||||||
|
_OLD_VIRTUAL_PYTHONHOME="${PYTHONHOME:-}"
|
||||||
|
unset PYTHONHOME
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT:-}" ] ; then
|
||||||
|
_OLD_VIRTUAL_PS1="${PS1:-}"
|
||||||
|
PS1="(telecli) ${PS1:-}"
|
||||||
|
export PS1
|
||||||
|
VIRTUAL_ENV_PROMPT="(telecli) "
|
||||||
|
export VIRTUAL_ENV_PROMPT
|
||||||
|
fi
|
||||||
|
|
||||||
|
# This should detect bash and zsh, which have a hash command that must
|
||||||
|
# be called to get it to forget past commands. Without forgetting
|
||||||
|
# past commands the $PATH changes we made may not be respected
|
||||||
|
if [ -n "${BASH:-}" -o -n "${ZSH_VERSION:-}" ] ; then
|
||||||
|
hash -r 2> /dev/null
|
||||||
|
fi
|
26
telecli/bin/activate.csh
Normal file
26
telecli/bin/activate.csh
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
# This file must be used with "source bin/activate.csh" *from csh*.
|
||||||
|
# You cannot run it directly.
|
||||||
|
# Created by Davide Di Blasi <davidedb@gmail.com>.
|
||||||
|
# Ported to Python 3.3 venv by Andrew Svetlov <andrew.svetlov@gmail.com>
|
||||||
|
|
||||||
|
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'
|
||||||
|
|
||||||
|
# Unset irrelevant variables.
|
||||||
|
deactivate nondestructive
|
||||||
|
|
||||||
|
setenv VIRTUAL_ENV "/Users/flutterdeveloper/development/python_workspace/tele_cli/telecli"
|
||||||
|
|
||||||
|
set _OLD_VIRTUAL_PATH="$PATH"
|
||||||
|
setenv PATH "$VIRTUAL_ENV/bin:$PATH"
|
||||||
|
|
||||||
|
|
||||||
|
set _OLD_VIRTUAL_PROMPT="$prompt"
|
||||||
|
|
||||||
|
if (! "$?VIRTUAL_ENV_DISABLE_PROMPT") then
|
||||||
|
set prompt = "(telecli) $prompt"
|
||||||
|
setenv VIRTUAL_ENV_PROMPT "(telecli) "
|
||||||
|
endif
|
||||||
|
|
||||||
|
alias pydoc python -m pydoc
|
||||||
|
|
||||||
|
rehash
|
69
telecli/bin/activate.fish
Normal file
69
telecli/bin/activate.fish
Normal file
|
@ -0,0 +1,69 @@
|
||||||
|
# This file must be used with "source <venv>/bin/activate.fish" *from fish*
|
||||||
|
# (https://fishshell.com/); you cannot run it directly.
|
||||||
|
|
||||||
|
function deactivate -d "Exit virtual environment and return to normal shell environment"
|
||||||
|
# reset old environment variables
|
||||||
|
if test -n "$_OLD_VIRTUAL_PATH"
|
||||||
|
set -gx PATH $_OLD_VIRTUAL_PATH
|
||||||
|
set -e _OLD_VIRTUAL_PATH
|
||||||
|
end
|
||||||
|
if test -n "$_OLD_VIRTUAL_PYTHONHOME"
|
||||||
|
set -gx PYTHONHOME $_OLD_VIRTUAL_PYTHONHOME
|
||||||
|
set -e _OLD_VIRTUAL_PYTHONHOME
|
||||||
|
end
|
||||||
|
|
||||||
|
if test -n "$_OLD_FISH_PROMPT_OVERRIDE"
|
||||||
|
set -e _OLD_FISH_PROMPT_OVERRIDE
|
||||||
|
# prevents error when using nested fish instances (Issue #93858)
|
||||||
|
if functions -q _old_fish_prompt
|
||||||
|
functions -e fish_prompt
|
||||||
|
functions -c _old_fish_prompt fish_prompt
|
||||||
|
functions -e _old_fish_prompt
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
set -e VIRTUAL_ENV
|
||||||
|
set -e VIRTUAL_ENV_PROMPT
|
||||||
|
if test "$argv[1]" != "nondestructive"
|
||||||
|
# Self-destruct!
|
||||||
|
functions -e deactivate
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
# Unset irrelevant variables.
|
||||||
|
deactivate nondestructive
|
||||||
|
|
||||||
|
set -gx VIRTUAL_ENV "/Users/flutterdeveloper/development/python_workspace/tele_cli/telecli"
|
||||||
|
|
||||||
|
set -gx _OLD_VIRTUAL_PATH $PATH
|
||||||
|
set -gx PATH "$VIRTUAL_ENV/bin" $PATH
|
||||||
|
|
||||||
|
# Unset PYTHONHOME if set.
|
||||||
|
if set -q PYTHONHOME
|
||||||
|
set -gx _OLD_VIRTUAL_PYTHONHOME $PYTHONHOME
|
||||||
|
set -e PYTHONHOME
|
||||||
|
end
|
||||||
|
|
||||||
|
if test -z "$VIRTUAL_ENV_DISABLE_PROMPT"
|
||||||
|
# fish uses a function instead of an env var to generate the prompt.
|
||||||
|
|
||||||
|
# Save the current fish_prompt function as the function _old_fish_prompt.
|
||||||
|
functions -c fish_prompt _old_fish_prompt
|
||||||
|
|
||||||
|
# With the original prompt function renamed, we can override with our own.
|
||||||
|
function fish_prompt
|
||||||
|
# Save the return status of the last command.
|
||||||
|
set -l old_status $status
|
||||||
|
|
||||||
|
# Output the venv prompt; color taken from the blue of the Python logo.
|
||||||
|
printf "%s%s%s" (set_color 4B8BBE) "(telecli) " (set_color normal)
|
||||||
|
|
||||||
|
# Restore the return status of the previous command.
|
||||||
|
echo "exit $old_status" | .
|
||||||
|
# Output the original/"old" prompt.
|
||||||
|
_old_fish_prompt
|
||||||
|
end
|
||||||
|
|
||||||
|
set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV"
|
||||||
|
set -gx VIRTUAL_ENV_PROMPT "(telecli) "
|
||||||
|
end
|
8
telecli/bin/fastapi
Executable file
8
telecli/bin/fastapi
Executable file
|
@ -0,0 +1,8 @@
|
||||||
|
#!/Users/flutterdeveloper/development/python_workspace/tele_cli/telecli/bin/python3.11
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
import re
|
||||||
|
import sys
|
||||||
|
from fastapi.cli import main
|
||||||
|
if __name__ == '__main__':
|
||||||
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
||||||
|
sys.exit(main())
|
8
telecli/bin/pip
Executable file
8
telecli/bin/pip
Executable file
|
@ -0,0 +1,8 @@
|
||||||
|
#!/Users/flutterdeveloper/development/python_workspace/tele_cli/telecli/bin/python3.11
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
import re
|
||||||
|
import sys
|
||||||
|
from pip._internal.cli.main import main
|
||||||
|
if __name__ == '__main__':
|
||||||
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
||||||
|
sys.exit(main())
|
8
telecli/bin/pip3
Executable file
8
telecli/bin/pip3
Executable file
|
@ -0,0 +1,8 @@
|
||||||
|
#!/Users/flutterdeveloper/development/python_workspace/tele_cli/telecli/bin/python3.11
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
import re
|
||||||
|
import sys
|
||||||
|
from pip._internal.cli.main import main
|
||||||
|
if __name__ == '__main__':
|
||||||
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
||||||
|
sys.exit(main())
|
8
telecli/bin/pip3.11
Executable file
8
telecli/bin/pip3.11
Executable file
|
@ -0,0 +1,8 @@
|
||||||
|
#!/Users/flutterdeveloper/development/python_workspace/tele_cli/telecli/bin/python3.11
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
import re
|
||||||
|
import sys
|
||||||
|
from pip._internal.cli.main import main
|
||||||
|
if __name__ == '__main__':
|
||||||
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
||||||
|
sys.exit(main())
|
8
telecli/bin/pyrsa-decrypt
Executable file
8
telecli/bin/pyrsa-decrypt
Executable file
|
@ -0,0 +1,8 @@
|
||||||
|
#!/Users/flutterdeveloper/development/python_workspace/tele_cli/telecli/bin/python3.11
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
import re
|
||||||
|
import sys
|
||||||
|
from rsa.cli import decrypt
|
||||||
|
if __name__ == '__main__':
|
||||||
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
||||||
|
sys.exit(decrypt())
|
8
telecli/bin/pyrsa-encrypt
Executable file
8
telecli/bin/pyrsa-encrypt
Executable file
|
@ -0,0 +1,8 @@
|
||||||
|
#!/Users/flutterdeveloper/development/python_workspace/tele_cli/telecli/bin/python3.11
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
import re
|
||||||
|
import sys
|
||||||
|
from rsa.cli import encrypt
|
||||||
|
if __name__ == '__main__':
|
||||||
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
||||||
|
sys.exit(encrypt())
|
8
telecli/bin/pyrsa-keygen
Executable file
8
telecli/bin/pyrsa-keygen
Executable file
|
@ -0,0 +1,8 @@
|
||||||
|
#!/Users/flutterdeveloper/development/python_workspace/tele_cli/telecli/bin/python3.11
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
import re
|
||||||
|
import sys
|
||||||
|
from rsa.cli import keygen
|
||||||
|
if __name__ == '__main__':
|
||||||
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
||||||
|
sys.exit(keygen())
|
8
telecli/bin/pyrsa-priv2pub
Executable file
8
telecli/bin/pyrsa-priv2pub
Executable file
|
@ -0,0 +1,8 @@
|
||||||
|
#!/Users/flutterdeveloper/development/python_workspace/tele_cli/telecli/bin/python3.11
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
import re
|
||||||
|
import sys
|
||||||
|
from rsa.util import private_to_public
|
||||||
|
if __name__ == '__main__':
|
||||||
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
||||||
|
sys.exit(private_to_public())
|
8
telecli/bin/pyrsa-sign
Executable file
8
telecli/bin/pyrsa-sign
Executable file
|
@ -0,0 +1,8 @@
|
||||||
|
#!/Users/flutterdeveloper/development/python_workspace/tele_cli/telecli/bin/python3.11
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
import re
|
||||||
|
import sys
|
||||||
|
from rsa.cli import sign
|
||||||
|
if __name__ == '__main__':
|
||||||
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
||||||
|
sys.exit(sign())
|
8
telecli/bin/pyrsa-verify
Executable file
8
telecli/bin/pyrsa-verify
Executable file
|
@ -0,0 +1,8 @@
|
||||||
|
#!/Users/flutterdeveloper/development/python_workspace/tele_cli/telecli/bin/python3.11
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
import re
|
||||||
|
import sys
|
||||||
|
from rsa.cli import verify
|
||||||
|
if __name__ == '__main__':
|
||||||
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
||||||
|
sys.exit(verify())
|
1
telecli/bin/python
Symbolic link
1
telecli/bin/python
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
python3.11
|
1
telecli/bin/python3
Symbolic link
1
telecli/bin/python3
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
python3.11
|
1
telecli/bin/python3.11
Symbolic link
1
telecli/bin/python3.11
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/Library/Frameworks/Python.framework/Versions/3.11/bin/python3.11
|
8
telecli/bin/wsdump
Executable file
8
telecli/bin/wsdump
Executable file
|
@ -0,0 +1,8 @@
|
||||||
|
#!/Users/flutterdeveloper/development/python_workspace/tele_cli/telecli/bin/python3.11
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
import re
|
||||||
|
import sys
|
||||||
|
from websocket._wsdump import main
|
||||||
|
if __name__ == '__main__':
|
||||||
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
||||||
|
sys.exit(main())
|
|
@ -0,0 +1 @@
|
||||||
|
pip
|
|
@ -0,0 +1,22 @@
|
||||||
|
Copyright 2006 Dan-Haim. All rights reserved.
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without modification,
|
||||||
|
are permitted provided that the following conditions are met:
|
||||||
|
1. Redistributions of source code must retain the above copyright notice, this
|
||||||
|
list of conditions and the following disclaimer.
|
||||||
|
2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
this list of conditions and the following disclaimer in the documentation
|
||||||
|
and/or other materials provided with the distribution.
|
||||||
|
3. Neither the name of Dan Haim nor the names of his contributors may be used
|
||||||
|
to endorse or promote products derived from this software without specific
|
||||||
|
prior written permission.
|
||||||
|
|
||||||
|
THIS SOFTWARE IS PROVIDED BY DAN HAIM "AS IS" AND ANY EXPRESS OR IMPLIED
|
||||||
|
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||||
|
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
||||||
|
EVENT SHALL DAN HAIM OR HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||||
|
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||||
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA
|
||||||
|
OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
||||||
|
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
||||||
|
OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMANGE.
|
|
@ -0,0 +1,321 @@
|
||||||
|
Metadata-Version: 2.1
|
||||||
|
Name: PySocks
|
||||||
|
Version: 1.7.1
|
||||||
|
Summary: A Python SOCKS client module. See https://github.com/Anorov/PySocks for more information.
|
||||||
|
Home-page: https://github.com/Anorov/PySocks
|
||||||
|
Author: Anorov
|
||||||
|
Author-email: anorov.vorona@gmail.com
|
||||||
|
License: BSD
|
||||||
|
Keywords: socks,proxy
|
||||||
|
Platform: UNKNOWN
|
||||||
|
Classifier: Programming Language :: Python :: 2
|
||||||
|
Classifier: Programming Language :: Python :: 2.7
|
||||||
|
Classifier: Programming Language :: Python :: 3
|
||||||
|
Classifier: Programming Language :: Python :: 3.4
|
||||||
|
Classifier: Programming Language :: Python :: 3.5
|
||||||
|
Classifier: Programming Language :: Python :: 3.6
|
||||||
|
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
|
||||||
|
Description-Content-Type: text/markdown
|
||||||
|
|
||||||
|
PySocks
|
||||||
|
=======
|
||||||
|
|
||||||
|
PySocks lets you send traffic through SOCKS and HTTP proxy servers. It is a modern fork of [SocksiPy](http://socksipy.sourceforge.net/) with bug fixes and extra features.
|
||||||
|
|
||||||
|
Acts as a drop-in replacement to the socket module. Seamlessly configure SOCKS proxies for any socket object by calling `socket_object.set_proxy()`.
|
||||||
|
|
||||||
|
----------------
|
||||||
|
|
||||||
|
Features
|
||||||
|
========
|
||||||
|
|
||||||
|
* SOCKS proxy client for Python 2.7 and 3.4+
|
||||||
|
* TCP supported
|
||||||
|
* UDP mostly supported (issues may occur in some edge cases)
|
||||||
|
* HTTP proxy client included but not supported or recommended (you should use urllib2's or requests' own HTTP proxy interface)
|
||||||
|
* urllib2 handler included. `pip install` / `setup.py install` will automatically install the `sockshandler` module.
|
||||||
|
|
||||||
|
Installation
|
||||||
|
============
|
||||||
|
|
||||||
|
pip install PySocks
|
||||||
|
|
||||||
|
Or download the tarball / `git clone` and...
|
||||||
|
|
||||||
|
python setup.py install
|
||||||
|
|
||||||
|
These will install both the `socks` and `sockshandler` modules.
|
||||||
|
|
||||||
|
Alternatively, include just `socks.py` in your project.
|
||||||
|
|
||||||
|
--------------------------------------------
|
||||||
|
|
||||||
|
*Warning:* PySocks/SocksiPy only supports HTTP proxies that use CONNECT tunneling. Certain HTTP proxies may not work with this library. If you wish to use HTTP (not SOCKS) proxies, it is recommended that you rely on your HTTP client's native proxy support (`proxies` dict for `requests`, or `urllib2.ProxyHandler` for `urllib2`) instead.
|
||||||
|
|
||||||
|
--------------------------------------------
|
||||||
|
|
||||||
|
Usage
|
||||||
|
=====
|
||||||
|
|
||||||
|
## socks.socksocket ##
|
||||||
|
|
||||||
|
import socks
|
||||||
|
|
||||||
|
s = socks.socksocket() # Same API as socket.socket in the standard lib
|
||||||
|
|
||||||
|
s.set_proxy(socks.SOCKS5, "localhost") # SOCKS4 and SOCKS5 use port 1080 by default
|
||||||
|
# Or
|
||||||
|
s.set_proxy(socks.SOCKS4, "localhost", 4444)
|
||||||
|
# Or
|
||||||
|
s.set_proxy(socks.HTTP, "5.5.5.5", 8888)
|
||||||
|
|
||||||
|
# Can be treated identical to a regular socket object
|
||||||
|
s.connect(("www.somesite.com", 80))
|
||||||
|
s.sendall("GET / HTTP/1.1 ...")
|
||||||
|
print s.recv(4096)
|
||||||
|
|
||||||
|
## Monkeypatching ##
|
||||||
|
|
||||||
|
To monkeypatch the entire standard library with a single default proxy:
|
||||||
|
|
||||||
|
import urllib2
|
||||||
|
import socket
|
||||||
|
import socks
|
||||||
|
|
||||||
|
socks.set_default_proxy(socks.SOCKS5, "localhost")
|
||||||
|
socket.socket = socks.socksocket
|
||||||
|
|
||||||
|
urllib2.urlopen("http://www.somesite.com/") # All requests will pass through the SOCKS proxy
|
||||||
|
|
||||||
|
Note that monkeypatching may not work for all standard modules or for all third party modules, and generally isn't recommended. Monkeypatching is usually an anti-pattern in Python.
|
||||||
|
|
||||||
|
## urllib2 Handler ##
|
||||||
|
|
||||||
|
Example use case with the `sockshandler` urllib2 handler. Note that you must import both `socks` and `sockshandler`, as the handler is its own module separate from PySocks. The module is included in the PyPI package.
|
||||||
|
|
||||||
|
import urllib2
|
||||||
|
import socks
|
||||||
|
from sockshandler import SocksiPyHandler
|
||||||
|
|
||||||
|
opener = urllib2.build_opener(SocksiPyHandler(socks.SOCKS5, "127.0.0.1", 9050))
|
||||||
|
print opener.open("http://www.somesite.com/") # All requests made by the opener will pass through the SOCKS proxy
|
||||||
|
|
||||||
|
--------------------------------------------
|
||||||
|
|
||||||
|
Original SocksiPy README attached below, amended to reflect API changes.
|
||||||
|
|
||||||
|
--------------------------------------------
|
||||||
|
|
||||||
|
SocksiPy
|
||||||
|
|
||||||
|
A Python SOCKS module.
|
||||||
|
|
||||||
|
(C) 2006 Dan-Haim. All rights reserved.
|
||||||
|
|
||||||
|
See LICENSE file for details.
|
||||||
|
|
||||||
|
|
||||||
|
*WHAT IS A SOCKS PROXY?*
|
||||||
|
|
||||||
|
A SOCKS proxy is a proxy server at the TCP level. In other words, it acts as
|
||||||
|
a tunnel, relaying all traffic going through it without modifying it.
|
||||||
|
SOCKS proxies can be used to relay traffic using any network protocol that
|
||||||
|
uses TCP.
|
||||||
|
|
||||||
|
*WHAT IS SOCKSIPY?*
|
||||||
|
|
||||||
|
This Python module allows you to create TCP connections through a SOCKS
|
||||||
|
proxy without any special effort.
|
||||||
|
It also supports relaying UDP packets with a SOCKS5 proxy.
|
||||||
|
|
||||||
|
*PROXY COMPATIBILITY*
|
||||||
|
|
||||||
|
SocksiPy is compatible with three different types of proxies:
|
||||||
|
|
||||||
|
1. SOCKS Version 4 (SOCKS4), including the SOCKS4a extension.
|
||||||
|
2. SOCKS Version 5 (SOCKS5).
|
||||||
|
3. HTTP Proxies which support tunneling using the CONNECT method.
|
||||||
|
|
||||||
|
*SYSTEM REQUIREMENTS*
|
||||||
|
|
||||||
|
Being written in Python, SocksiPy can run on any platform that has a Python
|
||||||
|
interpreter and TCP/IP support.
|
||||||
|
This module has been tested with Python 2.3 and should work with greater versions
|
||||||
|
just as well.
|
||||||
|
|
||||||
|
|
||||||
|
INSTALLATION
|
||||||
|
-------------
|
||||||
|
|
||||||
|
Simply copy the file "socks.py" to your Python's `lib/site-packages` directory,
|
||||||
|
and you're ready to go. [Editor's note: it is better to use `python setup.py install` for PySocks]
|
||||||
|
|
||||||
|
|
||||||
|
USAGE
|
||||||
|
------
|
||||||
|
|
||||||
|
First load the socks module with the command:
|
||||||
|
|
||||||
|
>>> import socks
|
||||||
|
>>>
|
||||||
|
|
||||||
|
The socks module provides a class called `socksocket`, which is the base to all of the module's functionality.
|
||||||
|
|
||||||
|
The `socksocket` object has the same initialization parameters as the normal socket
|
||||||
|
object to ensure maximal compatibility, however it should be noted that `socksocket` will only function with family being `AF_INET` and
|
||||||
|
type being either `SOCK_STREAM` or `SOCK_DGRAM`.
|
||||||
|
Generally, it is best to initialize the `socksocket` object with no parameters
|
||||||
|
|
||||||
|
>>> s = socks.socksocket()
|
||||||
|
>>>
|
||||||
|
|
||||||
|
The `socksocket` object has an interface which is very similiar to socket's (in fact
|
||||||
|
the `socksocket` class is derived from socket) with a few extra methods.
|
||||||
|
To select the proxy server you would like to use, use the `set_proxy` method, whose
|
||||||
|
syntax is:
|
||||||
|
|
||||||
|
set_proxy(proxy_type, addr[, port[, rdns[, username[, password]]]])
|
||||||
|
|
||||||
|
Explanation of the parameters:
|
||||||
|
|
||||||
|
`proxy_type` - The type of the proxy server. This can be one of three possible
|
||||||
|
choices: `PROXY_TYPE_SOCKS4`, `PROXY_TYPE_SOCKS5` and `PROXY_TYPE_HTTP` for SOCKS4,
|
||||||
|
SOCKS5 and HTTP servers respectively. `SOCKS4`, `SOCKS5`, and `HTTP` are all aliases, respectively.
|
||||||
|
|
||||||
|
`addr` - The IP address or DNS name of the proxy server.
|
||||||
|
|
||||||
|
`port` - The port of the proxy server. Defaults to 1080 for socks and 8080 for http.
|
||||||
|
|
||||||
|
`rdns` - This is a boolean flag than modifies the behavior regarding DNS resolving.
|
||||||
|
If it is set to True, DNS resolving will be preformed remotely, on the server.
|
||||||
|
If it is set to False, DNS resolving will be preformed locally. Please note that
|
||||||
|
setting this to True with SOCKS4 servers actually use an extension to the protocol,
|
||||||
|
called SOCKS4a, which may not be supported on all servers (SOCKS5 and http servers
|
||||||
|
always support DNS). The default is True.
|
||||||
|
|
||||||
|
`username` - For SOCKS5 servers, this allows simple username / password authentication
|
||||||
|
with the server. For SOCKS4 servers, this parameter will be sent as the userid.
|
||||||
|
This parameter is ignored if an HTTP server is being used. If it is not provided,
|
||||||
|
authentication will not be used (servers may accept unauthenticated requests).
|
||||||
|
|
||||||
|
`password` - This parameter is valid only for SOCKS5 servers and specifies the
|
||||||
|
respective password for the username provided.
|
||||||
|
|
||||||
|
Example of usage:
|
||||||
|
|
||||||
|
>>> s.set_proxy(socks.SOCKS5, "socks.example.com") # uses default port 1080
|
||||||
|
>>> s.set_proxy(socks.SOCKS4, "socks.test.com", 1081)
|
||||||
|
|
||||||
|
After the set_proxy method has been called, simply call the connect method with the
|
||||||
|
traditional parameters to establish a connection through the proxy:
|
||||||
|
|
||||||
|
>>> s.connect(("www.sourceforge.net", 80))
|
||||||
|
>>>
|
||||||
|
|
||||||
|
Connection will take a bit longer to allow negotiation with the proxy server.
|
||||||
|
Please note that calling connect without calling `set_proxy` earlier will connect
|
||||||
|
without a proxy (just like a regular socket).
|
||||||
|
|
||||||
|
Errors: Any errors in the connection process will trigger exceptions. The exception
|
||||||
|
may either be generated by the underlying socket layer or may be custom module
|
||||||
|
exceptions, whose details follow:
|
||||||
|
|
||||||
|
class `ProxyError` - This is a base exception class. It is not raised directly but
|
||||||
|
rather all other exception classes raised by this module are derived from it.
|
||||||
|
This allows an easy way to catch all proxy-related errors. It descends from `IOError`.
|
||||||
|
|
||||||
|
All `ProxyError` exceptions have an attribute `socket_err`, which will contain either a
|
||||||
|
caught `socket.error` exception, or `None` if there wasn't any.
|
||||||
|
|
||||||
|
class `GeneralProxyError` - When thrown, it indicates a problem which does not fall
|
||||||
|
into another category.
|
||||||
|
|
||||||
|
* `Sent invalid data` - This error means that unexpected data has been received from
|
||||||
|
the server. The most common reason is that the server specified as the proxy is
|
||||||
|
not really a SOCKS4/SOCKS5/HTTP proxy, or maybe the proxy type specified is wrong.
|
||||||
|
|
||||||
|
* `Connection closed unexpectedly` - The proxy server unexpectedly closed the connection.
|
||||||
|
This may indicate that the proxy server is experiencing network or software problems.
|
||||||
|
|
||||||
|
* `Bad proxy type` - This will be raised if the type of the proxy supplied to the
|
||||||
|
set_proxy function was not one of `SOCKS4`/`SOCKS5`/`HTTP`.
|
||||||
|
|
||||||
|
* `Bad input` - This will be raised if the `connect()` method is called with bad input
|
||||||
|
parameters.
|
||||||
|
|
||||||
|
class `SOCKS5AuthError` - This indicates that the connection through a SOCKS5 server
|
||||||
|
failed due to an authentication problem.
|
||||||
|
|
||||||
|
* `Authentication is required` - This will happen if you use a SOCKS5 server which
|
||||||
|
requires authentication without providing a username / password at all.
|
||||||
|
|
||||||
|
* `All offered authentication methods were rejected` - This will happen if the proxy
|
||||||
|
requires a special authentication method which is not supported by this module.
|
||||||
|
|
||||||
|
* `Unknown username or invalid password` - Self descriptive.
|
||||||
|
|
||||||
|
class `SOCKS5Error` - This will be raised for SOCKS5 errors which are not related to
|
||||||
|
authentication.
|
||||||
|
The parameter is a tuple containing a code, as given by the server,
|
||||||
|
and a description of the
|
||||||
|
error. The possible errors, according to the RFC, are:
|
||||||
|
|
||||||
|
* `0x01` - General SOCKS server failure - If for any reason the proxy server is unable to
|
||||||
|
fulfill your request (internal server error).
|
||||||
|
* `0x02` - connection not allowed by ruleset - If the address you're trying to connect to
|
||||||
|
is blacklisted on the server or requires authentication.
|
||||||
|
* `0x03` - Network unreachable - The target could not be contacted. A router on the network
|
||||||
|
had replied with a destination net unreachable error.
|
||||||
|
* `0x04` - Host unreachable - The target could not be contacted. A router on the network
|
||||||
|
had replied with a destination host unreachable error.
|
||||||
|
* `0x05` - Connection refused - The target server has actively refused the connection
|
||||||
|
(the requested port is closed).
|
||||||
|
* `0x06` - TTL expired - The TTL value of the SYN packet from the proxy to the target server
|
||||||
|
has expired. This usually means that there are network problems causing the packet
|
||||||
|
to be caught in a router-to-router "ping-pong".
|
||||||
|
* `0x07` - Command not supported - For instance if the server does not support UDP.
|
||||||
|
* `0x08` - Address type not supported - The client has provided an invalid address type.
|
||||||
|
When using this module, this error should not occur.
|
||||||
|
|
||||||
|
class `SOCKS4Error` - This will be raised for SOCKS4 errors. The parameter is a tuple
|
||||||
|
containing a code and a description of the error, as given by the server. The
|
||||||
|
possible error, according to the specification are:
|
||||||
|
|
||||||
|
* `0x5B` - Request rejected or failed - Will be raised in the event of an failure for any
|
||||||
|
reason other then the two mentioned next.
|
||||||
|
* `0x5C` - request rejected because SOCKS server cannot connect to identd on the client -
|
||||||
|
The Socks server had tried an ident lookup on your computer and has failed. In this
|
||||||
|
case you should run an identd server and/or configure your firewall to allow incoming
|
||||||
|
connections to local port 113 from the remote server.
|
||||||
|
* `0x5D` - request rejected because the client program and identd report different user-ids -
|
||||||
|
The Socks server had performed an ident lookup on your computer and has received a
|
||||||
|
different userid than the one you have provided. Change your userid (through the
|
||||||
|
username parameter of the set_proxy method) to match and try again.
|
||||||
|
|
||||||
|
class `HTTPError` - This will be raised for HTTP errors. The message will contain
|
||||||
|
the HTTP status code and provided error message.
|
||||||
|
|
||||||
|
After establishing the connection, the object behaves like a standard socket.
|
||||||
|
|
||||||
|
Methods like `makefile()` and `settimeout()` should behave just like regular sockets.
|
||||||
|
Call the `close()` method to close the connection.
|
||||||
|
|
||||||
|
In addition to the `socksocket` class, an additional function worth mentioning is the
|
||||||
|
`set_default_proxy` function. The parameters are the same as the `set_proxy` method.
|
||||||
|
This function will set default proxy settings for newly created `socksocket` objects,
|
||||||
|
in which the proxy settings haven't been changed via the `set_proxy` method.
|
||||||
|
This is quite useful if you wish to force 3rd party modules to use a SOCKS proxy,
|
||||||
|
by overriding the socket object.
|
||||||
|
For example:
|
||||||
|
|
||||||
|
>>> socks.set_default_proxy(socks.SOCKS5, "socks.example.com")
|
||||||
|
>>> socket.socket = socks.socksocket
|
||||||
|
>>> urllib.urlopen("http://www.sourceforge.net/")
|
||||||
|
|
||||||
|
|
||||||
|
PROBLEMS
|
||||||
|
---------
|
||||||
|
|
||||||
|
Please open a GitHub issue at https://github.com/Anorov/PySocks
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
PySocks-1.7.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||||
|
PySocks-1.7.1.dist-info/LICENSE,sha256=cCfiFOAU63i3rcwc7aWspxOnn8T2oMUsnaWz5wfm_-k,1401
|
||||||
|
PySocks-1.7.1.dist-info/METADATA,sha256=zbQMizjPOOP4DhEiEX24XXjNrYuIxF9UGUpN0uFDB6Y,13235
|
||||||
|
PySocks-1.7.1.dist-info/RECORD,,
|
||||||
|
PySocks-1.7.1.dist-info/WHEEL,sha256=t_MpApv386-8PVts2R6wsTifdIn0vbUDTVv61IbqFC8,92
|
||||||
|
PySocks-1.7.1.dist-info/top_level.txt,sha256=TKSOIfCFBoK9EY8FBYbYqC3PWd3--G15ph9n8-QHPDk,19
|
||||||
|
__pycache__/socks.cpython-311.pyc,,
|
||||||
|
__pycache__/sockshandler.cpython-311.pyc,,
|
||||||
|
socks.py,sha256=xOYn27t9IGrbTBzWsUUuPa0YBuplgiUykzkOB5V5iFY,31086
|
||||||
|
sockshandler.py,sha256=2SYGj-pwt1kjgLoZAmyeaEXCeZDWRmfVS_QG6kErGtY,3966
|
|
@ -0,0 +1,5 @@
|
||||||
|
Wheel-Version: 1.0
|
||||||
|
Generator: bdist_wheel (0.33.3)
|
||||||
|
Root-Is-Purelib: true
|
||||||
|
Tag: py3-none-any
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
socks
|
||||||
|
sockshandler
|
|
@ -0,0 +1 @@
|
||||||
|
pip
|
|
@ -0,0 +1,21 @@
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2016-Present LonamiWebs
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
|
@ -0,0 +1,113 @@
|
||||||
|
Metadata-Version: 2.1
|
||||||
|
Name: Telethon
|
||||||
|
Version: 1.36.0
|
||||||
|
Summary: Full-featured Telegram client library for Python 3
|
||||||
|
Home-page: https://github.com/LonamiWebs/Telethon
|
||||||
|
Download-URL: https://github.com/LonamiWebs/Telethon/releases
|
||||||
|
Author: Lonami Exo
|
||||||
|
Author-email: totufals@hotmail.com
|
||||||
|
License: MIT
|
||||||
|
Keywords: telegram api chat client library messaging mtproto
|
||||||
|
Classifier: Development Status :: 5 - Production/Stable
|
||||||
|
Classifier: Intended Audience :: Developers
|
||||||
|
Classifier: Topic :: Communications :: Chat
|
||||||
|
Classifier: License :: OSI Approved :: MIT License
|
||||||
|
Classifier: Programming Language :: Python :: 3
|
||||||
|
Classifier: Programming Language :: Python :: 3.5
|
||||||
|
Classifier: Programming Language :: Python :: 3.6
|
||||||
|
Classifier: Programming Language :: Python :: 3.7
|
||||||
|
Classifier: Programming Language :: Python :: 3.8
|
||||||
|
Requires-Python: >=3.5
|
||||||
|
License-File: LICENSE
|
||||||
|
Requires-Dist: pyaes
|
||||||
|
Requires-Dist: rsa
|
||||||
|
Provides-Extra: cryptg
|
||||||
|
Requires-Dist: cryptg ; extra == 'cryptg'
|
||||||
|
|
||||||
|
Telethon
|
||||||
|
========
|
||||||
|
.. epigraph::
|
||||||
|
|
||||||
|
⭐️ Thanks **everyone** who has starred the project, it means a lot!
|
||||||
|
|
||||||
|
|logo| **Telethon** is an asyncio_ **Python 3**
|
||||||
|
MTProto_ library to interact with Telegram_'s API
|
||||||
|
as a user or through a bot account (bot API alternative).
|
||||||
|
|
||||||
|
.. important::
|
||||||
|
|
||||||
|
If you have code using Telethon before its 1.0 version, you must
|
||||||
|
read `Compatibility and Convenience`_ to learn how to migrate.
|
||||||
|
As with any third-party library for Telegram, be careful not to
|
||||||
|
break `Telegram's ToS`_ or `Telegram can ban the account`_.
|
||||||
|
|
||||||
|
What is this?
|
||||||
|
-------------
|
||||||
|
|
||||||
|
Telegram is a popular messaging application. This library is meant
|
||||||
|
to make it easy for you to write Python programs that can interact
|
||||||
|
with Telegram. Think of it as a wrapper that has already done the
|
||||||
|
heavy job for you, so you can focus on developing an application.
|
||||||
|
|
||||||
|
|
||||||
|
Installing
|
||||||
|
----------
|
||||||
|
|
||||||
|
.. code-block:: sh
|
||||||
|
|
||||||
|
pip3 install telethon
|
||||||
|
|
||||||
|
|
||||||
|
Creating a client
|
||||||
|
-----------------
|
||||||
|
|
||||||
|
.. code-block:: python
|
||||||
|
|
||||||
|
from telethon import TelegramClient, events, sync
|
||||||
|
|
||||||
|
# These example values won't work. You must get your own api_id and
|
||||||
|
# api_hash from https://my.telegram.org, under API Development.
|
||||||
|
api_id = 12345
|
||||||
|
api_hash = '0123456789abcdef0123456789abcdef'
|
||||||
|
|
||||||
|
client = TelegramClient('session_name', api_id, api_hash)
|
||||||
|
client.start()
|
||||||
|
|
||||||
|
|
||||||
|
Doing stuff
|
||||||
|
-----------
|
||||||
|
|
||||||
|
.. code-block:: python
|
||||||
|
|
||||||
|
print(client.get_me().stringify())
|
||||||
|
|
||||||
|
client.send_message('username', 'Hello! Talking to you from Telethon')
|
||||||
|
client.send_file('username', '/home/myself/Pictures/holidays.jpg')
|
||||||
|
|
||||||
|
client.download_profile_photo('me')
|
||||||
|
messages = client.get_messages('username')
|
||||||
|
messages[0].download_media()
|
||||||
|
|
||||||
|
@client.on(events.NewMessage(pattern='(?i)hi|hello'))
|
||||||
|
async def handler(event):
|
||||||
|
await event.respond('Hey!')
|
||||||
|
|
||||||
|
|
||||||
|
Next steps
|
||||||
|
----------
|
||||||
|
|
||||||
|
Do you like how Telethon looks? Check out `Read The Docs`_ for a more
|
||||||
|
in-depth explanation, with examples, troubleshooting issues, and more
|
||||||
|
useful information.
|
||||||
|
|
||||||
|
.. _asyncio: https://docs.python.org/3/library/asyncio.html
|
||||||
|
.. _MTProto: https://core.telegram.org/mtproto
|
||||||
|
.. _Telegram: https://telegram.org
|
||||||
|
.. _Compatibility and Convenience: https://docs.telethon.dev/en/stable/misc/compatibility-and-convenience.html
|
||||||
|
.. _Telegram's ToS: https://core.telegram.org/api/terms
|
||||||
|
.. _Telegram can ban the account: https://docs.telethon.dev/en/stable/quick-references/faq.html#my-account-was-deleted-limited-when-using-the-library
|
||||||
|
.. _Read The Docs: https://docs.telethon.dev
|
||||||
|
|
||||||
|
.. |logo| image:: logo.svg
|
||||||
|
:width: 24pt
|
||||||
|
:height: 24pt
|
|
@ -0,0 +1,307 @@
|
||||||
|
Telethon-1.36.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||||
|
Telethon-1.36.0.dist-info/LICENSE,sha256=fVKCkA2Onr4PPTdCF4odI2522BGE9PyCkOIhE18rCyo,1075
|
||||||
|
Telethon-1.36.0.dist-info/METADATA,sha256=bfm-xOKLB-DuIWWubcvwnDzZlE3SrxyBC1ILjCvoFZc,3506
|
||||||
|
Telethon-1.36.0.dist-info/RECORD,,
|
||||||
|
Telethon-1.36.0.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||||
|
Telethon-1.36.0.dist-info/WHEEL,sha256=mguMlWGMX-VHnMpKOjjQidIo1ssRlCFu4a4mBpz1s2M,91
|
||||||
|
Telethon-1.36.0.dist-info/top_level.txt,sha256=qeAt2E18Wt064tJzUgGawTlQsyRHbQI-Z0s59fzrO3E,9
|
||||||
|
telethon/__init__.py,sha256=LoGXeU9VlvO1jwF4WJLd38MtekchxJEX4ZlRHXJgyQA,407
|
||||||
|
telethon/__pycache__/__init__.cpython-311.pyc,,
|
||||||
|
telethon/__pycache__/custom.cpython-311.pyc,,
|
||||||
|
telethon/__pycache__/functions.cpython-311.pyc,,
|
||||||
|
telethon/__pycache__/helpers.cpython-311.pyc,,
|
||||||
|
telethon/__pycache__/hints.cpython-311.pyc,,
|
||||||
|
telethon/__pycache__/password.cpython-311.pyc,,
|
||||||
|
telethon/__pycache__/requestiter.cpython-311.pyc,,
|
||||||
|
telethon/__pycache__/sync.cpython-311.pyc,,
|
||||||
|
telethon/__pycache__/types.cpython-311.pyc,,
|
||||||
|
telethon/__pycache__/utils.cpython-311.pyc,,
|
||||||
|
telethon/__pycache__/version.cpython-311.pyc,,
|
||||||
|
telethon/_updates/__init__.py,sha256=onnrxSuMvNCQRGFEkdMoKXKlkQur5E36NPs2_byPBLI,170
|
||||||
|
telethon/_updates/__pycache__/__init__.cpython-311.pyc,,
|
||||||
|
telethon/_updates/__pycache__/entitycache.cpython-311.pyc,,
|
||||||
|
telethon/_updates/__pycache__/messagebox.cpython-311.pyc,,
|
||||||
|
telethon/_updates/__pycache__/session.cpython-311.pyc,,
|
||||||
|
telethon/_updates/entitycache.py,sha256=bbzakxz13e3E689tr0FTPHXnSV43X5O_BFsuLioiXyU,1853
|
||||||
|
telethon/_updates/messagebox.py,sha256=l-JtC0uULhLuIKUifUCTyu3Mnx8ktQOZsuIyLpr0hWg,34876
|
||||||
|
telethon/_updates/session.py,sha256=uKq0RBYrjzsPU-_ZDdOJKGwRvSjoaLC5UK96wRUd044,6168
|
||||||
|
telethon/client/__init__.py,sha256=6Xi6IwVuOcx8jRW9GozoczlGIGDm_mo2iYK8BbfvH2U,1200
|
||||||
|
telethon/client/__pycache__/__init__.cpython-311.pyc,,
|
||||||
|
telethon/client/__pycache__/account.cpython-311.pyc,,
|
||||||
|
telethon/client/__pycache__/auth.cpython-311.pyc,,
|
||||||
|
telethon/client/__pycache__/bots.cpython-311.pyc,,
|
||||||
|
telethon/client/__pycache__/buttons.cpython-311.pyc,,
|
||||||
|
telethon/client/__pycache__/chats.cpython-311.pyc,,
|
||||||
|
telethon/client/__pycache__/dialogs.cpython-311.pyc,,
|
||||||
|
telethon/client/__pycache__/downloads.cpython-311.pyc,,
|
||||||
|
telethon/client/__pycache__/messageparse.cpython-311.pyc,,
|
||||||
|
telethon/client/__pycache__/messages.cpython-311.pyc,,
|
||||||
|
telethon/client/__pycache__/telegrambaseclient.cpython-311.pyc,,
|
||||||
|
telethon/client/__pycache__/telegramclient.cpython-311.pyc,,
|
||||||
|
telethon/client/__pycache__/updates.cpython-311.pyc,,
|
||||||
|
telethon/client/__pycache__/uploads.cpython-311.pyc,,
|
||||||
|
telethon/client/__pycache__/users.cpython-311.pyc,,
|
||||||
|
telethon/client/account.py,sha256=a9ZZZM1Jx0NvkO28eSvHC5iDseP9LQPXC24jqp2tVMw,9572
|
||||||
|
telethon/client/auth.py,sha256=P9r0EekjnopnLGn1iXAToST-etiORd6E6iYxwIwFGgg,24970
|
||||||
|
telethon/client/bots.py,sha256=R2PDg8Mae5a65Dfd9G6dcvRL-KFv4rOgm8ZIAC-DF1M,2453
|
||||||
|
telethon/client/buttons.py,sha256=8MCxliLl1KYO7N_2t7PcnN5Ule5sPKN7Ibud9nj-FE0,3280
|
||||||
|
telethon/client/chats.py,sha256=IjO1hFc_D7JV-b8RP0OdbZm-v7eotTfsZo2NFexQROc,51321
|
||||||
|
telethon/client/dialogs.py,sha256=M6jTGqZTVZUo78JULgQg90w7PCga480dey9_kjQikOc,23008
|
||||||
|
telethon/client/downloads.py,sha256=Fbdnur0G6fAfcyVOcV88DLcVZpoZcLE0GOiLPu1uGWQ,39857
|
||||||
|
telethon/client/messageparse.py,sha256=ifPKP74a8nxUmK6IFnq-oVy4vYWBT20gWJk_EJZNGQ8,9387
|
||||||
|
telethon/client/messages.py,sha256=XihaNMui-Ni3ePtnPQXP5nA4yoqDsc8v-wXXV2kAfeE,62877
|
||||||
|
telethon/client/telegrambaseclient.py,sha256=yts7o4N9b8oLENbUgJiyBHOn4RBtPJWRFpJ9DuLwbXI,39150
|
||||||
|
telethon/client/telegramclient.py,sha256=jbDY2zhJYV_Vu6vK90JG5wZ16yuBphMrYm_uOTFWAOY,478
|
||||||
|
telethon/client/updates.py,sha256=75bJIXJMqq2zWQMjy6EyYGcGS1qrBCdtVbrWmWQ5sY4,29980
|
||||||
|
telethon/client/uploads.py,sha256=_nus8ZR21dXVk4chDLonIhC_LHBZYALSedZDlMDP89I,34395
|
||||||
|
telethon/client/users.py,sha256=ufA4jzER22QGlKlYYZl0m3Ak4mHq3Ra7cAo70JzvQYg,25300
|
||||||
|
telethon/crypto/__init__.py,sha256=qxhA1GYOg35PY06BZO92I7MGubVa8Rcy1vt9kCmWpsU,349
|
||||||
|
telethon/crypto/__pycache__/__init__.cpython-311.pyc,,
|
||||||
|
telethon/crypto/__pycache__/aes.cpython-311.pyc,,
|
||||||
|
telethon/crypto/__pycache__/aesctr.cpython-311.pyc,,
|
||||||
|
telethon/crypto/__pycache__/authkey.cpython-311.pyc,,
|
||||||
|
telethon/crypto/__pycache__/cdndecrypter.cpython-311.pyc,,
|
||||||
|
telethon/crypto/__pycache__/factorization.cpython-311.pyc,,
|
||||||
|
telethon/crypto/__pycache__/libssl.cpython-311.pyc,,
|
||||||
|
telethon/crypto/__pycache__/rsa.cpython-311.pyc,,
|
||||||
|
telethon/crypto/aes.py,sha256=cNdfiN6SWtNL6q7S1PyU6dwpwGo0UOIzlhvuq6g1tRg,3138
|
||||||
|
telethon/crypto/aesctr.py,sha256=v_8BYNk0Al4TkLrItonoZeFn7aKOY-pPzpyMg81de20,1216
|
||||||
|
telethon/crypto/authkey.py,sha256=tP3gB3C_xAwrl2-pIcuQNTDeTnAg_dvNocuYuQ-Rbh4,1887
|
||||||
|
telethon/crypto/cdndecrypter.py,sha256=0J2iONAg0H8YS7MWKZQzvcBup5bXlJOGfxOXUGC9VN4,3844
|
||||||
|
telethon/crypto/factorization.py,sha256=a5ik8nFAU6YtGq_YBTpiHh8Ie5JTd4QKngVO413sMVU,1633
|
||||||
|
telethon/crypto/libssl.py,sha256=3UZYo24QFlUenrLB35kcIiDZWPY99xIg58iHAZxbFRg,4528
|
||||||
|
telethon/crypto/rsa.py,sha256=BeLLJ0gX15xTmOZLfoVtJN3DJWZlmYpJZYYiZ3Nms8c,6525
|
||||||
|
telethon/custom.py,sha256=eoVN0Me6yxeaQ9vCMHlrggNYa0gjNN-IWD-quDkWrqI,25
|
||||||
|
telethon/errors/__init__.py,sha256=WnwrAziTx7CHZIEtjl21P3U4o6Rd89MBtSYn_VNlJYw,1659
|
||||||
|
telethon/errors/__pycache__/__init__.cpython-311.pyc,,
|
||||||
|
telethon/errors/__pycache__/common.cpython-311.pyc,,
|
||||||
|
telethon/errors/__pycache__/rpcbaseerrors.cpython-311.pyc,,
|
||||||
|
telethon/errors/__pycache__/rpcerrorlist.cpython-311.pyc,,
|
||||||
|
telethon/errors/common.py,sha256=8eF9JpztGs21hxZAaNbmVRqLpS9Wz8rrWmgKdSJkS5I,6485
|
||||||
|
telethon/errors/rpcbaseerrors.py,sha256=2blg7dETd_JcEXP6DpYxHEAzBOxBpAdWSN45h-1_ryY,3470
|
||||||
|
telethon/errors/rpcerrorlist.py,sha256=Z1lsNsuN1cV5sUsfwV-bwt3gufn3P48PXgIo9i-SlPo,197212
|
||||||
|
telethon/events/__init__.py,sha256=z_gTOmcqDltd631fSWPuwMKdEqErZCMRu_gGB8cJSPg,4275
|
||||||
|
telethon/events/__pycache__/__init__.cpython-311.pyc,,
|
||||||
|
telethon/events/__pycache__/album.cpython-311.pyc,,
|
||||||
|
telethon/events/__pycache__/callbackquery.cpython-311.pyc,,
|
||||||
|
telethon/events/__pycache__/chataction.cpython-311.pyc,,
|
||||||
|
telethon/events/__pycache__/common.cpython-311.pyc,,
|
||||||
|
telethon/events/__pycache__/inlinequery.cpython-311.pyc,,
|
||||||
|
telethon/events/__pycache__/messagedeleted.cpython-311.pyc,,
|
||||||
|
telethon/events/__pycache__/messageedited.cpython-311.pyc,,
|
||||||
|
telethon/events/__pycache__/messageread.cpython-311.pyc,,
|
||||||
|
telethon/events/__pycache__/newmessage.cpython-311.pyc,,
|
||||||
|
telethon/events/__pycache__/raw.cpython-311.pyc,,
|
||||||
|
telethon/events/__pycache__/userupdate.cpython-311.pyc,,
|
||||||
|
telethon/events/album.py,sha256=Mvbv-sW5MpoBhc37iORJ_o0wYMa4Xgeyk6Qxy185g04,12890
|
||||||
|
telethon/events/callbackquery.py,sha256=23OiI3hRYKiZVAJZmhXgSU2aCklrtrc4zA8x4NDsay8,13651
|
||||||
|
telethon/events/chataction.py,sha256=7ahZhhinTzJSlPieoll4DK3RGRwf2XZbnWNy72PdCq4,17966
|
||||||
|
telethon/events/common.py,sha256=pnS5xPZ-vdYXlMsTP2e8VLyZ1lNkqxcbh2aekz5el74,6315
|
||||||
|
telethon/events/inlinequery.py,sha256=RL98F5UsH5Tk8mW73nQe-CmCJGMJJkE0HvpWJEFa_e4,8974
|
||||||
|
telethon/events/messagedeleted.py,sha256=zerWLmfGl37llNHyZR56rOgogQD9dYjqFhoTiUYFZ-A,2128
|
||||||
|
telethon/events/messageedited.py,sha256=IiwDodzSYqDTgbxL0YYPGBnYnxJWDzobg4lQ3O8lWG0,1886
|
||||||
|
telethon/events/messageread.py,sha256=MVOwnob8szisy0hu9_V00hQ0ViTf89fyKFpAezoRX-8,5470
|
||||||
|
telethon/events/newmessage.py,sha256=RujplQy3R8zb18VPS1BbCJcyRk__kbZfyWYfoKF1gi4,9161
|
||||||
|
telethon/events/raw.py,sha256=xsA128s5A02heXsdp3GXksMNBbELpkCGB9uks56mlBk,1651
|
||||||
|
telethon/events/userupdate.py,sha256=L5EIwWtwa2wf_sGkeR9vVk3t2myNU6gNeKu6Sm5ZzFs,10620
|
||||||
|
telethon/extensions/__init__.py,sha256=Dds8fDdiAudiJTAVdOy_dZS4BWesSbDbX2uItBB8m3Y,280
|
||||||
|
telethon/extensions/__pycache__/__init__.cpython-311.pyc,,
|
||||||
|
telethon/extensions/__pycache__/binaryreader.cpython-311.pyc,,
|
||||||
|
telethon/extensions/__pycache__/html.cpython-311.pyc,,
|
||||||
|
telethon/extensions/__pycache__/markdown.cpython-311.pyc,,
|
||||||
|
telethon/extensions/__pycache__/messagepacker.cpython-311.pyc,,
|
||||||
|
telethon/extensions/binaryreader.py,sha256=0fZWr_4xt45klyN1nf3c8BYN-Xi7KP02wzT_C0-_U4E,5745
|
||||||
|
telethon/extensions/html.py,sha256=QZuRCa1uGKZLEEZyxT8cTuZhWEnRETnSCXFYLq1XU64,6737
|
||||||
|
telethon/extensions/markdown.py,sha256=eHFPweRZzGq1sEgGFum4eHjqh4uglCXuouah9kBMwXI,6892
|
||||||
|
telethon/extensions/messagepacker.py,sha256=ENWb3eqW8QvAVTbcYlYedBADIFopW8nZUX945uZR7kM,4075
|
||||||
|
telethon/functions.py,sha256=oOvyAy283XgToCVDJjkY0ajwtHiNBt8-HQgV7Q_a5KE,28
|
||||||
|
telethon/helpers.py,sha256=itQieYj7BY5HOPZ051gccsKcKVg8SwEcoKa4ncYvgDg,14651
|
||||||
|
telethon/hints.py,sha256=r2k9avwVsWqdW_o6u_bTobcxAszyuJCqZvp7gkms8l4,1562
|
||||||
|
telethon/network/__init__.py,sha256=Yo7FYAQSzh7u9EVYULPyxMzRKbQ7X7dAK9x-RIEUgbk,585
|
||||||
|
telethon/network/__pycache__/__init__.cpython-311.pyc,,
|
||||||
|
telethon/network/__pycache__/authenticator.cpython-311.pyc,,
|
||||||
|
telethon/network/__pycache__/mtprotoplainsender.cpython-311.pyc,,
|
||||||
|
telethon/network/__pycache__/mtprotosender.cpython-311.pyc,,
|
||||||
|
telethon/network/__pycache__/mtprotostate.cpython-311.pyc,,
|
||||||
|
telethon/network/__pycache__/requeststate.cpython-311.pyc,,
|
||||||
|
telethon/network/authenticator.py,sha256=zHIsMl3pQUaA46aU-AM8Z_yWuuIJ0FiRAEMwwQcpKdc,7869
|
||||||
|
telethon/network/connection/__init__.py,sha256=pzMWk8sKUd-_w0rkVKqkZvBv7SuKbnKs6EcMA2gfxNc,423
|
||||||
|
telethon/network/connection/__pycache__/__init__.cpython-311.pyc,,
|
||||||
|
telethon/network/connection/__pycache__/connection.cpython-311.pyc,,
|
||||||
|
telethon/network/connection/__pycache__/http.cpython-311.pyc,,
|
||||||
|
telethon/network/connection/__pycache__/tcpabridged.cpython-311.pyc,,
|
||||||
|
telethon/network/connection/__pycache__/tcpfull.cpython-311.pyc,,
|
||||||
|
telethon/network/connection/__pycache__/tcpintermediate.cpython-311.pyc,,
|
||||||
|
telethon/network/connection/__pycache__/tcpmtproxy.cpython-311.pyc,,
|
||||||
|
telethon/network/connection/__pycache__/tcpobfuscated.cpython-311.pyc,,
|
||||||
|
telethon/network/connection/connection.py,sha256=RqiVjVmxrgrUQ3y6S3UDkyZ_V23SpOs8jH6g7oSEtJo,15860
|
||||||
|
telethon/network/connection/http.py,sha256=M7lJmVzKBRbJOy7fcJWLCIWNpqR5Yk6Iz1OtHG8D_F4,1220
|
||||||
|
telethon/network/connection/tcpabridged.py,sha256=J-GzWkPkPhehkjreCYLewEOBsulKqtPhnXclUcLaEZk,961
|
||||||
|
telethon/network/connection/tcpfull.py,sha256=SUFA4DY_d6Pi59W62TWI9JFWvHOqAx1ijtNRo1BcJNk,2038
|
||||||
|
telethon/network/connection/tcpintermediate.py,sha256=tX9NSs9rMTlGCC0EmCp0lWfYDrFbqyGOFkiUOh1T_Y4,1374
|
||||||
|
telethon/network/connection/tcpmtproxy.py,sha256=OjwL177N9V2JSSGWkWntuWru9DfG9MJVkFSt6G66Rfc,5755
|
||||||
|
telethon/network/connection/tcpobfuscated.py,sha256=-ulMJdzXYahVoUcmPfYcLhWQv66gKAchI1Cs11VWdto,2003
|
||||||
|
telethon/network/mtprotoplainsender.py,sha256=f8UbLhGlFE6htDvMkAN8RNBxKjXNPDAumZF2btT56z0,2019
|
||||||
|
telethon/network/mtprotosender.py,sha256=zj6vNQsfq6lGPm_9l4dKZ4-IKut6N6tV_xerVgqtPrQ,38626
|
||||||
|
telethon/network/mtprotostate.py,sha256=7OZZMUqtCLk5ymsepcIV9zMPM02FB5M0r4jXj-QhV0k,10968
|
||||||
|
telethon/network/requeststate.py,sha256=z2LiyRmnAcdjW34RtjuOPDiHPZVo-Dv5i8CBvIsi5QI,644
|
||||||
|
telethon/password.py,sha256=8hpJUihXO3UMNmId4tOHqP3nvyEjSxN81phILsCXE00,7194
|
||||||
|
telethon/requestiter.py,sha256=pzSJAJ5SU8dGDzv2zizNmS52PsxQx4qEbUymt5-bdCA,4386
|
||||||
|
telethon/sessions/__init__.py,sha256=cgGTwNhWfx_Txe1-TFL73DIZUEI6rp_4eyOOoG5aLlY,132
|
||||||
|
telethon/sessions/__pycache__/__init__.cpython-311.pyc,,
|
||||||
|
telethon/sessions/__pycache__/abstract.cpython-311.pyc,,
|
||||||
|
telethon/sessions/__pycache__/memory.cpython-311.pyc,,
|
||||||
|
telethon/sessions/__pycache__/sqlite.cpython-311.pyc,,
|
||||||
|
telethon/sessions/__pycache__/string.cpython-311.pyc,,
|
||||||
|
telethon/sessions/abstract.py,sha256=aljDD1ODDz9e4teV1OfHu-jSbnxCDrdoMQRdTsf783w,5091
|
||||||
|
telethon/sessions/memory.py,sha256=gipRjKIwsoceSezxdue1_D7MjeJwa5Q9-9x55OOAp1Y,8328
|
||||||
|
telethon/sessions/sqlite.py,sha256=Cq7RoITcAsN5ZDGFug6x1zAQaMpfLffrfGyJWSBKLt4,12575
|
||||||
|
telethon/sessions/string.py,sha256=EYX7CoLK6X6HV1zeZ298oW-XkdPu-rIhytlw2EMgjr0,1990
|
||||||
|
telethon/sync.py,sha256=BGTMlQOj60rx4P_FoH1_YA-YAuzo6p3GphW60_Bayrc,2609
|
||||||
|
telethon/tl/__init__.py,sha256=l-L4V9hN_ylGAkgI2OATJMHr-wWI2pwmcL3bB7kJ_co,42
|
||||||
|
telethon/tl/__pycache__/__init__.cpython-311.pyc,,
|
||||||
|
telethon/tl/__pycache__/alltlobjects.cpython-311.pyc,,
|
||||||
|
telethon/tl/__pycache__/tlobject.cpython-311.pyc,,
|
||||||
|
telethon/tl/alltlobjects.py,sha256=eJrecIHGMguiwNy2iKgcvWzu6gikEYFBj38iQEa-YXM,101918
|
||||||
|
telethon/tl/core/__init__.py,sha256=BnmaEvfiHdwNnxpNDaR0_M6oLHvAa3WHK7kPjBLuBBo,1104
|
||||||
|
telethon/tl/core/__pycache__/__init__.cpython-311.pyc,,
|
||||||
|
telethon/tl/core/__pycache__/gzippacked.cpython-311.pyc,,
|
||||||
|
telethon/tl/core/__pycache__/messagecontainer.cpython-311.pyc,,
|
||||||
|
telethon/tl/core/__pycache__/rpcresult.cpython-311.pyc,,
|
||||||
|
telethon/tl/core/__pycache__/tlmessage.cpython-311.pyc,,
|
||||||
|
telethon/tl/core/gzippacked.py,sha256=9hgb_aX2ZVjAgcVUj5WWlo0q3GwnApvWbDY2UtjXi_M,1316
|
||||||
|
telethon/tl/core/messagecontainer.py,sha256=fE-Tqc7nL0BcoFsy0h0U0vsuVdXM26IjVO0uZ-6pjp0,1763
|
||||||
|
telethon/tl/core/rpcresult.py,sha256=cWyVXrLITBTQq5Ahtk9Vtgs-TK0MaoKwImlGHhruJd0,1157
|
||||||
|
telethon/tl/core/tlmessage.py,sha256=7BlNdkGjd-TxK8iYEH7k88KUwMUMtSPpcctuvFHpYxM,1070
|
||||||
|
telethon/tl/custom/__init__.py,sha256=ZzeRE1a5mg5ShRlZceGiRCwkdAuyKVTIh1x5W2jp5w0,510
|
||||||
|
telethon/tl/custom/__pycache__/__init__.cpython-311.pyc,,
|
||||||
|
telethon/tl/custom/__pycache__/adminlogevent.cpython-311.pyc,,
|
||||||
|
telethon/tl/custom/__pycache__/button.cpython-311.pyc,,
|
||||||
|
telethon/tl/custom/__pycache__/chatgetter.cpython-311.pyc,,
|
||||||
|
telethon/tl/custom/__pycache__/conversation.cpython-311.pyc,,
|
||||||
|
telethon/tl/custom/__pycache__/dialog.cpython-311.pyc,,
|
||||||
|
telethon/tl/custom/__pycache__/draft.cpython-311.pyc,,
|
||||||
|
telethon/tl/custom/__pycache__/file.cpython-311.pyc,,
|
||||||
|
telethon/tl/custom/__pycache__/forward.cpython-311.pyc,,
|
||||||
|
telethon/tl/custom/__pycache__/inlinebuilder.cpython-311.pyc,,
|
||||||
|
telethon/tl/custom/__pycache__/inlineresult.cpython-311.pyc,,
|
||||||
|
telethon/tl/custom/__pycache__/inlineresults.cpython-311.pyc,,
|
||||||
|
telethon/tl/custom/__pycache__/inputsizedfile.cpython-311.pyc,,
|
||||||
|
telethon/tl/custom/__pycache__/message.cpython-311.pyc,,
|
||||||
|
telethon/tl/custom/__pycache__/messagebutton.cpython-311.pyc,,
|
||||||
|
telethon/tl/custom/__pycache__/participantpermissions.cpython-311.pyc,,
|
||||||
|
telethon/tl/custom/__pycache__/qrlogin.cpython-311.pyc,,
|
||||||
|
telethon/tl/custom/__pycache__/sendergetter.cpython-311.pyc,,
|
||||||
|
telethon/tl/custom/adminlogevent.py,sha256=d-I7AEIm8JUXoTUV30UyQ2IR6VbXQ-pMt8ucRt35uqI,16228
|
||||||
|
telethon/tl/custom/button.py,sha256=ufG49IdP7iOZbgSR57atyguRlz9upiC4J9F-44NZDMs,12411
|
||||||
|
telethon/tl/custom/chatgetter.py,sha256=eGtlD3sLXImh0Qcb11Jphz7LIpelIhnPQgevdUZqvxg,5276
|
||||||
|
telethon/tl/custom/conversation.py,sha256=EYIuKvaWj-0ZFcXrZYf2mUaXGqUHmAJVkVwmIb-NM8k,19403
|
||||||
|
telethon/tl/custom/dialog.py,sha256=PRQcsm4_h4arQUikJY-lvTI-4lEXZtgJE9l7xv6SKnA,5630
|
||||||
|
telethon/tl/custom/draft.py,sha256=Ybpk27nH_kLRPQT3T_W9iLwpqq1dREUS_cKfwhNYyMs,5978
|
||||||
|
telethon/tl/custom/file.py,sha256=fwJ7iQjTHDHpD_DCYP7GHA14F9Q-UUQ6dyr6Wi9PJ_I,4229
|
||||||
|
telethon/tl/custom/forward.py,sha256=BFoVW8BDeYtIzX48HgVhph5eJbDImN9Cf8XW2cRMSFQ,2129
|
||||||
|
telethon/tl/custom/inlinebuilder.py,sha256=J7dTymhk0RXLBAZDFpadNQSO8NIe1-KGWFJm5NRZy84,17011
|
||||||
|
telethon/tl/custom/inlineresult.py,sha256=-UB2mCGtu0zXBM1jPXziPjMCGVSPMHyQ6T-d7NerplY,6304
|
||||||
|
telethon/tl/custom/inlineresults.py,sha256=W-jiYShcLcx4DbDRy4L9vdz-j446n9AO3e20xxKLERY,2754
|
||||||
|
telethon/tl/custom/inputsizedfile.py,sha256=f26v6speewqAT29v2ebeEwo8bZMBEXh6JawdO26yFCE,310
|
||||||
|
telethon/tl/custom/message.py,sha256=6IXCqa3bYQShSeyjygEeYXhdryJQKGHOQ7Dy-fzbl8U,45077
|
||||||
|
telethon/tl/custom/messagebutton.py,sha256=K_irHfNe_SeUbT5LGGhYwaSeMcMCht20wDLv_AiyHPQ,6110
|
||||||
|
telethon/tl/custom/participantpermissions.py,sha256=E8_0v4eHd6K650BJc1_6qVaUhhl-Dbs3iD37gGA6Sv4,4131
|
||||||
|
telethon/tl/custom/qrlogin.py,sha256=I2PZS-J9i9NT_pQYiLWMzGZLTk__CF1CFgUouAE474o,4205
|
||||||
|
telethon/tl/custom/sendergetter.py,sha256=YpbFRZ_VVlLdWXdwnbry1kGxF-pJxqokOqXywDoT0pM,3854
|
||||||
|
telethon/tl/functions/__init__.py,sha256=VU8XS6dips7xMZMzMxXSCD_03TsuzKOgwzS6HZGz6LE,21046
|
||||||
|
telethon/tl/functions/__pycache__/__init__.cpython-311.pyc,,
|
||||||
|
telethon/tl/functions/__pycache__/account.cpython-311.pyc,,
|
||||||
|
telethon/tl/functions/__pycache__/auth.cpython-311.pyc,,
|
||||||
|
telethon/tl/functions/__pycache__/bots.cpython-311.pyc,,
|
||||||
|
telethon/tl/functions/__pycache__/channels.cpython-311.pyc,,
|
||||||
|
telethon/tl/functions/__pycache__/chatlists.cpython-311.pyc,,
|
||||||
|
telethon/tl/functions/__pycache__/contacts.cpython-311.pyc,,
|
||||||
|
telethon/tl/functions/__pycache__/folders.cpython-311.pyc,,
|
||||||
|
telethon/tl/functions/__pycache__/fragment.cpython-311.pyc,,
|
||||||
|
telethon/tl/functions/__pycache__/help.cpython-311.pyc,,
|
||||||
|
telethon/tl/functions/__pycache__/langpack.cpython-311.pyc,,
|
||||||
|
telethon/tl/functions/__pycache__/messages.cpython-311.pyc,,
|
||||||
|
telethon/tl/functions/__pycache__/payments.cpython-311.pyc,,
|
||||||
|
telethon/tl/functions/__pycache__/phone.cpython-311.pyc,,
|
||||||
|
telethon/tl/functions/__pycache__/photos.cpython-311.pyc,,
|
||||||
|
telethon/tl/functions/__pycache__/premium.cpython-311.pyc,,
|
||||||
|
telethon/tl/functions/__pycache__/smsjobs.cpython-311.pyc,,
|
||||||
|
telethon/tl/functions/__pycache__/stats.cpython-311.pyc,,
|
||||||
|
telethon/tl/functions/__pycache__/stickers.cpython-311.pyc,,
|
||||||
|
telethon/tl/functions/__pycache__/stories.cpython-311.pyc,,
|
||||||
|
telethon/tl/functions/__pycache__/updates.cpython-311.pyc,,
|
||||||
|
telethon/tl/functions/__pycache__/upload.cpython-311.pyc,,
|
||||||
|
telethon/tl/functions/__pycache__/users.cpython-311.pyc,,
|
||||||
|
telethon/tl/functions/account.py,sha256=3P1T5hAXDizeZ8Ma4FcUcLYist2Euq5lPR-f5l0-rdU,108490
|
||||||
|
telethon/tl/functions/auth.py,sha256=yZdHE-qzAp0SZmJDQXxsFJDQEykPkZzTMEVLaNGQ-MY,26516
|
||||||
|
telethon/tl/functions/bots.py,sha256=RPvaabFO0uGjhTw7H1I8j49prM1eCCE6GUUBO_odGho,18834
|
||||||
|
telethon/tl/functions/channels.py,sha256=GzCRtadb2AqpZp_8QGR49_pZS8wzuVg1FBKjScEoklY,90484
|
||||||
|
telethon/tl/functions/chatlists.py,sha256=r1OTssim2BI617d5Q8i3QH5A0Bqo30AXo0XtT5_Rtk8,13688
|
||||||
|
telethon/tl/functions/contacts.py,sha256=OzUj1RKHMv9iXW8hpnDH1neWQUIJweDvaKw_h-fLuBQ,26993
|
||||||
|
telethon/tl/functions/folders.py,sha256=oV5dOauHhX4eiX-JwWZeuwU55E8joN5vdPOLhpGurfM,1493
|
||||||
|
telethon/tl/functions/fragment.py,sha256=MTazMRnh55QF5NjjqsZu_7r2HSaEa5tLDQSc0ZVdhGE,1161
|
||||||
|
telethon/tl/functions/help.py,sha256=PJZh-I2KkZehxQKaGKWhRdemPffKEtZynoD-7bzaV0A,17245
|
||||||
|
telethon/tl/functions/langpack.py,sha256=nS_ueOiArKd1tA9gHBR3Gg5ZZK4CI_brmm4DDF7Udzk,5323
|
||||||
|
telethon/tl/functions/messages.py,sha256=Gaz-uGwBbzte_jDipEV1LFcm5E95zYndCj43K-zAYyk,320430
|
||||||
|
telethon/tl/functions/payments.py,sha256=X3d6c8Sjfxdu4kzfYdQFSSEL3YeGxtr-Rbhx98lbCTo,23429
|
||||||
|
telethon/tl/functions/phone.py,sha256=I6lPC3AG91B5m_ehzUwlPNmCbEijFioqotEkOhD-esE,44284
|
||||||
|
telethon/tl/functions/photos.py,sha256=EqKeE3fkvTO1DeQZ6mgs64q3eLc9h6je77CMEBe3d8Q,11349
|
||||||
|
telethon/tl/functions/premium.py,sha256=WOHGfBi9VJyouxzhnjYdvgMsGw_3qPtGU0w_sg-Frxc,5751
|
||||||
|
telethon/tl/functions/smsjobs.py,sha256=e6nMNwhA-dBEp3tnaYkJRhr1qoJbZPgi7tsHH6rij9w,4376
|
||||||
|
telethon/tl/functions/stats.py,sha256=HffV35iv2BK7NVt06BdQm_KPohT5Mm9hNaLIyLKuh0E,12884
|
||||||
|
telethon/tl/functions/stickers.py,sha256=hGmnTK3-HeFL2bkuSP_26bzy1dpYVA6Bz6nlKC9Ghhs,15680
|
||||||
|
telethon/tl/functions/stories.py,sha256=hR-hCZx-udcCDLpiJeFrM2Dztuv6tgjWUqGbYyp0TEc,40695
|
||||||
|
telethon/tl/functions/updates.py,sha256=4NaS1JnJJl6Q-Jjh0Vch5M7hT0B-i8n0OZqIOjh0ADw,4995
|
||||||
|
telethon/tl/functions/upload.py,sha256=w4s5OSToPMBR169MPDxX66re4opNnvW4UaPXHgfLqlg,9391
|
||||||
|
telethon/tl/functions/users.py,sha256=pWbSGqdkwLnF3c45T7vSejmn4P0QwBUgYC-ODpwGDD4,4755
|
||||||
|
telethon/tl/patched/__init__.py,sha256=sHj3X66Nay0U7H56xUGdyC1dH-tYIqRk7Acfe0L14Hg,552
|
||||||
|
telethon/tl/patched/__pycache__/__init__.cpython-311.pyc,,
|
||||||
|
telethon/tl/tlobject.py,sha256=FiPp2YVEu2Q-bERYrZ4wz-uSVtTSoqSi__58YDPvsGo,7390
|
||||||
|
telethon/tl/types/__init__.py,sha256=HBtKGQ7ztlkTubUYxdZMIny84gUfShpdEj932xNCVng,2100619
|
||||||
|
telethon/tl/types/__pycache__/__init__.cpython-311.pyc,,
|
||||||
|
telethon/tl/types/__pycache__/account.cpython-311.pyc,,
|
||||||
|
telethon/tl/types/__pycache__/auth.cpython-311.pyc,,
|
||||||
|
telethon/tl/types/__pycache__/bots.cpython-311.pyc,,
|
||||||
|
telethon/tl/types/__pycache__/channels.cpython-311.pyc,,
|
||||||
|
telethon/tl/types/__pycache__/chatlists.cpython-311.pyc,,
|
||||||
|
telethon/tl/types/__pycache__/contacts.cpython-311.pyc,,
|
||||||
|
telethon/tl/types/__pycache__/fragment.cpython-311.pyc,,
|
||||||
|
telethon/tl/types/__pycache__/help.cpython-311.pyc,,
|
||||||
|
telethon/tl/types/__pycache__/messages.cpython-311.pyc,,
|
||||||
|
telethon/tl/types/__pycache__/payments.cpython-311.pyc,,
|
||||||
|
telethon/tl/types/__pycache__/phone.cpython-311.pyc,,
|
||||||
|
telethon/tl/types/__pycache__/photos.cpython-311.pyc,,
|
||||||
|
telethon/tl/types/__pycache__/premium.cpython-311.pyc,,
|
||||||
|
telethon/tl/types/__pycache__/smsjobs.cpython-311.pyc,,
|
||||||
|
telethon/tl/types/__pycache__/stats.cpython-311.pyc,,
|
||||||
|
telethon/tl/types/__pycache__/stickers.cpython-311.pyc,,
|
||||||
|
telethon/tl/types/__pycache__/storage.cpython-311.pyc,,
|
||||||
|
telethon/tl/types/__pycache__/stories.cpython-311.pyc,,
|
||||||
|
telethon/tl/types/__pycache__/updates.cpython-311.pyc,,
|
||||||
|
telethon/tl/types/__pycache__/upload.cpython-311.pyc,,
|
||||||
|
telethon/tl/types/__pycache__/users.cpython-311.pyc,,
|
||||||
|
telethon/tl/types/account.py,sha256=KFoVExKkW9IdmRoDwuYNb2yqUo1A5g4Kj7R6eGnyDOg,45222
|
||||||
|
telethon/tl/types/auth.py,sha256=QBJU3Q_avQwklIiVbNw6Jk-S2mKUjIaOh1dB-EU6tL4,30903
|
||||||
|
telethon/tl/types/bots.py,sha256=9fAWYWLsqpUQXOafpdZsBsu6Z_FxAAuHp4YMYE3xAUI,1262
|
||||||
|
telethon/tl/types/channels.py,sha256=pMAXC2BsnOzhlLSHYMGami5d7sdgnMMxQlF66ZUbeVw,10727
|
||||||
|
telethon/tl/types/chatlists.py,sha256=sma9tDCYxwkFzVAWF2GJJJiGklujlFqvZqmUah8sOzM,10688
|
||||||
|
telethon/tl/types/contacts.py,sha256=_dAqFWcydqcSzIzBxYtSQ3CHPh7eFHgDBSaehQLdIeA,17292
|
||||||
|
telethon/tl/types/fragment.py,sha256=k6QT5rKkXPNa7xA2Rh7FH699nKPPrvBBHn6MxpHNw4w,2035
|
||||||
|
telethon/tl/types/help.py,sha256=mrhmAdovKlZK_91_-h-L1Xv9WaitKvVegOnpVfsvCPA,42098
|
||||||
|
telethon/tl/types/messages.py,sha256=S9uve4lMuFE2SzlOge5ub6JMWP-IwLUpj707qKOm28U,121182
|
||||||
|
telethon/tl/types/payments.py,sha256=ShSSawqIiJ2mmKUiEZwc0PiAOnTyiszEEhHR4epsX0w,37485
|
||||||
|
telethon/tl/types/phone.py,sha256=JcI_6NhVDVnwXI0LUghq_swEB1QeXNdz6c96BeC2HUs,11163
|
||||||
|
telethon/tl/types/photos.py,sha256=ds0vTpT_2yvE19hriVERBgyU52qFZI-RIGO3UEzxIdU,4464
|
||||||
|
telethon/tl/types/premium.py,sha256=1gWTJ9NR52JBrWpQvqskyJHiVSmK0Jn2EnFFsc5JOvQ,9641
|
||||||
|
telethon/tl/types/smsjobs.py,sha256=IqPzAvWKM7n0JlDXm_Jt2_JG6r7RSKfzqVus0iTqQ2o,3964
|
||||||
|
telethon/tl/types/stats.py,sha256=L16-XVs2uep1Tq8W3XWAUBLgaIQoU6_WCYue1WaFZcg,25359
|
||||||
|
telethon/tl/types/stickers.py,sha256=Qp-n8jEeFlrjCngufKJsqetI-vXmqmYyPk0k8Qk0Lf0,958
|
||||||
|
telethon/tl/types/storage.py,sha256=cX4kaMHpxCz_lncXaJ9Pjupmgn6Uba1rXksm3ZDEUwk,3741
|
||||||
|
telethon/tl/types/stories.py,sha256=Og3IufKJCZ4wGzkNq6K-7VePPb5u_P6NRBK8hH386sk,16371
|
||||||
|
telethon/tl/types/updates.py,sha256=bhuIPYHjk7ryn2NoOg1vQ10W-m8DsOjsBSa9QUjoHAI,18123
|
||||||
|
telethon/tl/types/upload.py,sha256=vSBQ4eCuRP9nXz8KFJ8QW19XjJplYGBDh_KOIhMgErU,6217
|
||||||
|
telethon/tl/types/users.py,sha256=JY6fOEve4mpKoNOO7I-tvFTaPLAik-Sacd7kLg9yHpI,1979
|
||||||
|
telethon/types.py,sha256=qZkN0R8FO952PZac3xrIya30asfyQqp5q_fCTISHN3I,24
|
||||||
|
telethon/utils.py,sha256=txcr6koq47Un5L6Q3vrkf88L_pnPj63xqKR_JUW9uMA,54235
|
||||||
|
telethon/version.py,sha256=1yqea1qBqfOrww7gAmJqCzr0rF-UGBPqZJ0OpmkFgT8,96
|
|
@ -0,0 +1,5 @@
|
||||||
|
Wheel-Version: 1.0
|
||||||
|
Generator: setuptools (70.1.1)
|
||||||
|
Root-Is-Purelib: true
|
||||||
|
Tag: py3-none-any
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
telethon
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
222
telecli/lib/python3.11/site-packages/_distutils_hack/__init__.py
Normal file
222
telecli/lib/python3.11/site-packages/_distutils_hack/__init__.py
Normal file
|
@ -0,0 +1,222 @@
|
||||||
|
# don't import any costly modules
|
||||||
|
import sys
|
||||||
|
import os
|
||||||
|
|
||||||
|
|
||||||
|
is_pypy = '__pypy__' in sys.builtin_module_names
|
||||||
|
|
||||||
|
|
||||||
|
def warn_distutils_present():
|
||||||
|
if 'distutils' not in sys.modules:
|
||||||
|
return
|
||||||
|
if is_pypy and sys.version_info < (3, 7):
|
||||||
|
# PyPy for 3.6 unconditionally imports distutils, so bypass the warning
|
||||||
|
# https://foss.heptapod.net/pypy/pypy/-/blob/be829135bc0d758997b3566062999ee8b23872b4/lib-python/3/site.py#L250
|
||||||
|
return
|
||||||
|
import warnings
|
||||||
|
|
||||||
|
warnings.warn(
|
||||||
|
"Distutils was imported before Setuptools, but importing Setuptools "
|
||||||
|
"also replaces the `distutils` module in `sys.modules`. This may lead "
|
||||||
|
"to undesirable behaviors or errors. To avoid these issues, avoid "
|
||||||
|
"using distutils directly, ensure that setuptools is installed in the "
|
||||||
|
"traditional way (e.g. not an editable install), and/or make sure "
|
||||||
|
"that setuptools is always imported before distutils."
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def clear_distutils():
|
||||||
|
if 'distutils' not in sys.modules:
|
||||||
|
return
|
||||||
|
import warnings
|
||||||
|
|
||||||
|
warnings.warn("Setuptools is replacing distutils.")
|
||||||
|
mods = [
|
||||||
|
name
|
||||||
|
for name in sys.modules
|
||||||
|
if name == "distutils" or name.startswith("distutils.")
|
||||||
|
]
|
||||||
|
for name in mods:
|
||||||
|
del sys.modules[name]
|
||||||
|
|
||||||
|
|
||||||
|
def enabled():
|
||||||
|
"""
|
||||||
|
Allow selection of distutils by environment variable.
|
||||||
|
"""
|
||||||
|
which = os.environ.get('SETUPTOOLS_USE_DISTUTILS', 'local')
|
||||||
|
return which == 'local'
|
||||||
|
|
||||||
|
|
||||||
|
def ensure_local_distutils():
|
||||||
|
import importlib
|
||||||
|
|
||||||
|
clear_distutils()
|
||||||
|
|
||||||
|
# With the DistutilsMetaFinder in place,
|
||||||
|
# perform an import to cause distutils to be
|
||||||
|
# loaded from setuptools._distutils. Ref #2906.
|
||||||
|
with shim():
|
||||||
|
importlib.import_module('distutils')
|
||||||
|
|
||||||
|
# check that submodules load as expected
|
||||||
|
core = importlib.import_module('distutils.core')
|
||||||
|
assert '_distutils' in core.__file__, core.__file__
|
||||||
|
assert 'setuptools._distutils.log' not in sys.modules
|
||||||
|
|
||||||
|
|
||||||
|
def do_override():
|
||||||
|
"""
|
||||||
|
Ensure that the local copy of distutils is preferred over stdlib.
|
||||||
|
|
||||||
|
See https://github.com/pypa/setuptools/issues/417#issuecomment-392298401
|
||||||
|
for more motivation.
|
||||||
|
"""
|
||||||
|
if enabled():
|
||||||
|
warn_distutils_present()
|
||||||
|
ensure_local_distutils()
|
||||||
|
|
||||||
|
|
||||||
|
class _TrivialRe:
|
||||||
|
def __init__(self, *patterns):
|
||||||
|
self._patterns = patterns
|
||||||
|
|
||||||
|
def match(self, string):
|
||||||
|
return all(pat in string for pat in self._patterns)
|
||||||
|
|
||||||
|
|
||||||
|
class DistutilsMetaFinder:
|
||||||
|
def find_spec(self, fullname, path, target=None):
|
||||||
|
# optimization: only consider top level modules and those
|
||||||
|
# found in the CPython test suite.
|
||||||
|
if path is not None and not fullname.startswith('test.'):
|
||||||
|
return
|
||||||
|
|
||||||
|
method_name = 'spec_for_{fullname}'.format(**locals())
|
||||||
|
method = getattr(self, method_name, lambda: None)
|
||||||
|
return method()
|
||||||
|
|
||||||
|
def spec_for_distutils(self):
|
||||||
|
if self.is_cpython():
|
||||||
|
return
|
||||||
|
|
||||||
|
import importlib
|
||||||
|
import importlib.abc
|
||||||
|
import importlib.util
|
||||||
|
|
||||||
|
try:
|
||||||
|
mod = importlib.import_module('setuptools._distutils')
|
||||||
|
except Exception:
|
||||||
|
# There are a couple of cases where setuptools._distutils
|
||||||
|
# may not be present:
|
||||||
|
# - An older Setuptools without a local distutils is
|
||||||
|
# taking precedence. Ref #2957.
|
||||||
|
# - Path manipulation during sitecustomize removes
|
||||||
|
# setuptools from the path but only after the hook
|
||||||
|
# has been loaded. Ref #2980.
|
||||||
|
# In either case, fall back to stdlib behavior.
|
||||||
|
return
|
||||||
|
|
||||||
|
class DistutilsLoader(importlib.abc.Loader):
|
||||||
|
def create_module(self, spec):
|
||||||
|
mod.__name__ = 'distutils'
|
||||||
|
return mod
|
||||||
|
|
||||||
|
def exec_module(self, module):
|
||||||
|
pass
|
||||||
|
|
||||||
|
return importlib.util.spec_from_loader(
|
||||||
|
'distutils', DistutilsLoader(), origin=mod.__file__
|
||||||
|
)
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def is_cpython():
|
||||||
|
"""
|
||||||
|
Suppress supplying distutils for CPython (build and tests).
|
||||||
|
Ref #2965 and #3007.
|
||||||
|
"""
|
||||||
|
return os.path.isfile('pybuilddir.txt')
|
||||||
|
|
||||||
|
def spec_for_pip(self):
|
||||||
|
"""
|
||||||
|
Ensure stdlib distutils when running under pip.
|
||||||
|
See pypa/pip#8761 for rationale.
|
||||||
|
"""
|
||||||
|
if self.pip_imported_during_build():
|
||||||
|
return
|
||||||
|
clear_distutils()
|
||||||
|
self.spec_for_distutils = lambda: None
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def pip_imported_during_build(cls):
|
||||||
|
"""
|
||||||
|
Detect if pip is being imported in a build script. Ref #2355.
|
||||||
|
"""
|
||||||
|
import traceback
|
||||||
|
|
||||||
|
return any(
|
||||||
|
cls.frame_file_is_setup(frame) for frame, line in traceback.walk_stack(None)
|
||||||
|
)
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def frame_file_is_setup(frame):
|
||||||
|
"""
|
||||||
|
Return True if the indicated frame suggests a setup.py file.
|
||||||
|
"""
|
||||||
|
# some frames may not have __file__ (#2940)
|
||||||
|
return frame.f_globals.get('__file__', '').endswith('setup.py')
|
||||||
|
|
||||||
|
def spec_for_sensitive_tests(self):
|
||||||
|
"""
|
||||||
|
Ensure stdlib distutils when running select tests under CPython.
|
||||||
|
|
||||||
|
python/cpython#91169
|
||||||
|
"""
|
||||||
|
clear_distutils()
|
||||||
|
self.spec_for_distutils = lambda: None
|
||||||
|
|
||||||
|
sensitive_tests = (
|
||||||
|
[
|
||||||
|
'test.test_distutils',
|
||||||
|
'test.test_peg_generator',
|
||||||
|
'test.test_importlib',
|
||||||
|
]
|
||||||
|
if sys.version_info < (3, 10)
|
||||||
|
else [
|
||||||
|
'test.test_distutils',
|
||||||
|
]
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
for name in DistutilsMetaFinder.sensitive_tests:
|
||||||
|
setattr(
|
||||||
|
DistutilsMetaFinder,
|
||||||
|
f'spec_for_{name}',
|
||||||
|
DistutilsMetaFinder.spec_for_sensitive_tests,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
DISTUTILS_FINDER = DistutilsMetaFinder()
|
||||||
|
|
||||||
|
|
||||||
|
def add_shim():
|
||||||
|
DISTUTILS_FINDER in sys.meta_path or insert_shim()
|
||||||
|
|
||||||
|
|
||||||
|
class shim:
|
||||||
|
def __enter__(self):
|
||||||
|
insert_shim()
|
||||||
|
|
||||||
|
def __exit__(self, exc, value, tb):
|
||||||
|
remove_shim()
|
||||||
|
|
||||||
|
|
||||||
|
def insert_shim():
|
||||||
|
sys.meta_path.insert(0, DISTUTILS_FINDER)
|
||||||
|
|
||||||
|
|
||||||
|
def remove_shim():
|
||||||
|
try:
|
||||||
|
sys.meta_path.remove(DISTUTILS_FINDER)
|
||||||
|
except ValueError:
|
||||||
|
pass
|
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1 @@
|
||||||
|
__import__('_distutils_hack').do_override()
|
|
@ -0,0 +1 @@
|
||||||
|
pip
|
|
@ -0,0 +1,295 @@
|
||||||
|
Metadata-Version: 2.3
|
||||||
|
Name: annotated-types
|
||||||
|
Version: 0.7.0
|
||||||
|
Summary: Reusable constraint types to use with typing.Annotated
|
||||||
|
Project-URL: Homepage, https://github.com/annotated-types/annotated-types
|
||||||
|
Project-URL: Source, https://github.com/annotated-types/annotated-types
|
||||||
|
Project-URL: Changelog, https://github.com/annotated-types/annotated-types/releases
|
||||||
|
Author-email: Adrian Garcia Badaracco <1755071+adriangb@users.noreply.github.com>, Samuel Colvin <s@muelcolvin.com>, Zac Hatfield-Dodds <zac@zhd.dev>
|
||||||
|
License-File: LICENSE
|
||||||
|
Classifier: Development Status :: 4 - Beta
|
||||||
|
Classifier: Environment :: Console
|
||||||
|
Classifier: Environment :: MacOS X
|
||||||
|
Classifier: Intended Audience :: Developers
|
||||||
|
Classifier: Intended Audience :: Information Technology
|
||||||
|
Classifier: License :: OSI Approved :: MIT License
|
||||||
|
Classifier: Operating System :: POSIX :: Linux
|
||||||
|
Classifier: Operating System :: Unix
|
||||||
|
Classifier: Programming Language :: Python :: 3 :: Only
|
||||||
|
Classifier: Programming Language :: Python :: 3.8
|
||||||
|
Classifier: Programming Language :: Python :: 3.9
|
||||||
|
Classifier: Programming Language :: Python :: 3.10
|
||||||
|
Classifier: Programming Language :: Python :: 3.11
|
||||||
|
Classifier: Programming Language :: Python :: 3.12
|
||||||
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
||||||
|
Classifier: Typing :: Typed
|
||||||
|
Requires-Python: >=3.8
|
||||||
|
Requires-Dist: typing-extensions>=4.0.0; python_version < '3.9'
|
||||||
|
Description-Content-Type: text/markdown
|
||||||
|
|
||||||
|
# annotated-types
|
||||||
|
|
||||||
|
[![CI](https://github.com/annotated-types/annotated-types/workflows/CI/badge.svg?event=push)](https://github.com/annotated-types/annotated-types/actions?query=event%3Apush+branch%3Amain+workflow%3ACI)
|
||||||
|
[![pypi](https://img.shields.io/pypi/v/annotated-types.svg)](https://pypi.python.org/pypi/annotated-types)
|
||||||
|
[![versions](https://img.shields.io/pypi/pyversions/annotated-types.svg)](https://github.com/annotated-types/annotated-types)
|
||||||
|
[![license](https://img.shields.io/github/license/annotated-types/annotated-types.svg)](https://github.com/annotated-types/annotated-types/blob/main/LICENSE)
|
||||||
|
|
||||||
|
[PEP-593](https://peps.python.org/pep-0593/) added `typing.Annotated` as a way of
|
||||||
|
adding context-specific metadata to existing types, and specifies that
|
||||||
|
`Annotated[T, x]` _should_ be treated as `T` by any tool or library without special
|
||||||
|
logic for `x`.
|
||||||
|
|
||||||
|
This package provides metadata objects which can be used to represent common
|
||||||
|
constraints such as upper and lower bounds on scalar values and collection sizes,
|
||||||
|
a `Predicate` marker for runtime checks, and
|
||||||
|
descriptions of how we intend these metadata to be interpreted. In some cases,
|
||||||
|
we also note alternative representations which do not require this package.
|
||||||
|
|
||||||
|
## Install
|
||||||
|
|
||||||
|
```bash
|
||||||
|
pip install annotated-types
|
||||||
|
```
|
||||||
|
|
||||||
|
## Examples
|
||||||
|
|
||||||
|
```python
|
||||||
|
from typing import Annotated
|
||||||
|
from annotated_types import Gt, Len, Predicate
|
||||||
|
|
||||||
|
class MyClass:
|
||||||
|
age: Annotated[int, Gt(18)] # Valid: 19, 20, ...
|
||||||
|
# Invalid: 17, 18, "19", 19.0, ...
|
||||||
|
factors: list[Annotated[int, Predicate(is_prime)]] # Valid: 2, 3, 5, 7, 11, ...
|
||||||
|
# Invalid: 4, 8, -2, 5.0, "prime", ...
|
||||||
|
|
||||||
|
my_list: Annotated[list[int], Len(0, 10)] # Valid: [], [10, 20, 30, 40, 50]
|
||||||
|
# Invalid: (1, 2), ["abc"], [0] * 20
|
||||||
|
```
|
||||||
|
|
||||||
|
## Documentation
|
||||||
|
|
||||||
|
_While `annotated-types` avoids runtime checks for performance, users should not
|
||||||
|
construct invalid combinations such as `MultipleOf("non-numeric")` or `Annotated[int, Len(3)]`.
|
||||||
|
Downstream implementors may choose to raise an error, emit a warning, silently ignore
|
||||||
|
a metadata item, etc., if the metadata objects described below are used with an
|
||||||
|
incompatible type - or for any other reason!_
|
||||||
|
|
||||||
|
### Gt, Ge, Lt, Le
|
||||||
|
|
||||||
|
Express inclusive and/or exclusive bounds on orderable values - which may be numbers,
|
||||||
|
dates, times, strings, sets, etc. Note that the boundary value need not be of the
|
||||||
|
same type that was annotated, so long as they can be compared: `Annotated[int, Gt(1.5)]`
|
||||||
|
is fine, for example, and implies that the value is an integer x such that `x > 1.5`.
|
||||||
|
|
||||||
|
We suggest that implementors may also interpret `functools.partial(operator.le, 1.5)`
|
||||||
|
as being equivalent to `Gt(1.5)`, for users who wish to avoid a runtime dependency on
|
||||||
|
the `annotated-types` package.
|
||||||
|
|
||||||
|
To be explicit, these types have the following meanings:
|
||||||
|
|
||||||
|
* `Gt(x)` - value must be "Greater Than" `x` - equivalent to exclusive minimum
|
||||||
|
* `Ge(x)` - value must be "Greater than or Equal" to `x` - equivalent to inclusive minimum
|
||||||
|
* `Lt(x)` - value must be "Less Than" `x` - equivalent to exclusive maximum
|
||||||
|
* `Le(x)` - value must be "Less than or Equal" to `x` - equivalent to inclusive maximum
|
||||||
|
|
||||||
|
### Interval
|
||||||
|
|
||||||
|
`Interval(gt, ge, lt, le)` allows you to specify an upper and lower bound with a single
|
||||||
|
metadata object. `None` attributes should be ignored, and non-`None` attributes
|
||||||
|
treated as per the single bounds above.
|
||||||
|
|
||||||
|
### MultipleOf
|
||||||
|
|
||||||
|
`MultipleOf(multiple_of=x)` might be interpreted in two ways:
|
||||||
|
|
||||||
|
1. Python semantics, implying `value % multiple_of == 0`, or
|
||||||
|
2. [JSONschema semantics](https://json-schema.org/draft/2020-12/json-schema-validation.html#rfc.section.6.2.1),
|
||||||
|
where `int(value / multiple_of) == value / multiple_of`.
|
||||||
|
|
||||||
|
We encourage users to be aware of these two common interpretations and their
|
||||||
|
distinct behaviours, especially since very large or non-integer numbers make
|
||||||
|
it easy to cause silent data corruption due to floating-point imprecision.
|
||||||
|
|
||||||
|
We encourage libraries to carefully document which interpretation they implement.
|
||||||
|
|
||||||
|
### MinLen, MaxLen, Len
|
||||||
|
|
||||||
|
`Len()` implies that `min_length <= len(value) <= max_length` - lower and upper bounds are inclusive.
|
||||||
|
|
||||||
|
As well as `Len()` which can optionally include upper and lower bounds, we also
|
||||||
|
provide `MinLen(x)` and `MaxLen(y)` which are equivalent to `Len(min_length=x)`
|
||||||
|
and `Len(max_length=y)` respectively.
|
||||||
|
|
||||||
|
`Len`, `MinLen`, and `MaxLen` may be used with any type which supports `len(value)`.
|
||||||
|
|
||||||
|
Examples of usage:
|
||||||
|
|
||||||
|
* `Annotated[list, MaxLen(10)]` (or `Annotated[list, Len(max_length=10))`) - list must have a length of 10 or less
|
||||||
|
* `Annotated[str, MaxLen(10)]` - string must have a length of 10 or less
|
||||||
|
* `Annotated[list, MinLen(3))` (or `Annotated[list, Len(min_length=3))`) - list must have a length of 3 or more
|
||||||
|
* `Annotated[list, Len(4, 6)]` - list must have a length of 4, 5, or 6
|
||||||
|
* `Annotated[list, Len(8, 8)]` - list must have a length of exactly 8
|
||||||
|
|
||||||
|
#### Changed in v0.4.0
|
||||||
|
|
||||||
|
* `min_inclusive` has been renamed to `min_length`, no change in meaning
|
||||||
|
* `max_exclusive` has been renamed to `max_length`, upper bound is now **inclusive** instead of **exclusive**
|
||||||
|
* The recommendation that slices are interpreted as `Len` has been removed due to ambiguity and different semantic
|
||||||
|
meaning of the upper bound in slices vs. `Len`
|
||||||
|
|
||||||
|
See [issue #23](https://github.com/annotated-types/annotated-types/issues/23) for discussion.
|
||||||
|
|
||||||
|
### Timezone
|
||||||
|
|
||||||
|
`Timezone` can be used with a `datetime` or a `time` to express which timezones
|
||||||
|
are allowed. `Annotated[datetime, Timezone(None)]` must be a naive datetime.
|
||||||
|
`Timezone[...]` ([literal ellipsis](https://docs.python.org/3/library/constants.html#Ellipsis))
|
||||||
|
expresses that any timezone-aware datetime is allowed. You may also pass a specific
|
||||||
|
timezone string or [`tzinfo`](https://docs.python.org/3/library/datetime.html#tzinfo-objects)
|
||||||
|
object such as `Timezone(timezone.utc)` or `Timezone("Africa/Abidjan")` to express that you only
|
||||||
|
allow a specific timezone, though we note that this is often a symptom of fragile design.
|
||||||
|
|
||||||
|
#### Changed in v0.x.x
|
||||||
|
|
||||||
|
* `Timezone` accepts [`tzinfo`](https://docs.python.org/3/library/datetime.html#tzinfo-objects) objects instead of
|
||||||
|
`timezone`, extending compatibility to [`zoneinfo`](https://docs.python.org/3/library/zoneinfo.html) and third party libraries.
|
||||||
|
|
||||||
|
### Unit
|
||||||
|
|
||||||
|
`Unit(unit: str)` expresses that the annotated numeric value is the magnitude of
|
||||||
|
a quantity with the specified unit. For example, `Annotated[float, Unit("m/s")]`
|
||||||
|
would be a float representing a velocity in meters per second.
|
||||||
|
|
||||||
|
Please note that `annotated_types` itself makes no attempt to parse or validate
|
||||||
|
the unit string in any way. That is left entirely to downstream libraries,
|
||||||
|
such as [`pint`](https://pint.readthedocs.io) or
|
||||||
|
[`astropy.units`](https://docs.astropy.org/en/stable/units/).
|
||||||
|
|
||||||
|
An example of how a library might use this metadata:
|
||||||
|
|
||||||
|
```python
|
||||||
|
from annotated_types import Unit
|
||||||
|
from typing import Annotated, TypeVar, Callable, Any, get_origin, get_args
|
||||||
|
|
||||||
|
# given a type annotated with a unit:
|
||||||
|
Meters = Annotated[float, Unit("m")]
|
||||||
|
|
||||||
|
|
||||||
|
# you can cast the annotation to a specific unit type with any
|
||||||
|
# callable that accepts a string and returns the desired type
|
||||||
|
T = TypeVar("T")
|
||||||
|
def cast_unit(tp: Any, unit_cls: Callable[[str], T]) -> T | None:
|
||||||
|
if get_origin(tp) is Annotated:
|
||||||
|
for arg in get_args(tp):
|
||||||
|
if isinstance(arg, Unit):
|
||||||
|
return unit_cls(arg.unit)
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
# using `pint`
|
||||||
|
import pint
|
||||||
|
pint_unit = cast_unit(Meters, pint.Unit)
|
||||||
|
|
||||||
|
|
||||||
|
# using `astropy.units`
|
||||||
|
import astropy.units as u
|
||||||
|
astropy_unit = cast_unit(Meters, u.Unit)
|
||||||
|
```
|
||||||
|
|
||||||
|
### Predicate
|
||||||
|
|
||||||
|
`Predicate(func: Callable)` expresses that `func(value)` is truthy for valid values.
|
||||||
|
Users should prefer the statically inspectable metadata above, but if you need
|
||||||
|
the full power and flexibility of arbitrary runtime predicates... here it is.
|
||||||
|
|
||||||
|
For some common constraints, we provide generic types:
|
||||||
|
|
||||||
|
* `IsLower = Annotated[T, Predicate(str.islower)]`
|
||||||
|
* `IsUpper = Annotated[T, Predicate(str.isupper)]`
|
||||||
|
* `IsDigit = Annotated[T, Predicate(str.isdigit)]`
|
||||||
|
* `IsFinite = Annotated[T, Predicate(math.isfinite)]`
|
||||||
|
* `IsNotFinite = Annotated[T, Predicate(Not(math.isfinite))]`
|
||||||
|
* `IsNan = Annotated[T, Predicate(math.isnan)]`
|
||||||
|
* `IsNotNan = Annotated[T, Predicate(Not(math.isnan))]`
|
||||||
|
* `IsInfinite = Annotated[T, Predicate(math.isinf)]`
|
||||||
|
* `IsNotInfinite = Annotated[T, Predicate(Not(math.isinf))]`
|
||||||
|
|
||||||
|
so that you can write e.g. `x: IsFinite[float] = 2.0` instead of the longer
|
||||||
|
(but exactly equivalent) `x: Annotated[float, Predicate(math.isfinite)] = 2.0`.
|
||||||
|
|
||||||
|
Some libraries might have special logic to handle known or understandable predicates,
|
||||||
|
for example by checking for `str.isdigit` and using its presence to both call custom
|
||||||
|
logic to enforce digit-only strings, and customise some generated external schema.
|
||||||
|
Users are therefore encouraged to avoid indirection like `lambda s: s.lower()`, in
|
||||||
|
favor of introspectable methods such as `str.lower` or `re.compile("pattern").search`.
|
||||||
|
|
||||||
|
To enable basic negation of commonly used predicates like `math.isnan` without introducing introspection that makes it impossible for implementers to introspect the predicate we provide a `Not` wrapper that simply negates the predicate in an introspectable manner. Several of the predicates listed above are created in this manner.
|
||||||
|
|
||||||
|
We do not specify what behaviour should be expected for predicates that raise
|
||||||
|
an exception. For example `Annotated[int, Predicate(str.isdigit)]` might silently
|
||||||
|
skip invalid constraints, or statically raise an error; or it might try calling it
|
||||||
|
and then propagate or discard the resulting
|
||||||
|
`TypeError: descriptor 'isdigit' for 'str' objects doesn't apply to a 'int' object`
|
||||||
|
exception. We encourage libraries to document the behaviour they choose.
|
||||||
|
|
||||||
|
### Doc
|
||||||
|
|
||||||
|
`doc()` can be used to add documentation information in `Annotated`, for function and method parameters, variables, class attributes, return types, and any place where `Annotated` can be used.
|
||||||
|
|
||||||
|
It expects a value that can be statically analyzed, as the main use case is for static analysis, editors, documentation generators, and similar tools.
|
||||||
|
|
||||||
|
It returns a `DocInfo` class with a single attribute `documentation` containing the value passed to `doc()`.
|
||||||
|
|
||||||
|
This is the early adopter's alternative form of the [`typing-doc` proposal](https://github.com/tiangolo/fastapi/blob/typing-doc/typing_doc.md).
|
||||||
|
|
||||||
|
### Integrating downstream types with `GroupedMetadata`
|
||||||
|
|
||||||
|
Implementers may choose to provide a convenience wrapper that groups multiple pieces of metadata.
|
||||||
|
This can help reduce verbosity and cognitive overhead for users.
|
||||||
|
For example, an implementer like Pydantic might provide a `Field` or `Meta` type that accepts keyword arguments and transforms these into low-level metadata:
|
||||||
|
|
||||||
|
```python
|
||||||
|
from dataclasses import dataclass
|
||||||
|
from typing import Iterator
|
||||||
|
from annotated_types import GroupedMetadata, Ge
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class Field(GroupedMetadata):
|
||||||
|
ge: int | None = None
|
||||||
|
description: str | None = None
|
||||||
|
|
||||||
|
def __iter__(self) -> Iterator[object]:
|
||||||
|
# Iterating over a GroupedMetadata object should yield annotated-types
|
||||||
|
# constraint metadata objects which describe it as fully as possible,
|
||||||
|
# and may include other unknown objects too.
|
||||||
|
if self.ge is not None:
|
||||||
|
yield Ge(self.ge)
|
||||||
|
if self.description is not None:
|
||||||
|
yield Description(self.description)
|
||||||
|
```
|
||||||
|
|
||||||
|
Libraries consuming annotated-types constraints should check for `GroupedMetadata` and unpack it by iterating over the object and treating the results as if they had been "unpacked" in the `Annotated` type. The same logic should be applied to the [PEP 646 `Unpack` type](https://peps.python.org/pep-0646/), so that `Annotated[T, Field(...)]`, `Annotated[T, Unpack[Field(...)]]` and `Annotated[T, *Field(...)]` are all treated consistently.
|
||||||
|
|
||||||
|
Libraries consuming annotated-types should also ignore any metadata they do not recongize that came from unpacking a `GroupedMetadata`, just like they ignore unrecognized metadata in `Annotated` itself.
|
||||||
|
|
||||||
|
Our own `annotated_types.Interval` class is a `GroupedMetadata` which unpacks itself into `Gt`, `Lt`, etc., so this is not an abstract concern. Similarly, `annotated_types.Len` is a `GroupedMetadata` which unpacks itself into `MinLen` (optionally) and `MaxLen`.
|
||||||
|
|
||||||
|
### Consuming metadata
|
||||||
|
|
||||||
|
We intend to not be prescriptive as to _how_ the metadata and constraints are used, but as an example of how one might parse constraints from types annotations see our [implementation in `test_main.py`](https://github.com/annotated-types/annotated-types/blob/f59cf6d1b5255a0fe359b93896759a180bec30ae/tests/test_main.py#L94-L103).
|
||||||
|
|
||||||
|
It is up to the implementer to determine how this metadata is used.
|
||||||
|
You could use the metadata for runtime type checking, for generating schemas or to generate example data, amongst other use cases.
|
||||||
|
|
||||||
|
## Design & History
|
||||||
|
|
||||||
|
This package was designed at the PyCon 2022 sprints by the maintainers of Pydantic
|
||||||
|
and Hypothesis, with the goal of making it as easy as possible for end-users to
|
||||||
|
provide more informative annotations for use by runtime libraries.
|
||||||
|
|
||||||
|
It is deliberately minimal, and following PEP-593 allows considerable downstream
|
||||||
|
discretion in what (if anything!) they choose to support. Nonetheless, we expect
|
||||||
|
that staying simple and covering _only_ the most common use-cases will give users
|
||||||
|
and maintainers the best experience we can. If you'd like more constraints for your
|
||||||
|
types - follow our lead, by defining them and documenting them downstream!
|
|
@ -0,0 +1,10 @@
|
||||||
|
annotated_types-0.7.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||||
|
annotated_types-0.7.0.dist-info/METADATA,sha256=7ltqxksJJ0wCYFGBNIQCWTlWQGeAH0hRFdnK3CB895E,15046
|
||||||
|
annotated_types-0.7.0.dist-info/RECORD,,
|
||||||
|
annotated_types-0.7.0.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
|
||||||
|
annotated_types-0.7.0.dist-info/licenses/LICENSE,sha256=_hBJiEsaDZNCkB6I4H8ykl0ksxIdmXK2poBfuYJLCV0,1083
|
||||||
|
annotated_types/__init__.py,sha256=RynLsRKUEGI0KimXydlD1fZEfEzWwDo0Uon3zOKhG1Q,13819
|
||||||
|
annotated_types/__pycache__/__init__.cpython-311.pyc,,
|
||||||
|
annotated_types/__pycache__/test_cases.cpython-311.pyc,,
|
||||||
|
annotated_types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||||
|
annotated_types/test_cases.py,sha256=zHFX6EpcMbGJ8FzBYDbO56bPwx_DYIVSKbZM-4B3_lg,6421
|
|
@ -0,0 +1,4 @@
|
||||||
|
Wheel-Version: 1.0
|
||||||
|
Generator: hatchling 1.24.2
|
||||||
|
Root-Is-Purelib: true
|
||||||
|
Tag: py3-none-any
|
|
@ -0,0 +1,21 @@
|
||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright (c) 2022 the contributors
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
432
telecli/lib/python3.11/site-packages/annotated_types/__init__.py
Normal file
432
telecli/lib/python3.11/site-packages/annotated_types/__init__.py
Normal file
|
@ -0,0 +1,432 @@
|
||||||
|
import math
|
||||||
|
import sys
|
||||||
|
import types
|
||||||
|
from dataclasses import dataclass
|
||||||
|
from datetime import tzinfo
|
||||||
|
from typing import TYPE_CHECKING, Any, Callable, Iterator, Optional, SupportsFloat, SupportsIndex, TypeVar, Union
|
||||||
|
|
||||||
|
if sys.version_info < (3, 8):
|
||||||
|
from typing_extensions import Protocol, runtime_checkable
|
||||||
|
else:
|
||||||
|
from typing import Protocol, runtime_checkable
|
||||||
|
|
||||||
|
if sys.version_info < (3, 9):
|
||||||
|
from typing_extensions import Annotated, Literal
|
||||||
|
else:
|
||||||
|
from typing import Annotated, Literal
|
||||||
|
|
||||||
|
if sys.version_info < (3, 10):
|
||||||
|
EllipsisType = type(Ellipsis)
|
||||||
|
KW_ONLY = {}
|
||||||
|
SLOTS = {}
|
||||||
|
else:
|
||||||
|
from types import EllipsisType
|
||||||
|
|
||||||
|
KW_ONLY = {"kw_only": True}
|
||||||
|
SLOTS = {"slots": True}
|
||||||
|
|
||||||
|
|
||||||
|
__all__ = (
|
||||||
|
'BaseMetadata',
|
||||||
|
'GroupedMetadata',
|
||||||
|
'Gt',
|
||||||
|
'Ge',
|
||||||
|
'Lt',
|
||||||
|
'Le',
|
||||||
|
'Interval',
|
||||||
|
'MultipleOf',
|
||||||
|
'MinLen',
|
||||||
|
'MaxLen',
|
||||||
|
'Len',
|
||||||
|
'Timezone',
|
||||||
|
'Predicate',
|
||||||
|
'LowerCase',
|
||||||
|
'UpperCase',
|
||||||
|
'IsDigits',
|
||||||
|
'IsFinite',
|
||||||
|
'IsNotFinite',
|
||||||
|
'IsNan',
|
||||||
|
'IsNotNan',
|
||||||
|
'IsInfinite',
|
||||||
|
'IsNotInfinite',
|
||||||
|
'doc',
|
||||||
|
'DocInfo',
|
||||||
|
'__version__',
|
||||||
|
)
|
||||||
|
|
||||||
|
__version__ = '0.7.0'
|
||||||
|
|
||||||
|
|
||||||
|
T = TypeVar('T')
|
||||||
|
|
||||||
|
|
||||||
|
# arguments that start with __ are considered
|
||||||
|
# positional only
|
||||||
|
# see https://peps.python.org/pep-0484/#positional-only-arguments
|
||||||
|
|
||||||
|
|
||||||
|
class SupportsGt(Protocol):
|
||||||
|
def __gt__(self: T, __other: T) -> bool:
|
||||||
|
...
|
||||||
|
|
||||||
|
|
||||||
|
class SupportsGe(Protocol):
|
||||||
|
def __ge__(self: T, __other: T) -> bool:
|
||||||
|
...
|
||||||
|
|
||||||
|
|
||||||
|
class SupportsLt(Protocol):
|
||||||
|
def __lt__(self: T, __other: T) -> bool:
|
||||||
|
...
|
||||||
|
|
||||||
|
|
||||||
|
class SupportsLe(Protocol):
|
||||||
|
def __le__(self: T, __other: T) -> bool:
|
||||||
|
...
|
||||||
|
|
||||||
|
|
||||||
|
class SupportsMod(Protocol):
|
||||||
|
def __mod__(self: T, __other: T) -> T:
|
||||||
|
...
|
||||||
|
|
||||||
|
|
||||||
|
class SupportsDiv(Protocol):
|
||||||
|
def __div__(self: T, __other: T) -> T:
|
||||||
|
...
|
||||||
|
|
||||||
|
|
||||||
|
class BaseMetadata:
|
||||||
|
"""Base class for all metadata.
|
||||||
|
|
||||||
|
This exists mainly so that implementers
|
||||||
|
can do `isinstance(..., BaseMetadata)` while traversing field annotations.
|
||||||
|
"""
|
||||||
|
|
||||||
|
__slots__ = ()
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass(frozen=True, **SLOTS)
|
||||||
|
class Gt(BaseMetadata):
|
||||||
|
"""Gt(gt=x) implies that the value must be greater than x.
|
||||||
|
|
||||||
|
It can be used with any type that supports the ``>`` operator,
|
||||||
|
including numbers, dates and times, strings, sets, and so on.
|
||||||
|
"""
|
||||||
|
|
||||||
|
gt: SupportsGt
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass(frozen=True, **SLOTS)
|
||||||
|
class Ge(BaseMetadata):
|
||||||
|
"""Ge(ge=x) implies that the value must be greater than or equal to x.
|
||||||
|
|
||||||
|
It can be used with any type that supports the ``>=`` operator,
|
||||||
|
including numbers, dates and times, strings, sets, and so on.
|
||||||
|
"""
|
||||||
|
|
||||||
|
ge: SupportsGe
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass(frozen=True, **SLOTS)
|
||||||
|
class Lt(BaseMetadata):
|
||||||
|
"""Lt(lt=x) implies that the value must be less than x.
|
||||||
|
|
||||||
|
It can be used with any type that supports the ``<`` operator,
|
||||||
|
including numbers, dates and times, strings, sets, and so on.
|
||||||
|
"""
|
||||||
|
|
||||||
|
lt: SupportsLt
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass(frozen=True, **SLOTS)
|
||||||
|
class Le(BaseMetadata):
|
||||||
|
"""Le(le=x) implies that the value must be less than or equal to x.
|
||||||
|
|
||||||
|
It can be used with any type that supports the ``<=`` operator,
|
||||||
|
including numbers, dates and times, strings, sets, and so on.
|
||||||
|
"""
|
||||||
|
|
||||||
|
le: SupportsLe
|
||||||
|
|
||||||
|
|
||||||
|
@runtime_checkable
|
||||||
|
class GroupedMetadata(Protocol):
|
||||||
|
"""A grouping of multiple objects, like typing.Unpack.
|
||||||
|
|
||||||
|
`GroupedMetadata` on its own is not metadata and has no meaning.
|
||||||
|
All of the constraints and metadata should be fully expressable
|
||||||
|
in terms of the `BaseMetadata`'s returned by `GroupedMetadata.__iter__()`.
|
||||||
|
|
||||||
|
Concrete implementations should override `GroupedMetadata.__iter__()`
|
||||||
|
to add their own metadata.
|
||||||
|
For example:
|
||||||
|
|
||||||
|
>>> @dataclass
|
||||||
|
>>> class Field(GroupedMetadata):
|
||||||
|
>>> gt: float | None = None
|
||||||
|
>>> description: str | None = None
|
||||||
|
...
|
||||||
|
>>> def __iter__(self) -> Iterable[object]:
|
||||||
|
>>> if self.gt is not None:
|
||||||
|
>>> yield Gt(self.gt)
|
||||||
|
>>> if self.description is not None:
|
||||||
|
>>> yield Description(self.gt)
|
||||||
|
|
||||||
|
Also see the implementation of `Interval` below for an example.
|
||||||
|
|
||||||
|
Parsers should recognize this and unpack it so that it can be used
|
||||||
|
both with and without unpacking:
|
||||||
|
|
||||||
|
- `Annotated[int, Field(...)]` (parser must unpack Field)
|
||||||
|
- `Annotated[int, *Field(...)]` (PEP-646)
|
||||||
|
""" # noqa: trailing-whitespace
|
||||||
|
|
||||||
|
@property
|
||||||
|
def __is_annotated_types_grouped_metadata__(self) -> Literal[True]:
|
||||||
|
return True
|
||||||
|
|
||||||
|
def __iter__(self) -> Iterator[object]:
|
||||||
|
...
|
||||||
|
|
||||||
|
if not TYPE_CHECKING:
|
||||||
|
__slots__ = () # allow subclasses to use slots
|
||||||
|
|
||||||
|
def __init_subclass__(cls, *args: Any, **kwargs: Any) -> None:
|
||||||
|
# Basic ABC like functionality without the complexity of an ABC
|
||||||
|
super().__init_subclass__(*args, **kwargs)
|
||||||
|
if cls.__iter__ is GroupedMetadata.__iter__:
|
||||||
|
raise TypeError("Can't subclass GroupedMetadata without implementing __iter__")
|
||||||
|
|
||||||
|
def __iter__(self) -> Iterator[object]: # noqa: F811
|
||||||
|
raise NotImplementedError # more helpful than "None has no attribute..." type errors
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass(frozen=True, **KW_ONLY, **SLOTS)
|
||||||
|
class Interval(GroupedMetadata):
|
||||||
|
"""Interval can express inclusive or exclusive bounds with a single object.
|
||||||
|
|
||||||
|
It accepts keyword arguments ``gt``, ``ge``, ``lt``, and/or ``le``, which
|
||||||
|
are interpreted the same way as the single-bound constraints.
|
||||||
|
"""
|
||||||
|
|
||||||
|
gt: Union[SupportsGt, None] = None
|
||||||
|
ge: Union[SupportsGe, None] = None
|
||||||
|
lt: Union[SupportsLt, None] = None
|
||||||
|
le: Union[SupportsLe, None] = None
|
||||||
|
|
||||||
|
def __iter__(self) -> Iterator[BaseMetadata]:
|
||||||
|
"""Unpack an Interval into zero or more single-bounds."""
|
||||||
|
if self.gt is not None:
|
||||||
|
yield Gt(self.gt)
|
||||||
|
if self.ge is not None:
|
||||||
|
yield Ge(self.ge)
|
||||||
|
if self.lt is not None:
|
||||||
|
yield Lt(self.lt)
|
||||||
|
if self.le is not None:
|
||||||
|
yield Le(self.le)
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass(frozen=True, **SLOTS)
|
||||||
|
class MultipleOf(BaseMetadata):
|
||||||
|
"""MultipleOf(multiple_of=x) might be interpreted in two ways:
|
||||||
|
|
||||||
|
1. Python semantics, implying ``value % multiple_of == 0``, or
|
||||||
|
2. JSONschema semantics, where ``int(value / multiple_of) == value / multiple_of``
|
||||||
|
|
||||||
|
We encourage users to be aware of these two common interpretations,
|
||||||
|
and libraries to carefully document which they implement.
|
||||||
|
"""
|
||||||
|
|
||||||
|
multiple_of: Union[SupportsDiv, SupportsMod]
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass(frozen=True, **SLOTS)
|
||||||
|
class MinLen(BaseMetadata):
|
||||||
|
"""
|
||||||
|
MinLen() implies minimum inclusive length,
|
||||||
|
e.g. ``len(value) >= min_length``.
|
||||||
|
"""
|
||||||
|
|
||||||
|
min_length: Annotated[int, Ge(0)]
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass(frozen=True, **SLOTS)
|
||||||
|
class MaxLen(BaseMetadata):
|
||||||
|
"""
|
||||||
|
MaxLen() implies maximum inclusive length,
|
||||||
|
e.g. ``len(value) <= max_length``.
|
||||||
|
"""
|
||||||
|
|
||||||
|
max_length: Annotated[int, Ge(0)]
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass(frozen=True, **SLOTS)
|
||||||
|
class Len(GroupedMetadata):
|
||||||
|
"""
|
||||||
|
Len() implies that ``min_length <= len(value) <= max_length``.
|
||||||
|
|
||||||
|
Upper bound may be omitted or ``None`` to indicate no upper length bound.
|
||||||
|
"""
|
||||||
|
|
||||||
|
min_length: Annotated[int, Ge(0)] = 0
|
||||||
|
max_length: Optional[Annotated[int, Ge(0)]] = None
|
||||||
|
|
||||||
|
def __iter__(self) -> Iterator[BaseMetadata]:
|
||||||
|
"""Unpack a Len into zone or more single-bounds."""
|
||||||
|
if self.min_length > 0:
|
||||||
|
yield MinLen(self.min_length)
|
||||||
|
if self.max_length is not None:
|
||||||
|
yield MaxLen(self.max_length)
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass(frozen=True, **SLOTS)
|
||||||
|
class Timezone(BaseMetadata):
|
||||||
|
"""Timezone(tz=...) requires a datetime to be aware (or ``tz=None``, naive).
|
||||||
|
|
||||||
|
``Annotated[datetime, Timezone(None)]`` must be a naive datetime.
|
||||||
|
``Timezone[...]`` (the ellipsis literal) expresses that the datetime must be
|
||||||
|
tz-aware but any timezone is allowed.
|
||||||
|
|
||||||
|
You may also pass a specific timezone string or tzinfo object such as
|
||||||
|
``Timezone(timezone.utc)`` or ``Timezone("Africa/Abidjan")`` to express that
|
||||||
|
you only allow a specific timezone, though we note that this is often
|
||||||
|
a symptom of poor design.
|
||||||
|
"""
|
||||||
|
|
||||||
|
tz: Union[str, tzinfo, EllipsisType, None]
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass(frozen=True, **SLOTS)
|
||||||
|
class Unit(BaseMetadata):
|
||||||
|
"""Indicates that the value is a physical quantity with the specified unit.
|
||||||
|
|
||||||
|
It is intended for usage with numeric types, where the value represents the
|
||||||
|
magnitude of the quantity. For example, ``distance: Annotated[float, Unit('m')]``
|
||||||
|
or ``speed: Annotated[float, Unit('m/s')]``.
|
||||||
|
|
||||||
|
Interpretation of the unit string is left to the discretion of the consumer.
|
||||||
|
It is suggested to follow conventions established by python libraries that work
|
||||||
|
with physical quantities, such as
|
||||||
|
|
||||||
|
- ``pint`` : <https://pint.readthedocs.io/en/stable/>
|
||||||
|
- ``astropy.units``: <https://docs.astropy.org/en/stable/units/>
|
||||||
|
|
||||||
|
For indicating a quantity with a certain dimensionality but without a specific unit
|
||||||
|
it is recommended to use square brackets, e.g. `Annotated[float, Unit('[time]')]`.
|
||||||
|
Note, however, ``annotated_types`` itself makes no use of the unit string.
|
||||||
|
"""
|
||||||
|
|
||||||
|
unit: str
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass(frozen=True, **SLOTS)
|
||||||
|
class Predicate(BaseMetadata):
|
||||||
|
"""``Predicate(func: Callable)`` implies `func(value)` is truthy for valid values.
|
||||||
|
|
||||||
|
Users should prefer statically inspectable metadata, but if you need the full
|
||||||
|
power and flexibility of arbitrary runtime predicates... here it is.
|
||||||
|
|
||||||
|
We provide a few predefined predicates for common string constraints:
|
||||||
|
``IsLower = Predicate(str.islower)``, ``IsUpper = Predicate(str.isupper)``, and
|
||||||
|
``IsDigits = Predicate(str.isdigit)``. Users are encouraged to use methods which
|
||||||
|
can be given special handling, and avoid indirection like ``lambda s: s.lower()``.
|
||||||
|
|
||||||
|
Some libraries might have special logic to handle certain predicates, e.g. by
|
||||||
|
checking for `str.isdigit` and using its presence to both call custom logic to
|
||||||
|
enforce digit-only strings, and customise some generated external schema.
|
||||||
|
|
||||||
|
We do not specify what behaviour should be expected for predicates that raise
|
||||||
|
an exception. For example `Annotated[int, Predicate(str.isdigit)]` might silently
|
||||||
|
skip invalid constraints, or statically raise an error; or it might try calling it
|
||||||
|
and then propagate or discard the resulting exception.
|
||||||
|
"""
|
||||||
|
|
||||||
|
func: Callable[[Any], bool]
|
||||||
|
|
||||||
|
def __repr__(self) -> str:
|
||||||
|
if getattr(self.func, "__name__", "<lambda>") == "<lambda>":
|
||||||
|
return f"{self.__class__.__name__}({self.func!r})"
|
||||||
|
if isinstance(self.func, (types.MethodType, types.BuiltinMethodType)) and (
|
||||||
|
namespace := getattr(self.func.__self__, "__name__", None)
|
||||||
|
):
|
||||||
|
return f"{self.__class__.__name__}({namespace}.{self.func.__name__})"
|
||||||
|
if isinstance(self.func, type(str.isascii)): # method descriptor
|
||||||
|
return f"{self.__class__.__name__}({self.func.__qualname__})"
|
||||||
|
return f"{self.__class__.__name__}({self.func.__name__})"
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class Not:
|
||||||
|
func: Callable[[Any], bool]
|
||||||
|
|
||||||
|
def __call__(self, __v: Any) -> bool:
|
||||||
|
return not self.func(__v)
|
||||||
|
|
||||||
|
|
||||||
|
_StrType = TypeVar("_StrType", bound=str)
|
||||||
|
|
||||||
|
LowerCase = Annotated[_StrType, Predicate(str.islower)]
|
||||||
|
"""
|
||||||
|
Return True if the string is a lowercase string, False otherwise.
|
||||||
|
|
||||||
|
A string is lowercase if all cased characters in the string are lowercase and there is at least one cased character in the string.
|
||||||
|
""" # noqa: E501
|
||||||
|
UpperCase = Annotated[_StrType, Predicate(str.isupper)]
|
||||||
|
"""
|
||||||
|
Return True if the string is an uppercase string, False otherwise.
|
||||||
|
|
||||||
|
A string is uppercase if all cased characters in the string are uppercase and there is at least one cased character in the string.
|
||||||
|
""" # noqa: E501
|
||||||
|
IsDigit = Annotated[_StrType, Predicate(str.isdigit)]
|
||||||
|
IsDigits = IsDigit # type: ignore # plural for backwards compatibility, see #63
|
||||||
|
"""
|
||||||
|
Return True if the string is a digit string, False otherwise.
|
||||||
|
|
||||||
|
A string is a digit string if all characters in the string are digits and there is at least one character in the string.
|
||||||
|
""" # noqa: E501
|
||||||
|
IsAscii = Annotated[_StrType, Predicate(str.isascii)]
|
||||||
|
"""
|
||||||
|
Return True if all characters in the string are ASCII, False otherwise.
|
||||||
|
|
||||||
|
ASCII characters have code points in the range U+0000-U+007F. Empty string is ASCII too.
|
||||||
|
"""
|
||||||
|
|
||||||
|
_NumericType = TypeVar('_NumericType', bound=Union[SupportsFloat, SupportsIndex])
|
||||||
|
IsFinite = Annotated[_NumericType, Predicate(math.isfinite)]
|
||||||
|
"""Return True if x is neither an infinity nor a NaN, and False otherwise."""
|
||||||
|
IsNotFinite = Annotated[_NumericType, Predicate(Not(math.isfinite))]
|
||||||
|
"""Return True if x is one of infinity or NaN, and False otherwise"""
|
||||||
|
IsNan = Annotated[_NumericType, Predicate(math.isnan)]
|
||||||
|
"""Return True if x is a NaN (not a number), and False otherwise."""
|
||||||
|
IsNotNan = Annotated[_NumericType, Predicate(Not(math.isnan))]
|
||||||
|
"""Return True if x is anything but NaN (not a number), and False otherwise."""
|
||||||
|
IsInfinite = Annotated[_NumericType, Predicate(math.isinf)]
|
||||||
|
"""Return True if x is a positive or negative infinity, and False otherwise."""
|
||||||
|
IsNotInfinite = Annotated[_NumericType, Predicate(Not(math.isinf))]
|
||||||
|
"""Return True if x is neither a positive or negative infinity, and False otherwise."""
|
||||||
|
|
||||||
|
try:
|
||||||
|
from typing_extensions import DocInfo, doc # type: ignore [attr-defined]
|
||||||
|
except ImportError:
|
||||||
|
|
||||||
|
@dataclass(frozen=True, **SLOTS)
|
||||||
|
class DocInfo: # type: ignore [no-redef]
|
||||||
|
""" "
|
||||||
|
The return value of doc(), mainly to be used by tools that want to extract the
|
||||||
|
Annotated documentation at runtime.
|
||||||
|
"""
|
||||||
|
|
||||||
|
documentation: str
|
||||||
|
"""The documentation string passed to doc()."""
|
||||||
|
|
||||||
|
def doc(
|
||||||
|
documentation: str,
|
||||||
|
) -> DocInfo:
|
||||||
|
"""
|
||||||
|
Add documentation to a type annotation inside of Annotated.
|
||||||
|
|
||||||
|
For example:
|
||||||
|
|
||||||
|
>>> def hi(name: Annotated[int, doc("The name of the user")]) -> None: ...
|
||||||
|
"""
|
||||||
|
return DocInfo(documentation)
|
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,151 @@
|
||||||
|
import math
|
||||||
|
import sys
|
||||||
|
from datetime import date, datetime, timedelta, timezone
|
||||||
|
from decimal import Decimal
|
||||||
|
from typing import Any, Dict, Iterable, Iterator, List, NamedTuple, Set, Tuple
|
||||||
|
|
||||||
|
if sys.version_info < (3, 9):
|
||||||
|
from typing_extensions import Annotated
|
||||||
|
else:
|
||||||
|
from typing import Annotated
|
||||||
|
|
||||||
|
import annotated_types as at
|
||||||
|
|
||||||
|
|
||||||
|
class Case(NamedTuple):
|
||||||
|
"""
|
||||||
|
A test case for `annotated_types`.
|
||||||
|
"""
|
||||||
|
|
||||||
|
annotation: Any
|
||||||
|
valid_cases: Iterable[Any]
|
||||||
|
invalid_cases: Iterable[Any]
|
||||||
|
|
||||||
|
|
||||||
|
def cases() -> Iterable[Case]:
|
||||||
|
# Gt, Ge, Lt, Le
|
||||||
|
yield Case(Annotated[int, at.Gt(4)], (5, 6, 1000), (4, 0, -1))
|
||||||
|
yield Case(Annotated[float, at.Gt(0.5)], (0.6, 0.7, 0.8, 0.9), (0.5, 0.0, -0.1))
|
||||||
|
yield Case(
|
||||||
|
Annotated[datetime, at.Gt(datetime(2000, 1, 1))],
|
||||||
|
[datetime(2000, 1, 2), datetime(2000, 1, 3)],
|
||||||
|
[datetime(2000, 1, 1), datetime(1999, 12, 31)],
|
||||||
|
)
|
||||||
|
yield Case(
|
||||||
|
Annotated[datetime, at.Gt(date(2000, 1, 1))],
|
||||||
|
[date(2000, 1, 2), date(2000, 1, 3)],
|
||||||
|
[date(2000, 1, 1), date(1999, 12, 31)],
|
||||||
|
)
|
||||||
|
yield Case(
|
||||||
|
Annotated[datetime, at.Gt(Decimal('1.123'))],
|
||||||
|
[Decimal('1.1231'), Decimal('123')],
|
||||||
|
[Decimal('1.123'), Decimal('0')],
|
||||||
|
)
|
||||||
|
|
||||||
|
yield Case(Annotated[int, at.Ge(4)], (4, 5, 6, 1000, 4), (0, -1))
|
||||||
|
yield Case(Annotated[float, at.Ge(0.5)], (0.5, 0.6, 0.7, 0.8, 0.9), (0.4, 0.0, -0.1))
|
||||||
|
yield Case(
|
||||||
|
Annotated[datetime, at.Ge(datetime(2000, 1, 1))],
|
||||||
|
[datetime(2000, 1, 2), datetime(2000, 1, 3)],
|
||||||
|
[datetime(1998, 1, 1), datetime(1999, 12, 31)],
|
||||||
|
)
|
||||||
|
|
||||||
|
yield Case(Annotated[int, at.Lt(4)], (0, -1), (4, 5, 6, 1000, 4))
|
||||||
|
yield Case(Annotated[float, at.Lt(0.5)], (0.4, 0.0, -0.1), (0.5, 0.6, 0.7, 0.8, 0.9))
|
||||||
|
yield Case(
|
||||||
|
Annotated[datetime, at.Lt(datetime(2000, 1, 1))],
|
||||||
|
[datetime(1999, 12, 31), datetime(1999, 12, 31)],
|
||||||
|
[datetime(2000, 1, 2), datetime(2000, 1, 3)],
|
||||||
|
)
|
||||||
|
|
||||||
|
yield Case(Annotated[int, at.Le(4)], (4, 0, -1), (5, 6, 1000))
|
||||||
|
yield Case(Annotated[float, at.Le(0.5)], (0.5, 0.0, -0.1), (0.6, 0.7, 0.8, 0.9))
|
||||||
|
yield Case(
|
||||||
|
Annotated[datetime, at.Le(datetime(2000, 1, 1))],
|
||||||
|
[datetime(2000, 1, 1), datetime(1999, 12, 31)],
|
||||||
|
[datetime(2000, 1, 2), datetime(2000, 1, 3)],
|
||||||
|
)
|
||||||
|
|
||||||
|
# Interval
|
||||||
|
yield Case(Annotated[int, at.Interval(gt=4)], (5, 6, 1000), (4, 0, -1))
|
||||||
|
yield Case(Annotated[int, at.Interval(gt=4, lt=10)], (5, 6), (4, 10, 1000, 0, -1))
|
||||||
|
yield Case(Annotated[float, at.Interval(ge=0.5, le=1)], (0.5, 0.9, 1), (0.49, 1.1))
|
||||||
|
yield Case(
|
||||||
|
Annotated[datetime, at.Interval(gt=datetime(2000, 1, 1), le=datetime(2000, 1, 3))],
|
||||||
|
[datetime(2000, 1, 2), datetime(2000, 1, 3)],
|
||||||
|
[datetime(2000, 1, 1), datetime(2000, 1, 4)],
|
||||||
|
)
|
||||||
|
|
||||||
|
yield Case(Annotated[int, at.MultipleOf(multiple_of=3)], (0, 3, 9), (1, 2, 4))
|
||||||
|
yield Case(Annotated[float, at.MultipleOf(multiple_of=0.5)], (0, 0.5, 1, 1.5), (0.4, 1.1))
|
||||||
|
|
||||||
|
# lengths
|
||||||
|
|
||||||
|
yield Case(Annotated[str, at.MinLen(3)], ('123', '1234', 'x' * 10), ('', '1', '12'))
|
||||||
|
yield Case(Annotated[str, at.Len(3)], ('123', '1234', 'x' * 10), ('', '1', '12'))
|
||||||
|
yield Case(Annotated[List[int], at.MinLen(3)], ([1, 2, 3], [1, 2, 3, 4], [1] * 10), ([], [1], [1, 2]))
|
||||||
|
yield Case(Annotated[List[int], at.Len(3)], ([1, 2, 3], [1, 2, 3, 4], [1] * 10), ([], [1], [1, 2]))
|
||||||
|
|
||||||
|
yield Case(Annotated[str, at.MaxLen(4)], ('', '1234'), ('12345', 'x' * 10))
|
||||||
|
yield Case(Annotated[str, at.Len(0, 4)], ('', '1234'), ('12345', 'x' * 10))
|
||||||
|
yield Case(Annotated[List[str], at.MaxLen(4)], ([], ['a', 'bcdef'], ['a', 'b', 'c']), (['a'] * 5, ['b'] * 10))
|
||||||
|
yield Case(Annotated[List[str], at.Len(0, 4)], ([], ['a', 'bcdef'], ['a', 'b', 'c']), (['a'] * 5, ['b'] * 10))
|
||||||
|
|
||||||
|
yield Case(Annotated[str, at.Len(3, 5)], ('123', '12345'), ('', '1', '12', '123456', 'x' * 10))
|
||||||
|
yield Case(Annotated[str, at.Len(3, 3)], ('123',), ('12', '1234'))
|
||||||
|
|
||||||
|
yield Case(Annotated[Dict[int, int], at.Len(2, 3)], [{1: 1, 2: 2}], [{}, {1: 1}, {1: 1, 2: 2, 3: 3, 4: 4}])
|
||||||
|
yield Case(Annotated[Set[int], at.Len(2, 3)], ({1, 2}, {1, 2, 3}), (set(), {1}, {1, 2, 3, 4}))
|
||||||
|
yield Case(Annotated[Tuple[int, ...], at.Len(2, 3)], ((1, 2), (1, 2, 3)), ((), (1,), (1, 2, 3, 4)))
|
||||||
|
|
||||||
|
# Timezone
|
||||||
|
|
||||||
|
yield Case(
|
||||||
|
Annotated[datetime, at.Timezone(None)], [datetime(2000, 1, 1)], [datetime(2000, 1, 1, tzinfo=timezone.utc)]
|
||||||
|
)
|
||||||
|
yield Case(
|
||||||
|
Annotated[datetime, at.Timezone(...)], [datetime(2000, 1, 1, tzinfo=timezone.utc)], [datetime(2000, 1, 1)]
|
||||||
|
)
|
||||||
|
yield Case(
|
||||||
|
Annotated[datetime, at.Timezone(timezone.utc)],
|
||||||
|
[datetime(2000, 1, 1, tzinfo=timezone.utc)],
|
||||||
|
[datetime(2000, 1, 1), datetime(2000, 1, 1, tzinfo=timezone(timedelta(hours=6)))],
|
||||||
|
)
|
||||||
|
yield Case(
|
||||||
|
Annotated[datetime, at.Timezone('Europe/London')],
|
||||||
|
[datetime(2000, 1, 1, tzinfo=timezone(timedelta(0), name='Europe/London'))],
|
||||||
|
[datetime(2000, 1, 1), datetime(2000, 1, 1, tzinfo=timezone(timedelta(hours=6)))],
|
||||||
|
)
|
||||||
|
|
||||||
|
# Quantity
|
||||||
|
|
||||||
|
yield Case(Annotated[float, at.Unit(unit='m')], (5, 4.2), ('5m', '4.2m'))
|
||||||
|
|
||||||
|
# predicate types
|
||||||
|
|
||||||
|
yield Case(at.LowerCase[str], ['abc', 'foobar'], ['', 'A', 'Boom'])
|
||||||
|
yield Case(at.UpperCase[str], ['ABC', 'DEFO'], ['', 'a', 'abc', 'AbC'])
|
||||||
|
yield Case(at.IsDigit[str], ['123'], ['', 'ab', 'a1b2'])
|
||||||
|
yield Case(at.IsAscii[str], ['123', 'foo bar'], ['£100', '😊', 'whatever 👀'])
|
||||||
|
|
||||||
|
yield Case(Annotated[int, at.Predicate(lambda x: x % 2 == 0)], [0, 2, 4], [1, 3, 5])
|
||||||
|
|
||||||
|
yield Case(at.IsFinite[float], [1.23], [math.nan, math.inf, -math.inf])
|
||||||
|
yield Case(at.IsNotFinite[float], [math.nan, math.inf], [1.23])
|
||||||
|
yield Case(at.IsNan[float], [math.nan], [1.23, math.inf])
|
||||||
|
yield Case(at.IsNotNan[float], [1.23, math.inf], [math.nan])
|
||||||
|
yield Case(at.IsInfinite[float], [math.inf], [math.nan, 1.23])
|
||||||
|
yield Case(at.IsNotInfinite[float], [math.nan, 1.23], [math.inf])
|
||||||
|
|
||||||
|
# check stacked predicates
|
||||||
|
yield Case(at.IsInfinite[Annotated[float, at.Predicate(lambda x: x > 0)]], [math.inf], [-math.inf, 1.23, math.nan])
|
||||||
|
|
||||||
|
# doc
|
||||||
|
yield Case(Annotated[int, at.doc("A number")], [1, 2], [])
|
||||||
|
|
||||||
|
# custom GroupedMetadata
|
||||||
|
class MyCustomGroupedMetadata(at.GroupedMetadata):
|
||||||
|
def __iter__(self) -> Iterator[at.Predicate]:
|
||||||
|
yield at.Predicate(lambda x: float(x).is_integer())
|
||||||
|
|
||||||
|
yield Case(Annotated[float, MyCustomGroupedMetadata()], [0, 2.0], [0.01, 1.5])
|
|
@ -0,0 +1 @@
|
||||||
|
pip
|
|
@ -0,0 +1,20 @@
|
||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright (c) 2018 Alex Grönholm
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||||
|
this software and associated documentation files (the "Software"), to deal in
|
||||||
|
the Software without restriction, including without limitation the rights to
|
||||||
|
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||||
|
the Software, and to permit persons to whom the Software is furnished to do so,
|
||||||
|
subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||||
|
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||||
|
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||||
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||||
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@ -0,0 +1,104 @@
|
||||||
|
Metadata-Version: 2.1
|
||||||
|
Name: anyio
|
||||||
|
Version: 4.4.0
|
||||||
|
Summary: High level compatibility layer for multiple asynchronous event loop implementations
|
||||||
|
Author-email: Alex Grönholm <alex.gronholm@nextday.fi>
|
||||||
|
License: MIT
|
||||||
|
Project-URL: Documentation, https://anyio.readthedocs.io/en/latest/
|
||||||
|
Project-URL: Changelog, https://anyio.readthedocs.io/en/stable/versionhistory.html
|
||||||
|
Project-URL: Source code, https://github.com/agronholm/anyio
|
||||||
|
Project-URL: Issue tracker, https://github.com/agronholm/anyio/issues
|
||||||
|
Classifier: Development Status :: 5 - Production/Stable
|
||||||
|
Classifier: Intended Audience :: Developers
|
||||||
|
Classifier: License :: OSI Approved :: MIT License
|
||||||
|
Classifier: Framework :: AnyIO
|
||||||
|
Classifier: Typing :: Typed
|
||||||
|
Classifier: Programming Language :: Python
|
||||||
|
Classifier: Programming Language :: Python :: 3
|
||||||
|
Classifier: Programming Language :: Python :: 3.8
|
||||||
|
Classifier: Programming Language :: Python :: 3.9
|
||||||
|
Classifier: Programming Language :: Python :: 3.10
|
||||||
|
Classifier: Programming Language :: Python :: 3.11
|
||||||
|
Classifier: Programming Language :: Python :: 3.12
|
||||||
|
Requires-Python: >=3.8
|
||||||
|
Description-Content-Type: text/x-rst
|
||||||
|
License-File: LICENSE
|
||||||
|
Requires-Dist: idna >=2.8
|
||||||
|
Requires-Dist: sniffio >=1.1
|
||||||
|
Requires-Dist: exceptiongroup >=1.0.2 ; python_version < "3.11"
|
||||||
|
Requires-Dist: typing-extensions >=4.1 ; python_version < "3.11"
|
||||||
|
Provides-Extra: doc
|
||||||
|
Requires-Dist: packaging ; extra == 'doc'
|
||||||
|
Requires-Dist: Sphinx >=7 ; extra == 'doc'
|
||||||
|
Requires-Dist: sphinx-rtd-theme ; extra == 'doc'
|
||||||
|
Requires-Dist: sphinx-autodoc-typehints >=1.2.0 ; extra == 'doc'
|
||||||
|
Provides-Extra: test
|
||||||
|
Requires-Dist: anyio[trio] ; extra == 'test'
|
||||||
|
Requires-Dist: coverage[toml] >=7 ; extra == 'test'
|
||||||
|
Requires-Dist: exceptiongroup >=1.2.0 ; extra == 'test'
|
||||||
|
Requires-Dist: hypothesis >=4.0 ; extra == 'test'
|
||||||
|
Requires-Dist: psutil >=5.9 ; extra == 'test'
|
||||||
|
Requires-Dist: pytest >=7.0 ; extra == 'test'
|
||||||
|
Requires-Dist: pytest-mock >=3.6.1 ; extra == 'test'
|
||||||
|
Requires-Dist: trustme ; extra == 'test'
|
||||||
|
Requires-Dist: uvloop >=0.17 ; (platform_python_implementation == "CPython" and platform_system != "Windows") and extra == 'test'
|
||||||
|
Provides-Extra: trio
|
||||||
|
Requires-Dist: trio >=0.23 ; extra == 'trio'
|
||||||
|
|
||||||
|
.. image:: https://github.com/agronholm/anyio/actions/workflows/test.yml/badge.svg
|
||||||
|
:target: https://github.com/agronholm/anyio/actions/workflows/test.yml
|
||||||
|
:alt: Build Status
|
||||||
|
.. image:: https://coveralls.io/repos/github/agronholm/anyio/badge.svg?branch=master
|
||||||
|
:target: https://coveralls.io/github/agronholm/anyio?branch=master
|
||||||
|
:alt: Code Coverage
|
||||||
|
.. image:: https://readthedocs.org/projects/anyio/badge/?version=latest
|
||||||
|
:target: https://anyio.readthedocs.io/en/latest/?badge=latest
|
||||||
|
:alt: Documentation
|
||||||
|
.. image:: https://badges.gitter.im/gitterHQ/gitter.svg
|
||||||
|
:target: https://gitter.im/python-trio/AnyIO
|
||||||
|
:alt: Gitter chat
|
||||||
|
|
||||||
|
AnyIO is an asynchronous networking and concurrency library that works on top of either asyncio_ or
|
||||||
|
trio_. It implements trio-like `structured concurrency`_ (SC) on top of asyncio and works in harmony
|
||||||
|
with the native SC of trio itself.
|
||||||
|
|
||||||
|
Applications and libraries written against AnyIO's API will run unmodified on either asyncio_ or
|
||||||
|
trio_. AnyIO can also be adopted into a library or application incrementally – bit by bit, no full
|
||||||
|
refactoring necessary. It will blend in with the native libraries of your chosen backend.
|
||||||
|
|
||||||
|
Documentation
|
||||||
|
-------------
|
||||||
|
|
||||||
|
View full documentation at: https://anyio.readthedocs.io/
|
||||||
|
|
||||||
|
Features
|
||||||
|
--------
|
||||||
|
|
||||||
|
AnyIO offers the following functionality:
|
||||||
|
|
||||||
|
* Task groups (nurseries_ in trio terminology)
|
||||||
|
* High-level networking (TCP, UDP and UNIX sockets)
|
||||||
|
|
||||||
|
* `Happy eyeballs`_ algorithm for TCP connections (more robust than that of asyncio on Python
|
||||||
|
3.8)
|
||||||
|
* async/await style UDP sockets (unlike asyncio where you still have to use Transports and
|
||||||
|
Protocols)
|
||||||
|
|
||||||
|
* A versatile API for byte streams and object streams
|
||||||
|
* Inter-task synchronization and communication (locks, conditions, events, semaphores, object
|
||||||
|
streams)
|
||||||
|
* Worker threads
|
||||||
|
* Subprocesses
|
||||||
|
* Asynchronous file I/O (using worker threads)
|
||||||
|
* Signal handling
|
||||||
|
|
||||||
|
AnyIO also comes with its own pytest_ plugin which also supports asynchronous fixtures.
|
||||||
|
It even works with the popular Hypothesis_ library.
|
||||||
|
|
||||||
|
.. _asyncio: https://docs.python.org/3/library/asyncio.html
|
||||||
|
.. _trio: https://github.com/python-trio/trio
|
||||||
|
.. _structured concurrency: https://en.wikipedia.org/wiki/Structured_concurrency
|
||||||
|
.. _nurseries: https://trio.readthedocs.io/en/stable/reference-core.html#nurseries-and-spawning
|
||||||
|
.. _Happy eyeballs: https://en.wikipedia.org/wiki/Happy_Eyeballs
|
||||||
|
.. _pytest: https://docs.pytest.org/en/latest/
|
||||||
|
.. _Hypothesis: https://hypothesis.works/
|
|
@ -0,0 +1,82 @@
|
||||||
|
anyio-4.4.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||||
|
anyio-4.4.0.dist-info/LICENSE,sha256=U2GsncWPLvX9LpsJxoKXwX8ElQkJu8gCO9uC6s8iwrA,1081
|
||||||
|
anyio-4.4.0.dist-info/METADATA,sha256=sbJaOJ_Ilka4D0U6yKtfOtVrYef7XRFzGjoBEZnRpes,4599
|
||||||
|
anyio-4.4.0.dist-info/RECORD,,
|
||||||
|
anyio-4.4.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
||||||
|
anyio-4.4.0.dist-info/entry_points.txt,sha256=_d6Yu6uiaZmNe0CydowirE9Cmg7zUL2g08tQpoS3Qvc,39
|
||||||
|
anyio-4.4.0.dist-info/top_level.txt,sha256=QglSMiWX8_5dpoVAEIHdEYzvqFMdSYWmCj6tYw2ITkQ,6
|
||||||
|
anyio/__init__.py,sha256=CxUxIHOIONI3KpsDLCg-dI6lQaDkW_4Zhtu5jWt1XO8,4344
|
||||||
|
anyio/__pycache__/__init__.cpython-311.pyc,,
|
||||||
|
anyio/__pycache__/from_thread.cpython-311.pyc,,
|
||||||
|
anyio/__pycache__/lowlevel.cpython-311.pyc,,
|
||||||
|
anyio/__pycache__/pytest_plugin.cpython-311.pyc,,
|
||||||
|
anyio/__pycache__/to_process.cpython-311.pyc,,
|
||||||
|
anyio/__pycache__/to_thread.cpython-311.pyc,,
|
||||||
|
anyio/_backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||||
|
anyio/_backends/__pycache__/__init__.cpython-311.pyc,,
|
||||||
|
anyio/_backends/__pycache__/_asyncio.cpython-311.pyc,,
|
||||||
|
anyio/_backends/__pycache__/_trio.cpython-311.pyc,,
|
||||||
|
anyio/_backends/_asyncio.py,sha256=CVy87WpTh1URmEjlE-AKTrBoPwsqH_nRxbGkLnTrfeg,83244
|
||||||
|
anyio/_backends/_trio.py,sha256=8gdA930WJFn4xrMNpMH6LrHC9MeyTdZBHsB_W-8HFBw,35909
|
||||||
|
anyio/_core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||||
|
anyio/_core/__pycache__/__init__.cpython-311.pyc,,
|
||||||
|
anyio/_core/__pycache__/_eventloop.cpython-311.pyc,,
|
||||||
|
anyio/_core/__pycache__/_exceptions.cpython-311.pyc,,
|
||||||
|
anyio/_core/__pycache__/_fileio.cpython-311.pyc,,
|
||||||
|
anyio/_core/__pycache__/_resources.cpython-311.pyc,,
|
||||||
|
anyio/_core/__pycache__/_signals.cpython-311.pyc,,
|
||||||
|
anyio/_core/__pycache__/_sockets.cpython-311.pyc,,
|
||||||
|
anyio/_core/__pycache__/_streams.cpython-311.pyc,,
|
||||||
|
anyio/_core/__pycache__/_subprocesses.cpython-311.pyc,,
|
||||||
|
anyio/_core/__pycache__/_synchronization.cpython-311.pyc,,
|
||||||
|
anyio/_core/__pycache__/_tasks.cpython-311.pyc,,
|
||||||
|
anyio/_core/__pycache__/_testing.cpython-311.pyc,,
|
||||||
|
anyio/_core/__pycache__/_typedattr.cpython-311.pyc,,
|
||||||
|
anyio/_core/_eventloop.py,sha256=t_tAwBFPjF8jrZGjlJ6bbYy6KA3bjsbZxV9mvh9t1i0,4695
|
||||||
|
anyio/_core/_exceptions.py,sha256=wUmhDu80qEB7z9EdCqUwVEhNUlNEok4_W2-rC6sCAUQ,2078
|
||||||
|
anyio/_core/_fileio.py,sha256=fC6H6DcueA-2AUaDkP91kmVeqoU7DlWj6O0CCAdnsdM,19456
|
||||||
|
anyio/_core/_resources.py,sha256=NbmU5O5UX3xEyACnkmYX28Fmwdl-f-ny0tHym26e0w0,435
|
||||||
|
anyio/_core/_signals.py,sha256=rDOVxtugZDgC5AhfW3lrwsre2n9Pj_adoRUidBiF6dA,878
|
||||||
|
anyio/_core/_sockets.py,sha256=2jOzi4bXQQYTLr9PSrCaeTgwaU_N7mt0yjHGmX4LvA8,24028
|
||||||
|
anyio/_core/_streams.py,sha256=Z8ZlTY6xom5EszrMsgCT3TphiT4JIlQG-y33CrD0NQY,1811
|
||||||
|
anyio/_core/_subprocesses.py,sha256=ZLLNXAtlRGfbyC4sOIltYB1k3NJa3tqk_x_Fsnbcs1M,5272
|
||||||
|
anyio/_core/_synchronization.py,sha256=h3o6dWWbzVrcNmi7i2mQjEgRtnIxkGtjmYK7KMpdlaE,18444
|
||||||
|
anyio/_core/_tasks.py,sha256=pvVEX2Fw159sf0ypAPerukKsZgRRwvFFedVW52nR2Vk,4764
|
||||||
|
anyio/_core/_testing.py,sha256=YUGwA5cgFFbUTv4WFd7cv_BSVr4ryTtPp8owQA3JdWE,2118
|
||||||
|
anyio/_core/_typedattr.py,sha256=P4ozZikn3-DbpoYcvyghS_FOYAgbmUxeoU8-L_07pZM,2508
|
||||||
|
anyio/abc/__init__.py,sha256=U44_s3BglL8BojWQiq0KuokvCqkunIp-ySH3GyRXxAc,2681
|
||||||
|
anyio/abc/__pycache__/__init__.cpython-311.pyc,,
|
||||||
|
anyio/abc/__pycache__/_eventloop.cpython-311.pyc,,
|
||||||
|
anyio/abc/__pycache__/_resources.cpython-311.pyc,,
|
||||||
|
anyio/abc/__pycache__/_sockets.cpython-311.pyc,,
|
||||||
|
anyio/abc/__pycache__/_streams.cpython-311.pyc,,
|
||||||
|
anyio/abc/__pycache__/_subprocesses.cpython-311.pyc,,
|
||||||
|
anyio/abc/__pycache__/_tasks.cpython-311.pyc,,
|
||||||
|
anyio/abc/__pycache__/_testing.cpython-311.pyc,,
|
||||||
|
anyio/abc/_eventloop.py,sha256=r9pldSu6p-ZsvO6D_brc0EIi1JgZRDbfgVLuy7Q7R6o,10085
|
||||||
|
anyio/abc/_resources.py,sha256=DrYvkNN1hH6Uvv5_5uKySvDsnknGVDe8FCKfko0VtN8,783
|
||||||
|
anyio/abc/_sockets.py,sha256=XdZ42TQ1omZN9Ec3HUfTMWG_i-21yMjXQ_FFslAZtzQ,6269
|
||||||
|
anyio/abc/_streams.py,sha256=GzST5Q2zQmxVzdrAqtbSyHNxkPlIC9AzeZJg_YyPAXw,6598
|
||||||
|
anyio/abc/_subprocesses.py,sha256=cumAPJTktOQtw63IqG0lDpyZqu_l1EElvQHMiwJgL08,2067
|
||||||
|
anyio/abc/_tasks.py,sha256=0Jc6oIwUjMIVReehF6knOZyAqlgwDt4TP1NQkx4IQGw,2731
|
||||||
|
anyio/abc/_testing.py,sha256=tBJUzkSfOXJw23fe8qSJ03kJlShOYjjaEyFB6k6MYT8,1821
|
||||||
|
anyio/from_thread.py,sha256=HtgJ7yZ6RLfRe0l0yyyhpg2mnoax0mqXXgKv8TORUlA,17700
|
||||||
|
anyio/lowlevel.py,sha256=nkgmW--SdxGVp0cmLUYazjkigveRm5HY7-gW8Bpp9oY,4169
|
||||||
|
anyio/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||||
|
anyio/pytest_plugin.py,sha256=TBgRAfT-Oxy6efhO1Tziq54NND3Jy4dRmwkMmQXSvhI,5386
|
||||||
|
anyio/streams/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||||
|
anyio/streams/__pycache__/__init__.cpython-311.pyc,,
|
||||||
|
anyio/streams/__pycache__/buffered.cpython-311.pyc,,
|
||||||
|
anyio/streams/__pycache__/file.cpython-311.pyc,,
|
||||||
|
anyio/streams/__pycache__/memory.cpython-311.pyc,,
|
||||||
|
anyio/streams/__pycache__/stapled.cpython-311.pyc,,
|
||||||
|
anyio/streams/__pycache__/text.cpython-311.pyc,,
|
||||||
|
anyio/streams/__pycache__/tls.cpython-311.pyc,,
|
||||||
|
anyio/streams/buffered.py,sha256=UCldKC168YuLvT7n3HtNPnQ2iWAMSTYQWbZvzLwMwkM,4500
|
||||||
|
anyio/streams/file.py,sha256=6uoTNb5KbMoj-6gS3_xrrL8uZN8Q4iIvOS1WtGyFfKw,4383
|
||||||
|
anyio/streams/memory.py,sha256=Y286x16omNSSGONQx5CBLLNiB3vAJb_vVKt5vb3go-Q,10190
|
||||||
|
anyio/streams/stapled.py,sha256=U09pCrmOw9kkNhe6tKopsm1QIMT1lFTFvtb-A7SIe4k,4302
|
||||||
|
anyio/streams/text.py,sha256=6x8w8xlfCZKTUWQoJiMPoMhSSJFUBRKgoBNSBtbd9yg,5094
|
||||||
|
anyio/streams/tls.py,sha256=ev-6yNOGcIkziIkcIfKj8VmLqQJW-iDBJttaKgKDsF4,12752
|
||||||
|
anyio/to_process.py,sha256=lx_bt0CUJsS1eSlraw662OpCjRgGXowoyf1Q-i-kOxo,9535
|
||||||
|
anyio/to_thread.py,sha256=WM2JQ2MbVsd5D5CM08bQiTwzZIvpsGjfH1Fy247KoDQ,2396
|
|
@ -0,0 +1,5 @@
|
||||||
|
Wheel-Version: 1.0
|
||||||
|
Generator: bdist_wheel (0.43.0)
|
||||||
|
Root-Is-Purelib: true
|
||||||
|
Tag: py3-none-any
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
[pytest11]
|
||||||
|
anyio = anyio.pytest_plugin
|
|
@ -0,0 +1 @@
|
||||||
|
anyio
|
76
telecli/lib/python3.11/site-packages/anyio/__init__.py
Normal file
76
telecli/lib/python3.11/site-packages/anyio/__init__.py
Normal file
|
@ -0,0 +1,76 @@
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
from typing import Any
|
||||||
|
|
||||||
|
from ._core._eventloop import current_time as current_time
|
||||||
|
from ._core._eventloop import get_all_backends as get_all_backends
|
||||||
|
from ._core._eventloop import get_cancelled_exc_class as get_cancelled_exc_class
|
||||||
|
from ._core._eventloop import run as run
|
||||||
|
from ._core._eventloop import sleep as sleep
|
||||||
|
from ._core._eventloop import sleep_forever as sleep_forever
|
||||||
|
from ._core._eventloop import sleep_until as sleep_until
|
||||||
|
from ._core._exceptions import BrokenResourceError as BrokenResourceError
|
||||||
|
from ._core._exceptions import BrokenWorkerProcess as BrokenWorkerProcess
|
||||||
|
from ._core._exceptions import BusyResourceError as BusyResourceError
|
||||||
|
from ._core._exceptions import ClosedResourceError as ClosedResourceError
|
||||||
|
from ._core._exceptions import DelimiterNotFound as DelimiterNotFound
|
||||||
|
from ._core._exceptions import EndOfStream as EndOfStream
|
||||||
|
from ._core._exceptions import IncompleteRead as IncompleteRead
|
||||||
|
from ._core._exceptions import TypedAttributeLookupError as TypedAttributeLookupError
|
||||||
|
from ._core._exceptions import WouldBlock as WouldBlock
|
||||||
|
from ._core._fileio import AsyncFile as AsyncFile
|
||||||
|
from ._core._fileio import Path as Path
|
||||||
|
from ._core._fileio import open_file as open_file
|
||||||
|
from ._core._fileio import wrap_file as wrap_file
|
||||||
|
from ._core._resources import aclose_forcefully as aclose_forcefully
|
||||||
|
from ._core._signals import open_signal_receiver as open_signal_receiver
|
||||||
|
from ._core._sockets import connect_tcp as connect_tcp
|
||||||
|
from ._core._sockets import connect_unix as connect_unix
|
||||||
|
from ._core._sockets import create_connected_udp_socket as create_connected_udp_socket
|
||||||
|
from ._core._sockets import (
|
||||||
|
create_connected_unix_datagram_socket as create_connected_unix_datagram_socket,
|
||||||
|
)
|
||||||
|
from ._core._sockets import create_tcp_listener as create_tcp_listener
|
||||||
|
from ._core._sockets import create_udp_socket as create_udp_socket
|
||||||
|
from ._core._sockets import create_unix_datagram_socket as create_unix_datagram_socket
|
||||||
|
from ._core._sockets import create_unix_listener as create_unix_listener
|
||||||
|
from ._core._sockets import getaddrinfo as getaddrinfo
|
||||||
|
from ._core._sockets import getnameinfo as getnameinfo
|
||||||
|
from ._core._sockets import wait_socket_readable as wait_socket_readable
|
||||||
|
from ._core._sockets import wait_socket_writable as wait_socket_writable
|
||||||
|
from ._core._streams import create_memory_object_stream as create_memory_object_stream
|
||||||
|
from ._core._subprocesses import open_process as open_process
|
||||||
|
from ._core._subprocesses import run_process as run_process
|
||||||
|
from ._core._synchronization import CapacityLimiter as CapacityLimiter
|
||||||
|
from ._core._synchronization import (
|
||||||
|
CapacityLimiterStatistics as CapacityLimiterStatistics,
|
||||||
|
)
|
||||||
|
from ._core._synchronization import Condition as Condition
|
||||||
|
from ._core._synchronization import ConditionStatistics as ConditionStatistics
|
||||||
|
from ._core._synchronization import Event as Event
|
||||||
|
from ._core._synchronization import EventStatistics as EventStatistics
|
||||||
|
from ._core._synchronization import Lock as Lock
|
||||||
|
from ._core._synchronization import LockStatistics as LockStatistics
|
||||||
|
from ._core._synchronization import ResourceGuard as ResourceGuard
|
||||||
|
from ._core._synchronization import Semaphore as Semaphore
|
||||||
|
from ._core._synchronization import SemaphoreStatistics as SemaphoreStatistics
|
||||||
|
from ._core._tasks import TASK_STATUS_IGNORED as TASK_STATUS_IGNORED
|
||||||
|
from ._core._tasks import CancelScope as CancelScope
|
||||||
|
from ._core._tasks import create_task_group as create_task_group
|
||||||
|
from ._core._tasks import current_effective_deadline as current_effective_deadline
|
||||||
|
from ._core._tasks import fail_after as fail_after
|
||||||
|
from ._core._tasks import move_on_after as move_on_after
|
||||||
|
from ._core._testing import TaskInfo as TaskInfo
|
||||||
|
from ._core._testing import get_current_task as get_current_task
|
||||||
|
from ._core._testing import get_running_tasks as get_running_tasks
|
||||||
|
from ._core._testing import wait_all_tasks_blocked as wait_all_tasks_blocked
|
||||||
|
from ._core._typedattr import TypedAttributeProvider as TypedAttributeProvider
|
||||||
|
from ._core._typedattr import TypedAttributeSet as TypedAttributeSet
|
||||||
|
from ._core._typedattr import typed_attribute as typed_attribute
|
||||||
|
|
||||||
|
# Re-export imports so they look like they live directly in this package
|
||||||
|
key: str
|
||||||
|
value: Any
|
||||||
|
for key, value in list(locals().items()):
|
||||||
|
if getattr(value, "__module__", "").startswith("anyio."):
|
||||||
|
value.__module__ = __name__
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2511
telecli/lib/python3.11/site-packages/anyio/_backends/_asyncio.py
Normal file
2511
telecli/lib/python3.11/site-packages/anyio/_backends/_asyncio.py
Normal file
File diff suppressed because it is too large
Load Diff
1177
telecli/lib/python3.11/site-packages/anyio/_backends/_trio.py
Normal file
1177
telecli/lib/python3.11/site-packages/anyio/_backends/_trio.py
Normal file
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
166
telecli/lib/python3.11/site-packages/anyio/_core/_eventloop.py
Normal file
166
telecli/lib/python3.11/site-packages/anyio/_core/_eventloop.py
Normal file
|
@ -0,0 +1,166 @@
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import math
|
||||||
|
import sys
|
||||||
|
import threading
|
||||||
|
from collections.abc import Awaitable, Callable, Generator
|
||||||
|
from contextlib import contextmanager
|
||||||
|
from importlib import import_module
|
||||||
|
from typing import TYPE_CHECKING, Any, TypeVar
|
||||||
|
|
||||||
|
import sniffio
|
||||||
|
|
||||||
|
if sys.version_info >= (3, 11):
|
||||||
|
from typing import TypeVarTuple, Unpack
|
||||||
|
else:
|
||||||
|
from typing_extensions import TypeVarTuple, Unpack
|
||||||
|
|
||||||
|
if TYPE_CHECKING:
|
||||||
|
from ..abc import AsyncBackend
|
||||||
|
|
||||||
|
# This must be updated when new backends are introduced
|
||||||
|
BACKENDS = "asyncio", "trio"
|
||||||
|
|
||||||
|
T_Retval = TypeVar("T_Retval")
|
||||||
|
PosArgsT = TypeVarTuple("PosArgsT")
|
||||||
|
|
||||||
|
threadlocals = threading.local()
|
||||||
|
loaded_backends: dict[str, type[AsyncBackend]] = {}
|
||||||
|
|
||||||
|
|
||||||
|
def run(
|
||||||
|
func: Callable[[Unpack[PosArgsT]], Awaitable[T_Retval]],
|
||||||
|
*args: Unpack[PosArgsT],
|
||||||
|
backend: str = "asyncio",
|
||||||
|
backend_options: dict[str, Any] | None = None,
|
||||||
|
) -> T_Retval:
|
||||||
|
"""
|
||||||
|
Run the given coroutine function in an asynchronous event loop.
|
||||||
|
|
||||||
|
The current thread must not be already running an event loop.
|
||||||
|
|
||||||
|
:param func: a coroutine function
|
||||||
|
:param args: positional arguments to ``func``
|
||||||
|
:param backend: name of the asynchronous event loop implementation – currently
|
||||||
|
either ``asyncio`` or ``trio``
|
||||||
|
:param backend_options: keyword arguments to call the backend ``run()``
|
||||||
|
implementation with (documented :ref:`here <backend options>`)
|
||||||
|
:return: the return value of the coroutine function
|
||||||
|
:raises RuntimeError: if an asynchronous event loop is already running in this
|
||||||
|
thread
|
||||||
|
:raises LookupError: if the named backend is not found
|
||||||
|
|
||||||
|
"""
|
||||||
|
try:
|
||||||
|
asynclib_name = sniffio.current_async_library()
|
||||||
|
except sniffio.AsyncLibraryNotFoundError:
|
||||||
|
pass
|
||||||
|
else:
|
||||||
|
raise RuntimeError(f"Already running {asynclib_name} in this thread")
|
||||||
|
|
||||||
|
try:
|
||||||
|
async_backend = get_async_backend(backend)
|
||||||
|
except ImportError as exc:
|
||||||
|
raise LookupError(f"No such backend: {backend}") from exc
|
||||||
|
|
||||||
|
token = None
|
||||||
|
if sniffio.current_async_library_cvar.get(None) is None:
|
||||||
|
# Since we're in control of the event loop, we can cache the name of the async
|
||||||
|
# library
|
||||||
|
token = sniffio.current_async_library_cvar.set(backend)
|
||||||
|
|
||||||
|
try:
|
||||||
|
backend_options = backend_options or {}
|
||||||
|
return async_backend.run(func, args, {}, backend_options)
|
||||||
|
finally:
|
||||||
|
if token:
|
||||||
|
sniffio.current_async_library_cvar.reset(token)
|
||||||
|
|
||||||
|
|
||||||
|
async def sleep(delay: float) -> None:
|
||||||
|
"""
|
||||||
|
Pause the current task for the specified duration.
|
||||||
|
|
||||||
|
:param delay: the duration, in seconds
|
||||||
|
|
||||||
|
"""
|
||||||
|
return await get_async_backend().sleep(delay)
|
||||||
|
|
||||||
|
|
||||||
|
async def sleep_forever() -> None:
|
||||||
|
"""
|
||||||
|
Pause the current task until it's cancelled.
|
||||||
|
|
||||||
|
This is a shortcut for ``sleep(math.inf)``.
|
||||||
|
|
||||||
|
.. versionadded:: 3.1
|
||||||
|
|
||||||
|
"""
|
||||||
|
await sleep(math.inf)
|
||||||
|
|
||||||
|
|
||||||
|
async def sleep_until(deadline: float) -> None:
|
||||||
|
"""
|
||||||
|
Pause the current task until the given time.
|
||||||
|
|
||||||
|
:param deadline: the absolute time to wake up at (according to the internal
|
||||||
|
monotonic clock of the event loop)
|
||||||
|
|
||||||
|
.. versionadded:: 3.1
|
||||||
|
|
||||||
|
"""
|
||||||
|
now = current_time()
|
||||||
|
await sleep(max(deadline - now, 0))
|
||||||
|
|
||||||
|
|
||||||
|
def current_time() -> float:
|
||||||
|
"""
|
||||||
|
Return the current value of the event loop's internal clock.
|
||||||
|
|
||||||
|
:return: the clock value (seconds)
|
||||||
|
|
||||||
|
"""
|
||||||
|
return get_async_backend().current_time()
|
||||||
|
|
||||||
|
|
||||||
|
def get_all_backends() -> tuple[str, ...]:
|
||||||
|
"""Return a tuple of the names of all built-in backends."""
|
||||||
|
return BACKENDS
|
||||||
|
|
||||||
|
|
||||||
|
def get_cancelled_exc_class() -> type[BaseException]:
|
||||||
|
"""Return the current async library's cancellation exception class."""
|
||||||
|
return get_async_backend().cancelled_exception_class()
|
||||||
|
|
||||||
|
|
||||||
|
#
|
||||||
|
# Private API
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
|
@contextmanager
|
||||||
|
def claim_worker_thread(
|
||||||
|
backend_class: type[AsyncBackend], token: object
|
||||||
|
) -> Generator[Any, None, None]:
|
||||||
|
threadlocals.current_async_backend = backend_class
|
||||||
|
threadlocals.current_token = token
|
||||||
|
try:
|
||||||
|
yield
|
||||||
|
finally:
|
||||||
|
del threadlocals.current_async_backend
|
||||||
|
del threadlocals.current_token
|
||||||
|
|
||||||
|
|
||||||
|
def get_async_backend(asynclib_name: str | None = None) -> type[AsyncBackend]:
|
||||||
|
if asynclib_name is None:
|
||||||
|
asynclib_name = sniffio.current_async_library()
|
||||||
|
|
||||||
|
# We use our own dict instead of sys.modules to get the already imported back-end
|
||||||
|
# class because the appropriate modules in sys.modules could potentially be only
|
||||||
|
# partially initialized
|
||||||
|
try:
|
||||||
|
return loaded_backends[asynclib_name]
|
||||||
|
except KeyError:
|
||||||
|
module = import_module(f"anyio._backends._{asynclib_name}")
|
||||||
|
loaded_backends[asynclib_name] = module.backend_class
|
||||||
|
return module.backend_class
|
|
@ -0,0 +1,73 @@
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
|
||||||
|
class BrokenResourceError(Exception):
|
||||||
|
"""
|
||||||
|
Raised when trying to use a resource that has been rendered unusable due to external
|
||||||
|
causes (e.g. a send stream whose peer has disconnected).
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
class BrokenWorkerProcess(Exception):
|
||||||
|
"""
|
||||||
|
Raised by :func:`run_sync_in_process` if the worker process terminates abruptly or
|
||||||
|
otherwise misbehaves.
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
class BusyResourceError(Exception):
|
||||||
|
"""
|
||||||
|
Raised when two tasks are trying to read from or write to the same resource
|
||||||
|
concurrently.
|
||||||
|
"""
|
||||||
|
|
||||||
|
def __init__(self, action: str):
|
||||||
|
super().__init__(f"Another task is already {action} this resource")
|
||||||
|
|
||||||
|
|
||||||
|
class ClosedResourceError(Exception):
|
||||||
|
"""Raised when trying to use a resource that has been closed."""
|
||||||
|
|
||||||
|
|
||||||
|
class DelimiterNotFound(Exception):
|
||||||
|
"""
|
||||||
|
Raised during
|
||||||
|
:meth:`~anyio.streams.buffered.BufferedByteReceiveStream.receive_until` if the
|
||||||
|
maximum number of bytes has been read without the delimiter being found.
|
||||||
|
"""
|
||||||
|
|
||||||
|
def __init__(self, max_bytes: int) -> None:
|
||||||
|
super().__init__(
|
||||||
|
f"The delimiter was not found among the first {max_bytes} bytes"
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class EndOfStream(Exception):
|
||||||
|
"""
|
||||||
|
Raised when trying to read from a stream that has been closed from the other end.
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
class IncompleteRead(Exception):
|
||||||
|
"""
|
||||||
|
Raised during
|
||||||
|
:meth:`~anyio.streams.buffered.BufferedByteReceiveStream.receive_exactly` or
|
||||||
|
:meth:`~anyio.streams.buffered.BufferedByteReceiveStream.receive_until` if the
|
||||||
|
connection is closed before the requested amount of bytes has been read.
|
||||||
|
"""
|
||||||
|
|
||||||
|
def __init__(self) -> None:
|
||||||
|
super().__init__(
|
||||||
|
"The stream was closed before the read operation could be completed"
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class TypedAttributeLookupError(LookupError):
|
||||||
|
"""
|
||||||
|
Raised by :meth:`~anyio.TypedAttributeProvider.extra` when the given typed attribute
|
||||||
|
is not found and no default value has been given.
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
class WouldBlock(Exception):
|
||||||
|
"""Raised by ``X_nowait`` functions if ``X()`` would block."""
|
637
telecli/lib/python3.11/site-packages/anyio/_core/_fileio.py
Normal file
637
telecli/lib/python3.11/site-packages/anyio/_core/_fileio.py
Normal file
|
@ -0,0 +1,637 @@
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import os
|
||||||
|
import pathlib
|
||||||
|
import sys
|
||||||
|
from collections.abc import Callable, Iterable, Iterator, Sequence
|
||||||
|
from dataclasses import dataclass
|
||||||
|
from functools import partial
|
||||||
|
from os import PathLike
|
||||||
|
from typing import (
|
||||||
|
IO,
|
||||||
|
TYPE_CHECKING,
|
||||||
|
Any,
|
||||||
|
AnyStr,
|
||||||
|
AsyncIterator,
|
||||||
|
Final,
|
||||||
|
Generic,
|
||||||
|
overload,
|
||||||
|
)
|
||||||
|
|
||||||
|
from .. import to_thread
|
||||||
|
from ..abc import AsyncResource
|
||||||
|
|
||||||
|
if TYPE_CHECKING:
|
||||||
|
from _typeshed import OpenBinaryMode, OpenTextMode, ReadableBuffer, WriteableBuffer
|
||||||
|
else:
|
||||||
|
ReadableBuffer = OpenBinaryMode = OpenTextMode = WriteableBuffer = object
|
||||||
|
|
||||||
|
|
||||||
|
class AsyncFile(AsyncResource, Generic[AnyStr]):
|
||||||
|
"""
|
||||||
|
An asynchronous file object.
|
||||||
|
|
||||||
|
This class wraps a standard file object and provides async friendly versions of the
|
||||||
|
following blocking methods (where available on the original file object):
|
||||||
|
|
||||||
|
* read
|
||||||
|
* read1
|
||||||
|
* readline
|
||||||
|
* readlines
|
||||||
|
* readinto
|
||||||
|
* readinto1
|
||||||
|
* write
|
||||||
|
* writelines
|
||||||
|
* truncate
|
||||||
|
* seek
|
||||||
|
* tell
|
||||||
|
* flush
|
||||||
|
|
||||||
|
All other methods are directly passed through.
|
||||||
|
|
||||||
|
This class supports the asynchronous context manager protocol which closes the
|
||||||
|
underlying file at the end of the context block.
|
||||||
|
|
||||||
|
This class also supports asynchronous iteration::
|
||||||
|
|
||||||
|
async with await open_file(...) as f:
|
||||||
|
async for line in f:
|
||||||
|
print(line)
|
||||||
|
"""
|
||||||
|
|
||||||
|
def __init__(self, fp: IO[AnyStr]) -> None:
|
||||||
|
self._fp: Any = fp
|
||||||
|
|
||||||
|
def __getattr__(self, name: str) -> object:
|
||||||
|
return getattr(self._fp, name)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def wrapped(self) -> IO[AnyStr]:
|
||||||
|
"""The wrapped file object."""
|
||||||
|
return self._fp
|
||||||
|
|
||||||
|
async def __aiter__(self) -> AsyncIterator[AnyStr]:
|
||||||
|
while True:
|
||||||
|
line = await self.readline()
|
||||||
|
if line:
|
||||||
|
yield line
|
||||||
|
else:
|
||||||
|
break
|
||||||
|
|
||||||
|
async def aclose(self) -> None:
|
||||||
|
return await to_thread.run_sync(self._fp.close)
|
||||||
|
|
||||||
|
async def read(self, size: int = -1) -> AnyStr:
|
||||||
|
return await to_thread.run_sync(self._fp.read, size)
|
||||||
|
|
||||||
|
async def read1(self: AsyncFile[bytes], size: int = -1) -> bytes:
|
||||||
|
return await to_thread.run_sync(self._fp.read1, size)
|
||||||
|
|
||||||
|
async def readline(self) -> AnyStr:
|
||||||
|
return await to_thread.run_sync(self._fp.readline)
|
||||||
|
|
||||||
|
async def readlines(self) -> list[AnyStr]:
|
||||||
|
return await to_thread.run_sync(self._fp.readlines)
|
||||||
|
|
||||||
|
async def readinto(self: AsyncFile[bytes], b: WriteableBuffer) -> bytes:
|
||||||
|
return await to_thread.run_sync(self._fp.readinto, b)
|
||||||
|
|
||||||
|
async def readinto1(self: AsyncFile[bytes], b: WriteableBuffer) -> bytes:
|
||||||
|
return await to_thread.run_sync(self._fp.readinto1, b)
|
||||||
|
|
||||||
|
@overload
|
||||||
|
async def write(self: AsyncFile[bytes], b: ReadableBuffer) -> int: ...
|
||||||
|
|
||||||
|
@overload
|
||||||
|
async def write(self: AsyncFile[str], b: str) -> int: ...
|
||||||
|
|
||||||
|
async def write(self, b: ReadableBuffer | str) -> int:
|
||||||
|
return await to_thread.run_sync(self._fp.write, b)
|
||||||
|
|
||||||
|
@overload
|
||||||
|
async def writelines(
|
||||||
|
self: AsyncFile[bytes], lines: Iterable[ReadableBuffer]
|
||||||
|
) -> None: ...
|
||||||
|
|
||||||
|
@overload
|
||||||
|
async def writelines(self: AsyncFile[str], lines: Iterable[str]) -> None: ...
|
||||||
|
|
||||||
|
async def writelines(self, lines: Iterable[ReadableBuffer] | Iterable[str]) -> None:
|
||||||
|
return await to_thread.run_sync(self._fp.writelines, lines)
|
||||||
|
|
||||||
|
async def truncate(self, size: int | None = None) -> int:
|
||||||
|
return await to_thread.run_sync(self._fp.truncate, size)
|
||||||
|
|
||||||
|
async def seek(self, offset: int, whence: int | None = os.SEEK_SET) -> int:
|
||||||
|
return await to_thread.run_sync(self._fp.seek, offset, whence)
|
||||||
|
|
||||||
|
async def tell(self) -> int:
|
||||||
|
return await to_thread.run_sync(self._fp.tell)
|
||||||
|
|
||||||
|
async def flush(self) -> None:
|
||||||
|
return await to_thread.run_sync(self._fp.flush)
|
||||||
|
|
||||||
|
|
||||||
|
@overload
|
||||||
|
async def open_file(
|
||||||
|
file: str | PathLike[str] | int,
|
||||||
|
mode: OpenBinaryMode,
|
||||||
|
buffering: int = ...,
|
||||||
|
encoding: str | None = ...,
|
||||||
|
errors: str | None = ...,
|
||||||
|
newline: str | None = ...,
|
||||||
|
closefd: bool = ...,
|
||||||
|
opener: Callable[[str, int], int] | None = ...,
|
||||||
|
) -> AsyncFile[bytes]: ...
|
||||||
|
|
||||||
|
|
||||||
|
@overload
|
||||||
|
async def open_file(
|
||||||
|
file: str | PathLike[str] | int,
|
||||||
|
mode: OpenTextMode = ...,
|
||||||
|
buffering: int = ...,
|
||||||
|
encoding: str | None = ...,
|
||||||
|
errors: str | None = ...,
|
||||||
|
newline: str | None = ...,
|
||||||
|
closefd: bool = ...,
|
||||||
|
opener: Callable[[str, int], int] | None = ...,
|
||||||
|
) -> AsyncFile[str]: ...
|
||||||
|
|
||||||
|
|
||||||
|
async def open_file(
|
||||||
|
file: str | PathLike[str] | int,
|
||||||
|
mode: str = "r",
|
||||||
|
buffering: int = -1,
|
||||||
|
encoding: str | None = None,
|
||||||
|
errors: str | None = None,
|
||||||
|
newline: str | None = None,
|
||||||
|
closefd: bool = True,
|
||||||
|
opener: Callable[[str, int], int] | None = None,
|
||||||
|
) -> AsyncFile[Any]:
|
||||||
|
"""
|
||||||
|
Open a file asynchronously.
|
||||||
|
|
||||||
|
The arguments are exactly the same as for the builtin :func:`open`.
|
||||||
|
|
||||||
|
:return: an asynchronous file object
|
||||||
|
|
||||||
|
"""
|
||||||
|
fp = await to_thread.run_sync(
|
||||||
|
open, file, mode, buffering, encoding, errors, newline, closefd, opener
|
||||||
|
)
|
||||||
|
return AsyncFile(fp)
|
||||||
|
|
||||||
|
|
||||||
|
def wrap_file(file: IO[AnyStr]) -> AsyncFile[AnyStr]:
|
||||||
|
"""
|
||||||
|
Wrap an existing file as an asynchronous file.
|
||||||
|
|
||||||
|
:param file: an existing file-like object
|
||||||
|
:return: an asynchronous file object
|
||||||
|
|
||||||
|
"""
|
||||||
|
return AsyncFile(file)
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass(eq=False)
|
||||||
|
class _PathIterator(AsyncIterator["Path"]):
|
||||||
|
iterator: Iterator[PathLike[str]]
|
||||||
|
|
||||||
|
async def __anext__(self) -> Path:
|
||||||
|
nextval = await to_thread.run_sync(
|
||||||
|
next, self.iterator, None, abandon_on_cancel=True
|
||||||
|
)
|
||||||
|
if nextval is None:
|
||||||
|
raise StopAsyncIteration from None
|
||||||
|
|
||||||
|
return Path(nextval)
|
||||||
|
|
||||||
|
|
||||||
|
class Path:
|
||||||
|
"""
|
||||||
|
An asynchronous version of :class:`pathlib.Path`.
|
||||||
|
|
||||||
|
This class cannot be substituted for :class:`pathlib.Path` or
|
||||||
|
:class:`pathlib.PurePath`, but it is compatible with the :class:`os.PathLike`
|
||||||
|
interface.
|
||||||
|
|
||||||
|
It implements the Python 3.10 version of :class:`pathlib.Path` interface, except for
|
||||||
|
the deprecated :meth:`~pathlib.Path.link_to` method.
|
||||||
|
|
||||||
|
Any methods that do disk I/O need to be awaited on. These methods are:
|
||||||
|
|
||||||
|
* :meth:`~pathlib.Path.absolute`
|
||||||
|
* :meth:`~pathlib.Path.chmod`
|
||||||
|
* :meth:`~pathlib.Path.cwd`
|
||||||
|
* :meth:`~pathlib.Path.exists`
|
||||||
|
* :meth:`~pathlib.Path.expanduser`
|
||||||
|
* :meth:`~pathlib.Path.group`
|
||||||
|
* :meth:`~pathlib.Path.hardlink_to`
|
||||||
|
* :meth:`~pathlib.Path.home`
|
||||||
|
* :meth:`~pathlib.Path.is_block_device`
|
||||||
|
* :meth:`~pathlib.Path.is_char_device`
|
||||||
|
* :meth:`~pathlib.Path.is_dir`
|
||||||
|
* :meth:`~pathlib.Path.is_fifo`
|
||||||
|
* :meth:`~pathlib.Path.is_file`
|
||||||
|
* :meth:`~pathlib.Path.is_mount`
|
||||||
|
* :meth:`~pathlib.Path.lchmod`
|
||||||
|
* :meth:`~pathlib.Path.lstat`
|
||||||
|
* :meth:`~pathlib.Path.mkdir`
|
||||||
|
* :meth:`~pathlib.Path.open`
|
||||||
|
* :meth:`~pathlib.Path.owner`
|
||||||
|
* :meth:`~pathlib.Path.read_bytes`
|
||||||
|
* :meth:`~pathlib.Path.read_text`
|
||||||
|
* :meth:`~pathlib.Path.readlink`
|
||||||
|
* :meth:`~pathlib.Path.rename`
|
||||||
|
* :meth:`~pathlib.Path.replace`
|
||||||
|
* :meth:`~pathlib.Path.rmdir`
|
||||||
|
* :meth:`~pathlib.Path.samefile`
|
||||||
|
* :meth:`~pathlib.Path.stat`
|
||||||
|
* :meth:`~pathlib.Path.touch`
|
||||||
|
* :meth:`~pathlib.Path.unlink`
|
||||||
|
* :meth:`~pathlib.Path.write_bytes`
|
||||||
|
* :meth:`~pathlib.Path.write_text`
|
||||||
|
|
||||||
|
Additionally, the following methods return an async iterator yielding
|
||||||
|
:class:`~.Path` objects:
|
||||||
|
|
||||||
|
* :meth:`~pathlib.Path.glob`
|
||||||
|
* :meth:`~pathlib.Path.iterdir`
|
||||||
|
* :meth:`~pathlib.Path.rglob`
|
||||||
|
"""
|
||||||
|
|
||||||
|
__slots__ = "_path", "__weakref__"
|
||||||
|
|
||||||
|
__weakref__: Any
|
||||||
|
|
||||||
|
def __init__(self, *args: str | PathLike[str]) -> None:
|
||||||
|
self._path: Final[pathlib.Path] = pathlib.Path(*args)
|
||||||
|
|
||||||
|
def __fspath__(self) -> str:
|
||||||
|
return self._path.__fspath__()
|
||||||
|
|
||||||
|
def __str__(self) -> str:
|
||||||
|
return self._path.__str__()
|
||||||
|
|
||||||
|
def __repr__(self) -> str:
|
||||||
|
return f"{self.__class__.__name__}({self.as_posix()!r})"
|
||||||
|
|
||||||
|
def __bytes__(self) -> bytes:
|
||||||
|
return self._path.__bytes__()
|
||||||
|
|
||||||
|
def __hash__(self) -> int:
|
||||||
|
return self._path.__hash__()
|
||||||
|
|
||||||
|
def __eq__(self, other: object) -> bool:
|
||||||
|
target = other._path if isinstance(other, Path) else other
|
||||||
|
return self._path.__eq__(target)
|
||||||
|
|
||||||
|
def __lt__(self, other: pathlib.PurePath | Path) -> bool:
|
||||||
|
target = other._path if isinstance(other, Path) else other
|
||||||
|
return self._path.__lt__(target)
|
||||||
|
|
||||||
|
def __le__(self, other: pathlib.PurePath | Path) -> bool:
|
||||||
|
target = other._path if isinstance(other, Path) else other
|
||||||
|
return self._path.__le__(target)
|
||||||
|
|
||||||
|
def __gt__(self, other: pathlib.PurePath | Path) -> bool:
|
||||||
|
target = other._path if isinstance(other, Path) else other
|
||||||
|
return self._path.__gt__(target)
|
||||||
|
|
||||||
|
def __ge__(self, other: pathlib.PurePath | Path) -> bool:
|
||||||
|
target = other._path if isinstance(other, Path) else other
|
||||||
|
return self._path.__ge__(target)
|
||||||
|
|
||||||
|
def __truediv__(self, other: str | PathLike[str]) -> Path:
|
||||||
|
return Path(self._path / other)
|
||||||
|
|
||||||
|
def __rtruediv__(self, other: str | PathLike[str]) -> Path:
|
||||||
|
return Path(other) / self
|
||||||
|
|
||||||
|
@property
|
||||||
|
def parts(self) -> tuple[str, ...]:
|
||||||
|
return self._path.parts
|
||||||
|
|
||||||
|
@property
|
||||||
|
def drive(self) -> str:
|
||||||
|
return self._path.drive
|
||||||
|
|
||||||
|
@property
|
||||||
|
def root(self) -> str:
|
||||||
|
return self._path.root
|
||||||
|
|
||||||
|
@property
|
||||||
|
def anchor(self) -> str:
|
||||||
|
return self._path.anchor
|
||||||
|
|
||||||
|
@property
|
||||||
|
def parents(self) -> Sequence[Path]:
|
||||||
|
return tuple(Path(p) for p in self._path.parents)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def parent(self) -> Path:
|
||||||
|
return Path(self._path.parent)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def name(self) -> str:
|
||||||
|
return self._path.name
|
||||||
|
|
||||||
|
@property
|
||||||
|
def suffix(self) -> str:
|
||||||
|
return self._path.suffix
|
||||||
|
|
||||||
|
@property
|
||||||
|
def suffixes(self) -> list[str]:
|
||||||
|
return self._path.suffixes
|
||||||
|
|
||||||
|
@property
|
||||||
|
def stem(self) -> str:
|
||||||
|
return self._path.stem
|
||||||
|
|
||||||
|
async def absolute(self) -> Path:
|
||||||
|
path = await to_thread.run_sync(self._path.absolute)
|
||||||
|
return Path(path)
|
||||||
|
|
||||||
|
def as_posix(self) -> str:
|
||||||
|
return self._path.as_posix()
|
||||||
|
|
||||||
|
def as_uri(self) -> str:
|
||||||
|
return self._path.as_uri()
|
||||||
|
|
||||||
|
def match(self, path_pattern: str) -> bool:
|
||||||
|
return self._path.match(path_pattern)
|
||||||
|
|
||||||
|
def is_relative_to(self, other: str | PathLike[str]) -> bool:
|
||||||
|
try:
|
||||||
|
self.relative_to(other)
|
||||||
|
return True
|
||||||
|
except ValueError:
|
||||||
|
return False
|
||||||
|
|
||||||
|
async def is_junction(self) -> bool:
|
||||||
|
return await to_thread.run_sync(self._path.is_junction)
|
||||||
|
|
||||||
|
async def chmod(self, mode: int, *, follow_symlinks: bool = True) -> None:
|
||||||
|
func = partial(os.chmod, follow_symlinks=follow_symlinks)
|
||||||
|
return await to_thread.run_sync(func, self._path, mode)
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
async def cwd(cls) -> Path:
|
||||||
|
path = await to_thread.run_sync(pathlib.Path.cwd)
|
||||||
|
return cls(path)
|
||||||
|
|
||||||
|
async def exists(self) -> bool:
|
||||||
|
return await to_thread.run_sync(self._path.exists, abandon_on_cancel=True)
|
||||||
|
|
||||||
|
async def expanduser(self) -> Path:
|
||||||
|
return Path(
|
||||||
|
await to_thread.run_sync(self._path.expanduser, abandon_on_cancel=True)
|
||||||
|
)
|
||||||
|
|
||||||
|
def glob(self, pattern: str) -> AsyncIterator[Path]:
|
||||||
|
gen = self._path.glob(pattern)
|
||||||
|
return _PathIterator(gen)
|
||||||
|
|
||||||
|
async def group(self) -> str:
|
||||||
|
return await to_thread.run_sync(self._path.group, abandon_on_cancel=True)
|
||||||
|
|
||||||
|
async def hardlink_to(
|
||||||
|
self, target: str | bytes | PathLike[str] | PathLike[bytes]
|
||||||
|
) -> None:
|
||||||
|
if isinstance(target, Path):
|
||||||
|
target = target._path
|
||||||
|
|
||||||
|
await to_thread.run_sync(os.link, target, self)
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
async def home(cls) -> Path:
|
||||||
|
home_path = await to_thread.run_sync(pathlib.Path.home)
|
||||||
|
return cls(home_path)
|
||||||
|
|
||||||
|
def is_absolute(self) -> bool:
|
||||||
|
return self._path.is_absolute()
|
||||||
|
|
||||||
|
async def is_block_device(self) -> bool:
|
||||||
|
return await to_thread.run_sync(
|
||||||
|
self._path.is_block_device, abandon_on_cancel=True
|
||||||
|
)
|
||||||
|
|
||||||
|
async def is_char_device(self) -> bool:
|
||||||
|
return await to_thread.run_sync(
|
||||||
|
self._path.is_char_device, abandon_on_cancel=True
|
||||||
|
)
|
||||||
|
|
||||||
|
async def is_dir(self) -> bool:
|
||||||
|
return await to_thread.run_sync(self._path.is_dir, abandon_on_cancel=True)
|
||||||
|
|
||||||
|
async def is_fifo(self) -> bool:
|
||||||
|
return await to_thread.run_sync(self._path.is_fifo, abandon_on_cancel=True)
|
||||||
|
|
||||||
|
async def is_file(self) -> bool:
|
||||||
|
return await to_thread.run_sync(self._path.is_file, abandon_on_cancel=True)
|
||||||
|
|
||||||
|
async def is_mount(self) -> bool:
|
||||||
|
return await to_thread.run_sync(
|
||||||
|
os.path.ismount, self._path, abandon_on_cancel=True
|
||||||
|
)
|
||||||
|
|
||||||
|
def is_reserved(self) -> bool:
|
||||||
|
return self._path.is_reserved()
|
||||||
|
|
||||||
|
async def is_socket(self) -> bool:
|
||||||
|
return await to_thread.run_sync(self._path.is_socket, abandon_on_cancel=True)
|
||||||
|
|
||||||
|
async def is_symlink(self) -> bool:
|
||||||
|
return await to_thread.run_sync(self._path.is_symlink, abandon_on_cancel=True)
|
||||||
|
|
||||||
|
def iterdir(self) -> AsyncIterator[Path]:
|
||||||
|
gen = self._path.iterdir()
|
||||||
|
return _PathIterator(gen)
|
||||||
|
|
||||||
|
def joinpath(self, *args: str | PathLike[str]) -> Path:
|
||||||
|
return Path(self._path.joinpath(*args))
|
||||||
|
|
||||||
|
async def lchmod(self, mode: int) -> None:
|
||||||
|
await to_thread.run_sync(self._path.lchmod, mode)
|
||||||
|
|
||||||
|
async def lstat(self) -> os.stat_result:
|
||||||
|
return await to_thread.run_sync(self._path.lstat, abandon_on_cancel=True)
|
||||||
|
|
||||||
|
async def mkdir(
|
||||||
|
self, mode: int = 0o777, parents: bool = False, exist_ok: bool = False
|
||||||
|
) -> None:
|
||||||
|
await to_thread.run_sync(self._path.mkdir, mode, parents, exist_ok)
|
||||||
|
|
||||||
|
@overload
|
||||||
|
async def open(
|
||||||
|
self,
|
||||||
|
mode: OpenBinaryMode,
|
||||||
|
buffering: int = ...,
|
||||||
|
encoding: str | None = ...,
|
||||||
|
errors: str | None = ...,
|
||||||
|
newline: str | None = ...,
|
||||||
|
) -> AsyncFile[bytes]: ...
|
||||||
|
|
||||||
|
@overload
|
||||||
|
async def open(
|
||||||
|
self,
|
||||||
|
mode: OpenTextMode = ...,
|
||||||
|
buffering: int = ...,
|
||||||
|
encoding: str | None = ...,
|
||||||
|
errors: str | None = ...,
|
||||||
|
newline: str | None = ...,
|
||||||
|
) -> AsyncFile[str]: ...
|
||||||
|
|
||||||
|
async def open(
|
||||||
|
self,
|
||||||
|
mode: str = "r",
|
||||||
|
buffering: int = -1,
|
||||||
|
encoding: str | None = None,
|
||||||
|
errors: str | None = None,
|
||||||
|
newline: str | None = None,
|
||||||
|
) -> AsyncFile[Any]:
|
||||||
|
fp = await to_thread.run_sync(
|
||||||
|
self._path.open, mode, buffering, encoding, errors, newline
|
||||||
|
)
|
||||||
|
return AsyncFile(fp)
|
||||||
|
|
||||||
|
async def owner(self) -> str:
|
||||||
|
return await to_thread.run_sync(self._path.owner, abandon_on_cancel=True)
|
||||||
|
|
||||||
|
async def read_bytes(self) -> bytes:
|
||||||
|
return await to_thread.run_sync(self._path.read_bytes)
|
||||||
|
|
||||||
|
async def read_text(
|
||||||
|
self, encoding: str | None = None, errors: str | None = None
|
||||||
|
) -> str:
|
||||||
|
return await to_thread.run_sync(self._path.read_text, encoding, errors)
|
||||||
|
|
||||||
|
if sys.version_info >= (3, 12):
|
||||||
|
|
||||||
|
def relative_to(
|
||||||
|
self, *other: str | PathLike[str], walk_up: bool = False
|
||||||
|
) -> Path:
|
||||||
|
return Path(self._path.relative_to(*other, walk_up=walk_up))
|
||||||
|
|
||||||
|
else:
|
||||||
|
|
||||||
|
def relative_to(self, *other: str | PathLike[str]) -> Path:
|
||||||
|
return Path(self._path.relative_to(*other))
|
||||||
|
|
||||||
|
async def readlink(self) -> Path:
|
||||||
|
target = await to_thread.run_sync(os.readlink, self._path)
|
||||||
|
return Path(target)
|
||||||
|
|
||||||
|
async def rename(self, target: str | pathlib.PurePath | Path) -> Path:
|
||||||
|
if isinstance(target, Path):
|
||||||
|
target = target._path
|
||||||
|
|
||||||
|
await to_thread.run_sync(self._path.rename, target)
|
||||||
|
return Path(target)
|
||||||
|
|
||||||
|
async def replace(self, target: str | pathlib.PurePath | Path) -> Path:
|
||||||
|
if isinstance(target, Path):
|
||||||
|
target = target._path
|
||||||
|
|
||||||
|
await to_thread.run_sync(self._path.replace, target)
|
||||||
|
return Path(target)
|
||||||
|
|
||||||
|
async def resolve(self, strict: bool = False) -> Path:
|
||||||
|
func = partial(self._path.resolve, strict=strict)
|
||||||
|
return Path(await to_thread.run_sync(func, abandon_on_cancel=True))
|
||||||
|
|
||||||
|
def rglob(self, pattern: str) -> AsyncIterator[Path]:
|
||||||
|
gen = self._path.rglob(pattern)
|
||||||
|
return _PathIterator(gen)
|
||||||
|
|
||||||
|
async def rmdir(self) -> None:
|
||||||
|
await to_thread.run_sync(self._path.rmdir)
|
||||||
|
|
||||||
|
async def samefile(self, other_path: str | PathLike[str]) -> bool:
|
||||||
|
if isinstance(other_path, Path):
|
||||||
|
other_path = other_path._path
|
||||||
|
|
||||||
|
return await to_thread.run_sync(
|
||||||
|
self._path.samefile, other_path, abandon_on_cancel=True
|
||||||
|
)
|
||||||
|
|
||||||
|
async def stat(self, *, follow_symlinks: bool = True) -> os.stat_result:
|
||||||
|
func = partial(os.stat, follow_symlinks=follow_symlinks)
|
||||||
|
return await to_thread.run_sync(func, self._path, abandon_on_cancel=True)
|
||||||
|
|
||||||
|
async def symlink_to(
|
||||||
|
self,
|
||||||
|
target: str | bytes | PathLike[str] | PathLike[bytes],
|
||||||
|
target_is_directory: bool = False,
|
||||||
|
) -> None:
|
||||||
|
if isinstance(target, Path):
|
||||||
|
target = target._path
|
||||||
|
|
||||||
|
await to_thread.run_sync(self._path.symlink_to, target, target_is_directory)
|
||||||
|
|
||||||
|
async def touch(self, mode: int = 0o666, exist_ok: bool = True) -> None:
|
||||||
|
await to_thread.run_sync(self._path.touch, mode, exist_ok)
|
||||||
|
|
||||||
|
async def unlink(self, missing_ok: bool = False) -> None:
|
||||||
|
try:
|
||||||
|
await to_thread.run_sync(self._path.unlink)
|
||||||
|
except FileNotFoundError:
|
||||||
|
if not missing_ok:
|
||||||
|
raise
|
||||||
|
|
||||||
|
if sys.version_info >= (3, 12):
|
||||||
|
|
||||||
|
async def walk(
|
||||||
|
self,
|
||||||
|
top_down: bool = True,
|
||||||
|
on_error: Callable[[OSError], object] | None = None,
|
||||||
|
follow_symlinks: bool = False,
|
||||||
|
) -> AsyncIterator[tuple[Path, list[str], list[str]]]:
|
||||||
|
def get_next_value() -> tuple[pathlib.Path, list[str], list[str]] | None:
|
||||||
|
try:
|
||||||
|
return next(gen)
|
||||||
|
except StopIteration:
|
||||||
|
return None
|
||||||
|
|
||||||
|
gen = self._path.walk(top_down, on_error, follow_symlinks)
|
||||||
|
while True:
|
||||||
|
value = await to_thread.run_sync(get_next_value)
|
||||||
|
if value is None:
|
||||||
|
return
|
||||||
|
|
||||||
|
root, dirs, paths = value
|
||||||
|
yield Path(root), dirs, paths
|
||||||
|
|
||||||
|
def with_name(self, name: str) -> Path:
|
||||||
|
return Path(self._path.with_name(name))
|
||||||
|
|
||||||
|
def with_stem(self, stem: str) -> Path:
|
||||||
|
return Path(self._path.with_name(stem + self._path.suffix))
|
||||||
|
|
||||||
|
def with_suffix(self, suffix: str) -> Path:
|
||||||
|
return Path(self._path.with_suffix(suffix))
|
||||||
|
|
||||||
|
def with_segments(self, *pathsegments: str | PathLike[str]) -> Path:
|
||||||
|
return Path(*pathsegments)
|
||||||
|
|
||||||
|
async def write_bytes(self, data: bytes) -> int:
|
||||||
|
return await to_thread.run_sync(self._path.write_bytes, data)
|
||||||
|
|
||||||
|
async def write_text(
|
||||||
|
self,
|
||||||
|
data: str,
|
||||||
|
encoding: str | None = None,
|
||||||
|
errors: str | None = None,
|
||||||
|
newline: str | None = None,
|
||||||
|
) -> int:
|
||||||
|
# Path.write_text() does not support the "newline" parameter before Python 3.10
|
||||||
|
def sync_write_text() -> int:
|
||||||
|
with self._path.open(
|
||||||
|
"w", encoding=encoding, errors=errors, newline=newline
|
||||||
|
) as fp:
|
||||||
|
return fp.write(data)
|
||||||
|
|
||||||
|
return await to_thread.run_sync(sync_write_text)
|
||||||
|
|
||||||
|
|
||||||
|
PathLike.register(Path)
|
|
@ -0,0 +1,18 @@
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
from ..abc import AsyncResource
|
||||||
|
from ._tasks import CancelScope
|
||||||
|
|
||||||
|
|
||||||
|
async def aclose_forcefully(resource: AsyncResource) -> None:
|
||||||
|
"""
|
||||||
|
Close an asynchronous resource in a cancelled scope.
|
||||||
|
|
||||||
|
Doing this closes the resource without waiting on anything.
|
||||||
|
|
||||||
|
:param resource: the resource to close
|
||||||
|
|
||||||
|
"""
|
||||||
|
with CancelScope() as scope:
|
||||||
|
scope.cancel()
|
||||||
|
await resource.aclose()
|
25
telecli/lib/python3.11/site-packages/anyio/_core/_signals.py
Normal file
25
telecli/lib/python3.11/site-packages/anyio/_core/_signals.py
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
from collections.abc import AsyncIterator
|
||||||
|
from signal import Signals
|
||||||
|
from typing import ContextManager
|
||||||
|
|
||||||
|
from ._eventloop import get_async_backend
|
||||||
|
|
||||||
|
|
||||||
|
def open_signal_receiver(*signals: Signals) -> ContextManager[AsyncIterator[Signals]]:
|
||||||
|
"""
|
||||||
|
Start receiving operating system signals.
|
||||||
|
|
||||||
|
:param signals: signals to receive (e.g. ``signal.SIGINT``)
|
||||||
|
:return: an asynchronous context manager for an asynchronous iterator which yields
|
||||||
|
signal numbers
|
||||||
|
|
||||||
|
.. warning:: Windows does not support signals natively so it is best to avoid
|
||||||
|
relying on this in cross-platform applications.
|
||||||
|
|
||||||
|
.. warning:: On asyncio, this permanently replaces any previous signal handler for
|
||||||
|
the given signals, as set via :meth:`~asyncio.loop.add_signal_handler`.
|
||||||
|
|
||||||
|
"""
|
||||||
|
return get_async_backend().open_signal_receiver(*signals)
|
711
telecli/lib/python3.11/site-packages/anyio/_core/_sockets.py
Normal file
711
telecli/lib/python3.11/site-packages/anyio/_core/_sockets.py
Normal file
|
@ -0,0 +1,711 @@
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import errno
|
||||||
|
import os
|
||||||
|
import socket
|
||||||
|
import ssl
|
||||||
|
import stat
|
||||||
|
import sys
|
||||||
|
from collections.abc import Awaitable
|
||||||
|
from ipaddress import IPv6Address, ip_address
|
||||||
|
from os import PathLike, chmod
|
||||||
|
from socket import AddressFamily, SocketKind
|
||||||
|
from typing import Any, Literal, cast, overload
|
||||||
|
|
||||||
|
from .. import to_thread
|
||||||
|
from ..abc import (
|
||||||
|
ConnectedUDPSocket,
|
||||||
|
ConnectedUNIXDatagramSocket,
|
||||||
|
IPAddressType,
|
||||||
|
IPSockAddrType,
|
||||||
|
SocketListener,
|
||||||
|
SocketStream,
|
||||||
|
UDPSocket,
|
||||||
|
UNIXDatagramSocket,
|
||||||
|
UNIXSocketStream,
|
||||||
|
)
|
||||||
|
from ..streams.stapled import MultiListener
|
||||||
|
from ..streams.tls import TLSStream
|
||||||
|
from ._eventloop import get_async_backend
|
||||||
|
from ._resources import aclose_forcefully
|
||||||
|
from ._synchronization import Event
|
||||||
|
from ._tasks import create_task_group, move_on_after
|
||||||
|
|
||||||
|
if sys.version_info < (3, 11):
|
||||||
|
from exceptiongroup import ExceptionGroup
|
||||||
|
|
||||||
|
IPPROTO_IPV6 = getattr(socket, "IPPROTO_IPV6", 41) # https://bugs.python.org/issue29515
|
||||||
|
|
||||||
|
AnyIPAddressFamily = Literal[
|
||||||
|
AddressFamily.AF_UNSPEC, AddressFamily.AF_INET, AddressFamily.AF_INET6
|
||||||
|
]
|
||||||
|
IPAddressFamily = Literal[AddressFamily.AF_INET, AddressFamily.AF_INET6]
|
||||||
|
|
||||||
|
|
||||||
|
# tls_hostname given
|
||||||
|
@overload
|
||||||
|
async def connect_tcp(
|
||||||
|
remote_host: IPAddressType,
|
||||||
|
remote_port: int,
|
||||||
|
*,
|
||||||
|
local_host: IPAddressType | None = ...,
|
||||||
|
ssl_context: ssl.SSLContext | None = ...,
|
||||||
|
tls_standard_compatible: bool = ...,
|
||||||
|
tls_hostname: str,
|
||||||
|
happy_eyeballs_delay: float = ...,
|
||||||
|
) -> TLSStream: ...
|
||||||
|
|
||||||
|
|
||||||
|
# ssl_context given
|
||||||
|
@overload
|
||||||
|
async def connect_tcp(
|
||||||
|
remote_host: IPAddressType,
|
||||||
|
remote_port: int,
|
||||||
|
*,
|
||||||
|
local_host: IPAddressType | None = ...,
|
||||||
|
ssl_context: ssl.SSLContext,
|
||||||
|
tls_standard_compatible: bool = ...,
|
||||||
|
tls_hostname: str | None = ...,
|
||||||
|
happy_eyeballs_delay: float = ...,
|
||||||
|
) -> TLSStream: ...
|
||||||
|
|
||||||
|
|
||||||
|
# tls=True
|
||||||
|
@overload
|
||||||
|
async def connect_tcp(
|
||||||
|
remote_host: IPAddressType,
|
||||||
|
remote_port: int,
|
||||||
|
*,
|
||||||
|
local_host: IPAddressType | None = ...,
|
||||||
|
tls: Literal[True],
|
||||||
|
ssl_context: ssl.SSLContext | None = ...,
|
||||||
|
tls_standard_compatible: bool = ...,
|
||||||
|
tls_hostname: str | None = ...,
|
||||||
|
happy_eyeballs_delay: float = ...,
|
||||||
|
) -> TLSStream: ...
|
||||||
|
|
||||||
|
|
||||||
|
# tls=False
|
||||||
|
@overload
|
||||||
|
async def connect_tcp(
|
||||||
|
remote_host: IPAddressType,
|
||||||
|
remote_port: int,
|
||||||
|
*,
|
||||||
|
local_host: IPAddressType | None = ...,
|
||||||
|
tls: Literal[False],
|
||||||
|
ssl_context: ssl.SSLContext | None = ...,
|
||||||
|
tls_standard_compatible: bool = ...,
|
||||||
|
tls_hostname: str | None = ...,
|
||||||
|
happy_eyeballs_delay: float = ...,
|
||||||
|
) -> SocketStream: ...
|
||||||
|
|
||||||
|
|
||||||
|
# No TLS arguments
|
||||||
|
@overload
|
||||||
|
async def connect_tcp(
|
||||||
|
remote_host: IPAddressType,
|
||||||
|
remote_port: int,
|
||||||
|
*,
|
||||||
|
local_host: IPAddressType | None = ...,
|
||||||
|
happy_eyeballs_delay: float = ...,
|
||||||
|
) -> SocketStream: ...
|
||||||
|
|
||||||
|
|
||||||
|
async def connect_tcp(
|
||||||
|
remote_host: IPAddressType,
|
||||||
|
remote_port: int,
|
||||||
|
*,
|
||||||
|
local_host: IPAddressType | None = None,
|
||||||
|
tls: bool = False,
|
||||||
|
ssl_context: ssl.SSLContext | None = None,
|
||||||
|
tls_standard_compatible: bool = True,
|
||||||
|
tls_hostname: str | None = None,
|
||||||
|
happy_eyeballs_delay: float = 0.25,
|
||||||
|
) -> SocketStream | TLSStream:
|
||||||
|
"""
|
||||||
|
Connect to a host using the TCP protocol.
|
||||||
|
|
||||||
|
This function implements the stateless version of the Happy Eyeballs algorithm (RFC
|
||||||
|
6555). If ``remote_host`` is a host name that resolves to multiple IP addresses,
|
||||||
|
each one is tried until one connection attempt succeeds. If the first attempt does
|
||||||
|
not connected within 250 milliseconds, a second attempt is started using the next
|
||||||
|
address in the list, and so on. On IPv6 enabled systems, an IPv6 address (if
|
||||||
|
available) is tried first.
|
||||||
|
|
||||||
|
When the connection has been established, a TLS handshake will be done if either
|
||||||
|
``ssl_context`` or ``tls_hostname`` is not ``None``, or if ``tls`` is ``True``.
|
||||||
|
|
||||||
|
:param remote_host: the IP address or host name to connect to
|
||||||
|
:param remote_port: port on the target host to connect to
|
||||||
|
:param local_host: the interface address or name to bind the socket to before
|
||||||
|
connecting
|
||||||
|
:param tls: ``True`` to do a TLS handshake with the connected stream and return a
|
||||||
|
:class:`~anyio.streams.tls.TLSStream` instead
|
||||||
|
:param ssl_context: the SSL context object to use (if omitted, a default context is
|
||||||
|
created)
|
||||||
|
:param tls_standard_compatible: If ``True``, performs the TLS shutdown handshake
|
||||||
|
before closing the stream and requires that the server does this as well.
|
||||||
|
Otherwise, :exc:`~ssl.SSLEOFError` may be raised during reads from the stream.
|
||||||
|
Some protocols, such as HTTP, require this option to be ``False``.
|
||||||
|
See :meth:`~ssl.SSLContext.wrap_socket` for details.
|
||||||
|
:param tls_hostname: host name to check the server certificate against (defaults to
|
||||||
|
the value of ``remote_host``)
|
||||||
|
:param happy_eyeballs_delay: delay (in seconds) before starting the next connection
|
||||||
|
attempt
|
||||||
|
:return: a socket stream object if no TLS handshake was done, otherwise a TLS stream
|
||||||
|
:raises OSError: if the connection attempt fails
|
||||||
|
|
||||||
|
"""
|
||||||
|
# Placed here due to https://github.com/python/mypy/issues/7057
|
||||||
|
connected_stream: SocketStream | None = None
|
||||||
|
|
||||||
|
async def try_connect(remote_host: str, event: Event) -> None:
|
||||||
|
nonlocal connected_stream
|
||||||
|
try:
|
||||||
|
stream = await asynclib.connect_tcp(remote_host, remote_port, local_address)
|
||||||
|
except OSError as exc:
|
||||||
|
oserrors.append(exc)
|
||||||
|
return
|
||||||
|
else:
|
||||||
|
if connected_stream is None:
|
||||||
|
connected_stream = stream
|
||||||
|
tg.cancel_scope.cancel()
|
||||||
|
else:
|
||||||
|
await stream.aclose()
|
||||||
|
finally:
|
||||||
|
event.set()
|
||||||
|
|
||||||
|
asynclib = get_async_backend()
|
||||||
|
local_address: IPSockAddrType | None = None
|
||||||
|
family = socket.AF_UNSPEC
|
||||||
|
if local_host:
|
||||||
|
gai_res = await getaddrinfo(str(local_host), None)
|
||||||
|
family, *_, local_address = gai_res[0]
|
||||||
|
|
||||||
|
target_host = str(remote_host)
|
||||||
|
try:
|
||||||
|
addr_obj = ip_address(remote_host)
|
||||||
|
except ValueError:
|
||||||
|
# getaddrinfo() will raise an exception if name resolution fails
|
||||||
|
gai_res = await getaddrinfo(
|
||||||
|
target_host, remote_port, family=family, type=socket.SOCK_STREAM
|
||||||
|
)
|
||||||
|
|
||||||
|
# Organize the list so that the first address is an IPv6 address (if available)
|
||||||
|
# and the second one is an IPv4 addresses. The rest can be in whatever order.
|
||||||
|
v6_found = v4_found = False
|
||||||
|
target_addrs: list[tuple[socket.AddressFamily, str]] = []
|
||||||
|
for af, *rest, sa in gai_res:
|
||||||
|
if af == socket.AF_INET6 and not v6_found:
|
||||||
|
v6_found = True
|
||||||
|
target_addrs.insert(0, (af, sa[0]))
|
||||||
|
elif af == socket.AF_INET and not v4_found and v6_found:
|
||||||
|
v4_found = True
|
||||||
|
target_addrs.insert(1, (af, sa[0]))
|
||||||
|
else:
|
||||||
|
target_addrs.append((af, sa[0]))
|
||||||
|
else:
|
||||||
|
if isinstance(addr_obj, IPv6Address):
|
||||||
|
target_addrs = [(socket.AF_INET6, addr_obj.compressed)]
|
||||||
|
else:
|
||||||
|
target_addrs = [(socket.AF_INET, addr_obj.compressed)]
|
||||||
|
|
||||||
|
oserrors: list[OSError] = []
|
||||||
|
async with create_task_group() as tg:
|
||||||
|
for i, (af, addr) in enumerate(target_addrs):
|
||||||
|
event = Event()
|
||||||
|
tg.start_soon(try_connect, addr, event)
|
||||||
|
with move_on_after(happy_eyeballs_delay):
|
||||||
|
await event.wait()
|
||||||
|
|
||||||
|
if connected_stream is None:
|
||||||
|
cause = (
|
||||||
|
oserrors[0]
|
||||||
|
if len(oserrors) == 1
|
||||||
|
else ExceptionGroup("multiple connection attempts failed", oserrors)
|
||||||
|
)
|
||||||
|
raise OSError("All connection attempts failed") from cause
|
||||||
|
|
||||||
|
if tls or tls_hostname or ssl_context:
|
||||||
|
try:
|
||||||
|
return await TLSStream.wrap(
|
||||||
|
connected_stream,
|
||||||
|
server_side=False,
|
||||||
|
hostname=tls_hostname or str(remote_host),
|
||||||
|
ssl_context=ssl_context,
|
||||||
|
standard_compatible=tls_standard_compatible,
|
||||||
|
)
|
||||||
|
except BaseException:
|
||||||
|
await aclose_forcefully(connected_stream)
|
||||||
|
raise
|
||||||
|
|
||||||
|
return connected_stream
|
||||||
|
|
||||||
|
|
||||||
|
async def connect_unix(path: str | bytes | PathLike[Any]) -> UNIXSocketStream:
|
||||||
|
"""
|
||||||
|
Connect to the given UNIX socket.
|
||||||
|
|
||||||
|
Not available on Windows.
|
||||||
|
|
||||||
|
:param path: path to the socket
|
||||||
|
:return: a socket stream object
|
||||||
|
|
||||||
|
"""
|
||||||
|
path = os.fspath(path)
|
||||||
|
return await get_async_backend().connect_unix(path)
|
||||||
|
|
||||||
|
|
||||||
|
async def create_tcp_listener(
|
||||||
|
*,
|
||||||
|
local_host: IPAddressType | None = None,
|
||||||
|
local_port: int = 0,
|
||||||
|
family: AnyIPAddressFamily = socket.AddressFamily.AF_UNSPEC,
|
||||||
|
backlog: int = 65536,
|
||||||
|
reuse_port: bool = False,
|
||||||
|
) -> MultiListener[SocketStream]:
|
||||||
|
"""
|
||||||
|
Create a TCP socket listener.
|
||||||
|
|
||||||
|
:param local_port: port number to listen on
|
||||||
|
:param local_host: IP address of the interface to listen on. If omitted, listen on
|
||||||
|
all IPv4 and IPv6 interfaces. To listen on all interfaces on a specific address
|
||||||
|
family, use ``0.0.0.0`` for IPv4 or ``::`` for IPv6.
|
||||||
|
:param family: address family (used if ``local_host`` was omitted)
|
||||||
|
:param backlog: maximum number of queued incoming connections (up to a maximum of
|
||||||
|
2**16, or 65536)
|
||||||
|
:param reuse_port: ``True`` to allow multiple sockets to bind to the same
|
||||||
|
address/port (not supported on Windows)
|
||||||
|
:return: a list of listener objects
|
||||||
|
|
||||||
|
"""
|
||||||
|
asynclib = get_async_backend()
|
||||||
|
backlog = min(backlog, 65536)
|
||||||
|
local_host = str(local_host) if local_host is not None else None
|
||||||
|
gai_res = await getaddrinfo(
|
||||||
|
local_host,
|
||||||
|
local_port,
|
||||||
|
family=family,
|
||||||
|
type=socket.SocketKind.SOCK_STREAM if sys.platform == "win32" else 0,
|
||||||
|
flags=socket.AI_PASSIVE | socket.AI_ADDRCONFIG,
|
||||||
|
)
|
||||||
|
listeners: list[SocketListener] = []
|
||||||
|
try:
|
||||||
|
# The set() is here to work around a glibc bug:
|
||||||
|
# https://sourceware.org/bugzilla/show_bug.cgi?id=14969
|
||||||
|
sockaddr: tuple[str, int] | tuple[str, int, int, int]
|
||||||
|
for fam, kind, *_, sockaddr in sorted(set(gai_res)):
|
||||||
|
# Workaround for an uvloop bug where we don't get the correct scope ID for
|
||||||
|
# IPv6 link-local addresses when passing type=socket.SOCK_STREAM to
|
||||||
|
# getaddrinfo(): https://github.com/MagicStack/uvloop/issues/539
|
||||||
|
if sys.platform != "win32" and kind is not SocketKind.SOCK_STREAM:
|
||||||
|
continue
|
||||||
|
|
||||||
|
raw_socket = socket.socket(fam)
|
||||||
|
raw_socket.setblocking(False)
|
||||||
|
|
||||||
|
# For Windows, enable exclusive address use. For others, enable address
|
||||||
|
# reuse.
|
||||||
|
if sys.platform == "win32":
|
||||||
|
raw_socket.setsockopt(socket.SOL_SOCKET, socket.SO_EXCLUSIVEADDRUSE, 1)
|
||||||
|
else:
|
||||||
|
raw_socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
|
||||||
|
|
||||||
|
if reuse_port:
|
||||||
|
raw_socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEPORT, 1)
|
||||||
|
|
||||||
|
# If only IPv6 was requested, disable dual stack operation
|
||||||
|
if fam == socket.AF_INET6:
|
||||||
|
raw_socket.setsockopt(IPPROTO_IPV6, socket.IPV6_V6ONLY, 1)
|
||||||
|
|
||||||
|
# Workaround for #554
|
||||||
|
if "%" in sockaddr[0]:
|
||||||
|
addr, scope_id = sockaddr[0].split("%", 1)
|
||||||
|
sockaddr = (addr, sockaddr[1], 0, int(scope_id))
|
||||||
|
|
||||||
|
raw_socket.bind(sockaddr)
|
||||||
|
raw_socket.listen(backlog)
|
||||||
|
listener = asynclib.create_tcp_listener(raw_socket)
|
||||||
|
listeners.append(listener)
|
||||||
|
except BaseException:
|
||||||
|
for listener in listeners:
|
||||||
|
await listener.aclose()
|
||||||
|
|
||||||
|
raise
|
||||||
|
|
||||||
|
return MultiListener(listeners)
|
||||||
|
|
||||||
|
|
||||||
|
async def create_unix_listener(
|
||||||
|
path: str | bytes | PathLike[Any],
|
||||||
|
*,
|
||||||
|
mode: int | None = None,
|
||||||
|
backlog: int = 65536,
|
||||||
|
) -> SocketListener:
|
||||||
|
"""
|
||||||
|
Create a UNIX socket listener.
|
||||||
|
|
||||||
|
Not available on Windows.
|
||||||
|
|
||||||
|
:param path: path of the socket
|
||||||
|
:param mode: permissions to set on the socket
|
||||||
|
:param backlog: maximum number of queued incoming connections (up to a maximum of
|
||||||
|
2**16, or 65536)
|
||||||
|
:return: a listener object
|
||||||
|
|
||||||
|
.. versionchanged:: 3.0
|
||||||
|
If a socket already exists on the file system in the given path, it will be
|
||||||
|
removed first.
|
||||||
|
|
||||||
|
"""
|
||||||
|
backlog = min(backlog, 65536)
|
||||||
|
raw_socket = await setup_unix_local_socket(path, mode, socket.SOCK_STREAM)
|
||||||
|
try:
|
||||||
|
raw_socket.listen(backlog)
|
||||||
|
return get_async_backend().create_unix_listener(raw_socket)
|
||||||
|
except BaseException:
|
||||||
|
raw_socket.close()
|
||||||
|
raise
|
||||||
|
|
||||||
|
|
||||||
|
async def create_udp_socket(
|
||||||
|
family: AnyIPAddressFamily = AddressFamily.AF_UNSPEC,
|
||||||
|
*,
|
||||||
|
local_host: IPAddressType | None = None,
|
||||||
|
local_port: int = 0,
|
||||||
|
reuse_port: bool = False,
|
||||||
|
) -> UDPSocket:
|
||||||
|
"""
|
||||||
|
Create a UDP socket.
|
||||||
|
|
||||||
|
If ``port`` has been given, the socket will be bound to this port on the local
|
||||||
|
machine, making this socket suitable for providing UDP based services.
|
||||||
|
|
||||||
|
:param family: address family (``AF_INET`` or ``AF_INET6``) – automatically
|
||||||
|
determined from ``local_host`` if omitted
|
||||||
|
:param local_host: IP address or host name of the local interface to bind to
|
||||||
|
:param local_port: local port to bind to
|
||||||
|
:param reuse_port: ``True`` to allow multiple sockets to bind to the same
|
||||||
|
address/port (not supported on Windows)
|
||||||
|
:return: a UDP socket
|
||||||
|
|
||||||
|
"""
|
||||||
|
if family is AddressFamily.AF_UNSPEC and not local_host:
|
||||||
|
raise ValueError('Either "family" or "local_host" must be given')
|
||||||
|
|
||||||
|
if local_host:
|
||||||
|
gai_res = await getaddrinfo(
|
||||||
|
str(local_host),
|
||||||
|
local_port,
|
||||||
|
family=family,
|
||||||
|
type=socket.SOCK_DGRAM,
|
||||||
|
flags=socket.AI_PASSIVE | socket.AI_ADDRCONFIG,
|
||||||
|
)
|
||||||
|
family = cast(AnyIPAddressFamily, gai_res[0][0])
|
||||||
|
local_address = gai_res[0][-1]
|
||||||
|
elif family is AddressFamily.AF_INET6:
|
||||||
|
local_address = ("::", 0)
|
||||||
|
else:
|
||||||
|
local_address = ("0.0.0.0", 0)
|
||||||
|
|
||||||
|
sock = await get_async_backend().create_udp_socket(
|
||||||
|
family, local_address, None, reuse_port
|
||||||
|
)
|
||||||
|
return cast(UDPSocket, sock)
|
||||||
|
|
||||||
|
|
||||||
|
async def create_connected_udp_socket(
|
||||||
|
remote_host: IPAddressType,
|
||||||
|
remote_port: int,
|
||||||
|
*,
|
||||||
|
family: AnyIPAddressFamily = AddressFamily.AF_UNSPEC,
|
||||||
|
local_host: IPAddressType | None = None,
|
||||||
|
local_port: int = 0,
|
||||||
|
reuse_port: bool = False,
|
||||||
|
) -> ConnectedUDPSocket:
|
||||||
|
"""
|
||||||
|
Create a connected UDP socket.
|
||||||
|
|
||||||
|
Connected UDP sockets can only communicate with the specified remote host/port, an
|
||||||
|
any packets sent from other sources are dropped.
|
||||||
|
|
||||||
|
:param remote_host: remote host to set as the default target
|
||||||
|
:param remote_port: port on the remote host to set as the default target
|
||||||
|
:param family: address family (``AF_INET`` or ``AF_INET6``) – automatically
|
||||||
|
determined from ``local_host`` or ``remote_host`` if omitted
|
||||||
|
:param local_host: IP address or host name of the local interface to bind to
|
||||||
|
:param local_port: local port to bind to
|
||||||
|
:param reuse_port: ``True`` to allow multiple sockets to bind to the same
|
||||||
|
address/port (not supported on Windows)
|
||||||
|
:return: a connected UDP socket
|
||||||
|
|
||||||
|
"""
|
||||||
|
local_address = None
|
||||||
|
if local_host:
|
||||||
|
gai_res = await getaddrinfo(
|
||||||
|
str(local_host),
|
||||||
|
local_port,
|
||||||
|
family=family,
|
||||||
|
type=socket.SOCK_DGRAM,
|
||||||
|
flags=socket.AI_PASSIVE | socket.AI_ADDRCONFIG,
|
||||||
|
)
|
||||||
|
family = cast(AnyIPAddressFamily, gai_res[0][0])
|
||||||
|
local_address = gai_res[0][-1]
|
||||||
|
|
||||||
|
gai_res = await getaddrinfo(
|
||||||
|
str(remote_host), remote_port, family=family, type=socket.SOCK_DGRAM
|
||||||
|
)
|
||||||
|
family = cast(AnyIPAddressFamily, gai_res[0][0])
|
||||||
|
remote_address = gai_res[0][-1]
|
||||||
|
|
||||||
|
sock = await get_async_backend().create_udp_socket(
|
||||||
|
family, local_address, remote_address, reuse_port
|
||||||
|
)
|
||||||
|
return cast(ConnectedUDPSocket, sock)
|
||||||
|
|
||||||
|
|
||||||
|
async def create_unix_datagram_socket(
|
||||||
|
*,
|
||||||
|
local_path: None | str | bytes | PathLike[Any] = None,
|
||||||
|
local_mode: int | None = None,
|
||||||
|
) -> UNIXDatagramSocket:
|
||||||
|
"""
|
||||||
|
Create a UNIX datagram socket.
|
||||||
|
|
||||||
|
Not available on Windows.
|
||||||
|
|
||||||
|
If ``local_path`` has been given, the socket will be bound to this path, making this
|
||||||
|
socket suitable for receiving datagrams from other processes. Other processes can
|
||||||
|
send datagrams to this socket only if ``local_path`` is set.
|
||||||
|
|
||||||
|
If a socket already exists on the file system in the ``local_path``, it will be
|
||||||
|
removed first.
|
||||||
|
|
||||||
|
:param local_path: the path on which to bind to
|
||||||
|
:param local_mode: permissions to set on the local socket
|
||||||
|
:return: a UNIX datagram socket
|
||||||
|
|
||||||
|
"""
|
||||||
|
raw_socket = await setup_unix_local_socket(
|
||||||
|
local_path, local_mode, socket.SOCK_DGRAM
|
||||||
|
)
|
||||||
|
return await get_async_backend().create_unix_datagram_socket(raw_socket, None)
|
||||||
|
|
||||||
|
|
||||||
|
async def create_connected_unix_datagram_socket(
|
||||||
|
remote_path: str | bytes | PathLike[Any],
|
||||||
|
*,
|
||||||
|
local_path: None | str | bytes | PathLike[Any] = None,
|
||||||
|
local_mode: int | None = None,
|
||||||
|
) -> ConnectedUNIXDatagramSocket:
|
||||||
|
"""
|
||||||
|
Create a connected UNIX datagram socket.
|
||||||
|
|
||||||
|
Connected datagram sockets can only communicate with the specified remote path.
|
||||||
|
|
||||||
|
If ``local_path`` has been given, the socket will be bound to this path, making
|
||||||
|
this socket suitable for receiving datagrams from other processes. Other processes
|
||||||
|
can send datagrams to this socket only if ``local_path`` is set.
|
||||||
|
|
||||||
|
If a socket already exists on the file system in the ``local_path``, it will be
|
||||||
|
removed first.
|
||||||
|
|
||||||
|
:param remote_path: the path to set as the default target
|
||||||
|
:param local_path: the path on which to bind to
|
||||||
|
:param local_mode: permissions to set on the local socket
|
||||||
|
:return: a connected UNIX datagram socket
|
||||||
|
|
||||||
|
"""
|
||||||
|
remote_path = os.fspath(remote_path)
|
||||||
|
raw_socket = await setup_unix_local_socket(
|
||||||
|
local_path, local_mode, socket.SOCK_DGRAM
|
||||||
|
)
|
||||||
|
return await get_async_backend().create_unix_datagram_socket(
|
||||||
|
raw_socket, remote_path
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
async def getaddrinfo(
|
||||||
|
host: bytes | str | None,
|
||||||
|
port: str | int | None,
|
||||||
|
*,
|
||||||
|
family: int | AddressFamily = 0,
|
||||||
|
type: int | SocketKind = 0,
|
||||||
|
proto: int = 0,
|
||||||
|
flags: int = 0,
|
||||||
|
) -> list[tuple[AddressFamily, SocketKind, int, str, tuple[str, int]]]:
|
||||||
|
"""
|
||||||
|
Look up a numeric IP address given a host name.
|
||||||
|
|
||||||
|
Internationalized domain names are translated according to the (non-transitional)
|
||||||
|
IDNA 2008 standard.
|
||||||
|
|
||||||
|
.. note:: 4-tuple IPv6 socket addresses are automatically converted to 2-tuples of
|
||||||
|
(host, port), unlike what :func:`socket.getaddrinfo` does.
|
||||||
|
|
||||||
|
:param host: host name
|
||||||
|
:param port: port number
|
||||||
|
:param family: socket family (`'AF_INET``, ...)
|
||||||
|
:param type: socket type (``SOCK_STREAM``, ...)
|
||||||
|
:param proto: protocol number
|
||||||
|
:param flags: flags to pass to upstream ``getaddrinfo()``
|
||||||
|
:return: list of tuples containing (family, type, proto, canonname, sockaddr)
|
||||||
|
|
||||||
|
.. seealso:: :func:`socket.getaddrinfo`
|
||||||
|
|
||||||
|
"""
|
||||||
|
# Handle unicode hostnames
|
||||||
|
if isinstance(host, str):
|
||||||
|
try:
|
||||||
|
encoded_host: bytes | None = host.encode("ascii")
|
||||||
|
except UnicodeEncodeError:
|
||||||
|
import idna
|
||||||
|
|
||||||
|
encoded_host = idna.encode(host, uts46=True)
|
||||||
|
else:
|
||||||
|
encoded_host = host
|
||||||
|
|
||||||
|
gai_res = await get_async_backend().getaddrinfo(
|
||||||
|
encoded_host, port, family=family, type=type, proto=proto, flags=flags
|
||||||
|
)
|
||||||
|
return [
|
||||||
|
(family, type, proto, canonname, convert_ipv6_sockaddr(sockaddr))
|
||||||
|
for family, type, proto, canonname, sockaddr in gai_res
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
|
def getnameinfo(sockaddr: IPSockAddrType, flags: int = 0) -> Awaitable[tuple[str, str]]:
|
||||||
|
"""
|
||||||
|
Look up the host name of an IP address.
|
||||||
|
|
||||||
|
:param sockaddr: socket address (e.g. (ipaddress, port) for IPv4)
|
||||||
|
:param flags: flags to pass to upstream ``getnameinfo()``
|
||||||
|
:return: a tuple of (host name, service name)
|
||||||
|
|
||||||
|
.. seealso:: :func:`socket.getnameinfo`
|
||||||
|
|
||||||
|
"""
|
||||||
|
return get_async_backend().getnameinfo(sockaddr, flags)
|
||||||
|
|
||||||
|
|
||||||
|
def wait_socket_readable(sock: socket.socket) -> Awaitable[None]:
|
||||||
|
"""
|
||||||
|
Wait until the given socket has data to be read.
|
||||||
|
|
||||||
|
This does **NOT** work on Windows when using the asyncio backend with a proactor
|
||||||
|
event loop (default on py3.8+).
|
||||||
|
|
||||||
|
.. warning:: Only use this on raw sockets that have not been wrapped by any higher
|
||||||
|
level constructs like socket streams!
|
||||||
|
|
||||||
|
:param sock: a socket object
|
||||||
|
:raises ~anyio.ClosedResourceError: if the socket was closed while waiting for the
|
||||||
|
socket to become readable
|
||||||
|
:raises ~anyio.BusyResourceError: if another task is already waiting for the socket
|
||||||
|
to become readable
|
||||||
|
|
||||||
|
"""
|
||||||
|
return get_async_backend().wait_socket_readable(sock)
|
||||||
|
|
||||||
|
|
||||||
|
def wait_socket_writable(sock: socket.socket) -> Awaitable[None]:
|
||||||
|
"""
|
||||||
|
Wait until the given socket can be written to.
|
||||||
|
|
||||||
|
This does **NOT** work on Windows when using the asyncio backend with a proactor
|
||||||
|
event loop (default on py3.8+).
|
||||||
|
|
||||||
|
.. warning:: Only use this on raw sockets that have not been wrapped by any higher
|
||||||
|
level constructs like socket streams!
|
||||||
|
|
||||||
|
:param sock: a socket object
|
||||||
|
:raises ~anyio.ClosedResourceError: if the socket was closed while waiting for the
|
||||||
|
socket to become writable
|
||||||
|
:raises ~anyio.BusyResourceError: if another task is already waiting for the socket
|
||||||
|
to become writable
|
||||||
|
|
||||||
|
"""
|
||||||
|
return get_async_backend().wait_socket_writable(sock)
|
||||||
|
|
||||||
|
|
||||||
|
#
|
||||||
|
# Private API
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
|
def convert_ipv6_sockaddr(
|
||||||
|
sockaddr: tuple[str, int, int, int] | tuple[str, int],
|
||||||
|
) -> tuple[str, int]:
|
||||||
|
"""
|
||||||
|
Convert a 4-tuple IPv6 socket address to a 2-tuple (address, port) format.
|
||||||
|
|
||||||
|
If the scope ID is nonzero, it is added to the address, separated with ``%``.
|
||||||
|
Otherwise the flow id and scope id are simply cut off from the tuple.
|
||||||
|
Any other kinds of socket addresses are returned as-is.
|
||||||
|
|
||||||
|
:param sockaddr: the result of :meth:`~socket.socket.getsockname`
|
||||||
|
:return: the converted socket address
|
||||||
|
|
||||||
|
"""
|
||||||
|
# This is more complicated than it should be because of MyPy
|
||||||
|
if isinstance(sockaddr, tuple) and len(sockaddr) == 4:
|
||||||
|
host, port, flowinfo, scope_id = sockaddr
|
||||||
|
if scope_id:
|
||||||
|
# PyPy (as of v7.3.11) leaves the interface name in the result, so
|
||||||
|
# we discard it and only get the scope ID from the end
|
||||||
|
# (https://foss.heptapod.net/pypy/pypy/-/issues/3938)
|
||||||
|
host = host.split("%")[0]
|
||||||
|
|
||||||
|
# Add scope_id to the address
|
||||||
|
return f"{host}%{scope_id}", port
|
||||||
|
else:
|
||||||
|
return host, port
|
||||||
|
else:
|
||||||
|
return sockaddr
|
||||||
|
|
||||||
|
|
||||||
|
async def setup_unix_local_socket(
|
||||||
|
path: None | str | bytes | PathLike[Any],
|
||||||
|
mode: int | None,
|
||||||
|
socktype: int,
|
||||||
|
) -> socket.socket:
|
||||||
|
"""
|
||||||
|
Create a UNIX local socket object, deleting the socket at the given path if it
|
||||||
|
exists.
|
||||||
|
|
||||||
|
Not available on Windows.
|
||||||
|
|
||||||
|
:param path: path of the socket
|
||||||
|
:param mode: permissions to set on the socket
|
||||||
|
:param socktype: socket.SOCK_STREAM or socket.SOCK_DGRAM
|
||||||
|
|
||||||
|
"""
|
||||||
|
path_str: str | bytes | None
|
||||||
|
if path is not None:
|
||||||
|
path_str = os.fspath(path)
|
||||||
|
|
||||||
|
# Copied from pathlib...
|
||||||
|
try:
|
||||||
|
stat_result = os.stat(path)
|
||||||
|
except OSError as e:
|
||||||
|
if e.errno not in (errno.ENOENT, errno.ENOTDIR, errno.EBADF, errno.ELOOP):
|
||||||
|
raise
|
||||||
|
else:
|
||||||
|
if stat.S_ISSOCK(stat_result.st_mode):
|
||||||
|
os.unlink(path)
|
||||||
|
else:
|
||||||
|
path_str = None
|
||||||
|
|
||||||
|
raw_socket = socket.socket(socket.AF_UNIX, socktype)
|
||||||
|
raw_socket.setblocking(False)
|
||||||
|
|
||||||
|
if path_str is not None:
|
||||||
|
try:
|
||||||
|
await to_thread.run_sync(raw_socket.bind, path_str, abandon_on_cancel=True)
|
||||||
|
if mode is not None:
|
||||||
|
await to_thread.run_sync(chmod, path_str, mode, abandon_on_cancel=True)
|
||||||
|
except BaseException:
|
||||||
|
raw_socket.close()
|
||||||
|
raise
|
||||||
|
|
||||||
|
return raw_socket
|
52
telecli/lib/python3.11/site-packages/anyio/_core/_streams.py
Normal file
52
telecli/lib/python3.11/site-packages/anyio/_core/_streams.py
Normal file
|
@ -0,0 +1,52 @@
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import math
|
||||||
|
from typing import Tuple, TypeVar
|
||||||
|
from warnings import warn
|
||||||
|
|
||||||
|
from ..streams.memory import (
|
||||||
|
MemoryObjectReceiveStream,
|
||||||
|
MemoryObjectSendStream,
|
||||||
|
MemoryObjectStreamState,
|
||||||
|
)
|
||||||
|
|
||||||
|
T_Item = TypeVar("T_Item")
|
||||||
|
|
||||||
|
|
||||||
|
class create_memory_object_stream(
|
||||||
|
Tuple[MemoryObjectSendStream[T_Item], MemoryObjectReceiveStream[T_Item]],
|
||||||
|
):
|
||||||
|
"""
|
||||||
|
Create a memory object stream.
|
||||||
|
|
||||||
|
The stream's item type can be annotated like
|
||||||
|
:func:`create_memory_object_stream[T_Item]`.
|
||||||
|
|
||||||
|
:param max_buffer_size: number of items held in the buffer until ``send()`` starts
|
||||||
|
blocking
|
||||||
|
:param item_type: old way of marking the streams with the right generic type for
|
||||||
|
static typing (does nothing on AnyIO 4)
|
||||||
|
|
||||||
|
.. deprecated:: 4.0
|
||||||
|
Use ``create_memory_object_stream[YourItemType](...)`` instead.
|
||||||
|
:return: a tuple of (send stream, receive stream)
|
||||||
|
|
||||||
|
"""
|
||||||
|
|
||||||
|
def __new__( # type: ignore[misc]
|
||||||
|
cls, max_buffer_size: float = 0, item_type: object = None
|
||||||
|
) -> tuple[MemoryObjectSendStream[T_Item], MemoryObjectReceiveStream[T_Item]]:
|
||||||
|
if max_buffer_size != math.inf and not isinstance(max_buffer_size, int):
|
||||||
|
raise ValueError("max_buffer_size must be either an integer or math.inf")
|
||||||
|
if max_buffer_size < 0:
|
||||||
|
raise ValueError("max_buffer_size cannot be negative")
|
||||||
|
if item_type is not None:
|
||||||
|
warn(
|
||||||
|
"The item_type argument has been deprecated in AnyIO 4.0. "
|
||||||
|
"Use create_memory_object_stream[YourItemType](...) instead.",
|
||||||
|
DeprecationWarning,
|
||||||
|
stacklevel=2,
|
||||||
|
)
|
||||||
|
|
||||||
|
state = MemoryObjectStreamState[T_Item](max_buffer_size)
|
||||||
|
return (MemoryObjectSendStream(state), MemoryObjectReceiveStream(state))
|
|
@ -0,0 +1,140 @@
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
from collections.abc import AsyncIterable, Mapping, Sequence
|
||||||
|
from io import BytesIO
|
||||||
|
from os import PathLike
|
||||||
|
from subprocess import DEVNULL, PIPE, CalledProcessError, CompletedProcess
|
||||||
|
from typing import IO, Any, cast
|
||||||
|
|
||||||
|
from ..abc import Process
|
||||||
|
from ._eventloop import get_async_backend
|
||||||
|
from ._tasks import create_task_group
|
||||||
|
|
||||||
|
|
||||||
|
async def run_process(
|
||||||
|
command: str | bytes | Sequence[str | bytes],
|
||||||
|
*,
|
||||||
|
input: bytes | None = None,
|
||||||
|
stdout: int | IO[Any] | None = PIPE,
|
||||||
|
stderr: int | IO[Any] | None = PIPE,
|
||||||
|
check: bool = True,
|
||||||
|
cwd: str | bytes | PathLike[str] | None = None,
|
||||||
|
env: Mapping[str, str] | None = None,
|
||||||
|
start_new_session: bool = False,
|
||||||
|
) -> CompletedProcess[bytes]:
|
||||||
|
"""
|
||||||
|
Run an external command in a subprocess and wait until it completes.
|
||||||
|
|
||||||
|
.. seealso:: :func:`subprocess.run`
|
||||||
|
|
||||||
|
:param command: either a string to pass to the shell, or an iterable of strings
|
||||||
|
containing the executable name or path and its arguments
|
||||||
|
:param input: bytes passed to the standard input of the subprocess
|
||||||
|
:param stdout: one of :data:`subprocess.PIPE`, :data:`subprocess.DEVNULL`,
|
||||||
|
a file-like object, or `None`
|
||||||
|
:param stderr: one of :data:`subprocess.PIPE`, :data:`subprocess.DEVNULL`,
|
||||||
|
:data:`subprocess.STDOUT`, a file-like object, or `None`
|
||||||
|
:param check: if ``True``, raise :exc:`~subprocess.CalledProcessError` if the
|
||||||
|
process terminates with a return code other than 0
|
||||||
|
:param cwd: If not ``None``, change the working directory to this before running the
|
||||||
|
command
|
||||||
|
:param env: if not ``None``, this mapping replaces the inherited environment
|
||||||
|
variables from the parent process
|
||||||
|
:param start_new_session: if ``true`` the setsid() system call will be made in the
|
||||||
|
child process prior to the execution of the subprocess. (POSIX only)
|
||||||
|
:return: an object representing the completed process
|
||||||
|
:raises ~subprocess.CalledProcessError: if ``check`` is ``True`` and the process
|
||||||
|
exits with a nonzero return code
|
||||||
|
|
||||||
|
"""
|
||||||
|
|
||||||
|
async def drain_stream(stream: AsyncIterable[bytes], index: int) -> None:
|
||||||
|
buffer = BytesIO()
|
||||||
|
async for chunk in stream:
|
||||||
|
buffer.write(chunk)
|
||||||
|
|
||||||
|
stream_contents[index] = buffer.getvalue()
|
||||||
|
|
||||||
|
async with await open_process(
|
||||||
|
command,
|
||||||
|
stdin=PIPE if input else DEVNULL,
|
||||||
|
stdout=stdout,
|
||||||
|
stderr=stderr,
|
||||||
|
cwd=cwd,
|
||||||
|
env=env,
|
||||||
|
start_new_session=start_new_session,
|
||||||
|
) as process:
|
||||||
|
stream_contents: list[bytes | None] = [None, None]
|
||||||
|
async with create_task_group() as tg:
|
||||||
|
if process.stdout:
|
||||||
|
tg.start_soon(drain_stream, process.stdout, 0)
|
||||||
|
|
||||||
|
if process.stderr:
|
||||||
|
tg.start_soon(drain_stream, process.stderr, 1)
|
||||||
|
|
||||||
|
if process.stdin and input:
|
||||||
|
await process.stdin.send(input)
|
||||||
|
await process.stdin.aclose()
|
||||||
|
|
||||||
|
await process.wait()
|
||||||
|
|
||||||
|
output, errors = stream_contents
|
||||||
|
if check and process.returncode != 0:
|
||||||
|
raise CalledProcessError(cast(int, process.returncode), command, output, errors)
|
||||||
|
|
||||||
|
return CompletedProcess(command, cast(int, process.returncode), output, errors)
|
||||||
|
|
||||||
|
|
||||||
|
async def open_process(
|
||||||
|
command: str | bytes | Sequence[str | bytes],
|
||||||
|
*,
|
||||||
|
stdin: int | IO[Any] | None = PIPE,
|
||||||
|
stdout: int | IO[Any] | None = PIPE,
|
||||||
|
stderr: int | IO[Any] | None = PIPE,
|
||||||
|
cwd: str | bytes | PathLike[str] | None = None,
|
||||||
|
env: Mapping[str, str] | None = None,
|
||||||
|
start_new_session: bool = False,
|
||||||
|
) -> Process:
|
||||||
|
"""
|
||||||
|
Start an external command in a subprocess.
|
||||||
|
|
||||||
|
.. seealso:: :class:`subprocess.Popen`
|
||||||
|
|
||||||
|
:param command: either a string to pass to the shell, or an iterable of strings
|
||||||
|
containing the executable name or path and its arguments
|
||||||
|
:param stdin: one of :data:`subprocess.PIPE`, :data:`subprocess.DEVNULL`, a
|
||||||
|
file-like object, or ``None``
|
||||||
|
:param stdout: one of :data:`subprocess.PIPE`, :data:`subprocess.DEVNULL`,
|
||||||
|
a file-like object, or ``None``
|
||||||
|
:param stderr: one of :data:`subprocess.PIPE`, :data:`subprocess.DEVNULL`,
|
||||||
|
:data:`subprocess.STDOUT`, a file-like object, or ``None``
|
||||||
|
:param cwd: If not ``None``, the working directory is changed before executing
|
||||||
|
:param env: If env is not ``None``, it must be a mapping that defines the
|
||||||
|
environment variables for the new process
|
||||||
|
:param start_new_session: if ``true`` the setsid() system call will be made in the
|
||||||
|
child process prior to the execution of the subprocess. (POSIX only)
|
||||||
|
:return: an asynchronous process object
|
||||||
|
|
||||||
|
"""
|
||||||
|
if isinstance(command, (str, bytes)):
|
||||||
|
return await get_async_backend().open_process(
|
||||||
|
command,
|
||||||
|
shell=True,
|
||||||
|
stdin=stdin,
|
||||||
|
stdout=stdout,
|
||||||
|
stderr=stderr,
|
||||||
|
cwd=cwd,
|
||||||
|
env=env,
|
||||||
|
start_new_session=start_new_session,
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
return await get_async_backend().open_process(
|
||||||
|
command,
|
||||||
|
shell=False,
|
||||||
|
stdin=stdin,
|
||||||
|
stdout=stdout,
|
||||||
|
stderr=stderr,
|
||||||
|
cwd=cwd,
|
||||||
|
env=env,
|
||||||
|
start_new_session=start_new_session,
|
||||||
|
)
|
|
@ -0,0 +1,649 @@
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import math
|
||||||
|
from collections import deque
|
||||||
|
from dataclasses import dataclass
|
||||||
|
from types import TracebackType
|
||||||
|
|
||||||
|
from sniffio import AsyncLibraryNotFoundError
|
||||||
|
|
||||||
|
from ..lowlevel import cancel_shielded_checkpoint, checkpoint, checkpoint_if_cancelled
|
||||||
|
from ._eventloop import get_async_backend
|
||||||
|
from ._exceptions import BusyResourceError, WouldBlock
|
||||||
|
from ._tasks import CancelScope
|
||||||
|
from ._testing import TaskInfo, get_current_task
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass(frozen=True)
|
||||||
|
class EventStatistics:
|
||||||
|
"""
|
||||||
|
:ivar int tasks_waiting: number of tasks waiting on :meth:`~.Event.wait`
|
||||||
|
"""
|
||||||
|
|
||||||
|
tasks_waiting: int
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass(frozen=True)
|
||||||
|
class CapacityLimiterStatistics:
|
||||||
|
"""
|
||||||
|
:ivar int borrowed_tokens: number of tokens currently borrowed by tasks
|
||||||
|
:ivar float total_tokens: total number of available tokens
|
||||||
|
:ivar tuple borrowers: tasks or other objects currently holding tokens borrowed from
|
||||||
|
this limiter
|
||||||
|
:ivar int tasks_waiting: number of tasks waiting on
|
||||||
|
:meth:`~.CapacityLimiter.acquire` or
|
||||||
|
:meth:`~.CapacityLimiter.acquire_on_behalf_of`
|
||||||
|
"""
|
||||||
|
|
||||||
|
borrowed_tokens: int
|
||||||
|
total_tokens: float
|
||||||
|
borrowers: tuple[object, ...]
|
||||||
|
tasks_waiting: int
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass(frozen=True)
|
||||||
|
class LockStatistics:
|
||||||
|
"""
|
||||||
|
:ivar bool locked: flag indicating if this lock is locked or not
|
||||||
|
:ivar ~anyio.TaskInfo owner: task currently holding the lock (or ``None`` if the
|
||||||
|
lock is not held by any task)
|
||||||
|
:ivar int tasks_waiting: number of tasks waiting on :meth:`~.Lock.acquire`
|
||||||
|
"""
|
||||||
|
|
||||||
|
locked: bool
|
||||||
|
owner: TaskInfo | None
|
||||||
|
tasks_waiting: int
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass(frozen=True)
|
||||||
|
class ConditionStatistics:
|
||||||
|
"""
|
||||||
|
:ivar int tasks_waiting: number of tasks blocked on :meth:`~.Condition.wait`
|
||||||
|
:ivar ~anyio.LockStatistics lock_statistics: statistics of the underlying
|
||||||
|
:class:`~.Lock`
|
||||||
|
"""
|
||||||
|
|
||||||
|
tasks_waiting: int
|
||||||
|
lock_statistics: LockStatistics
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass(frozen=True)
|
||||||
|
class SemaphoreStatistics:
|
||||||
|
"""
|
||||||
|
:ivar int tasks_waiting: number of tasks waiting on :meth:`~.Semaphore.acquire`
|
||||||
|
|
||||||
|
"""
|
||||||
|
|
||||||
|
tasks_waiting: int
|
||||||
|
|
||||||
|
|
||||||
|
class Event:
|
||||||
|
def __new__(cls) -> Event:
|
||||||
|
try:
|
||||||
|
return get_async_backend().create_event()
|
||||||
|
except AsyncLibraryNotFoundError:
|
||||||
|
return EventAdapter()
|
||||||
|
|
||||||
|
def set(self) -> None:
|
||||||
|
"""Set the flag, notifying all listeners."""
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
def is_set(self) -> bool:
|
||||||
|
"""Return ``True`` if the flag is set, ``False`` if not."""
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
async def wait(self) -> None:
|
||||||
|
"""
|
||||||
|
Wait until the flag has been set.
|
||||||
|
|
||||||
|
If the flag has already been set when this method is called, it returns
|
||||||
|
immediately.
|
||||||
|
|
||||||
|
"""
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
def statistics(self) -> EventStatistics:
|
||||||
|
"""Return statistics about the current state of this event."""
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
|
||||||
|
class EventAdapter(Event):
|
||||||
|
_internal_event: Event | None = None
|
||||||
|
|
||||||
|
def __new__(cls) -> EventAdapter:
|
||||||
|
return object.__new__(cls)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def _event(self) -> Event:
|
||||||
|
if self._internal_event is None:
|
||||||
|
self._internal_event = get_async_backend().create_event()
|
||||||
|
|
||||||
|
return self._internal_event
|
||||||
|
|
||||||
|
def set(self) -> None:
|
||||||
|
self._event.set()
|
||||||
|
|
||||||
|
def is_set(self) -> bool:
|
||||||
|
return self._internal_event is not None and self._internal_event.is_set()
|
||||||
|
|
||||||
|
async def wait(self) -> None:
|
||||||
|
await self._event.wait()
|
||||||
|
|
||||||
|
def statistics(self) -> EventStatistics:
|
||||||
|
if self._internal_event is None:
|
||||||
|
return EventStatistics(tasks_waiting=0)
|
||||||
|
|
||||||
|
return self._internal_event.statistics()
|
||||||
|
|
||||||
|
|
||||||
|
class Lock:
|
||||||
|
_owner_task: TaskInfo | None = None
|
||||||
|
|
||||||
|
def __init__(self) -> None:
|
||||||
|
self._waiters: deque[tuple[TaskInfo, Event]] = deque()
|
||||||
|
|
||||||
|
async def __aenter__(self) -> None:
|
||||||
|
await self.acquire()
|
||||||
|
|
||||||
|
async def __aexit__(
|
||||||
|
self,
|
||||||
|
exc_type: type[BaseException] | None,
|
||||||
|
exc_val: BaseException | None,
|
||||||
|
exc_tb: TracebackType | None,
|
||||||
|
) -> None:
|
||||||
|
self.release()
|
||||||
|
|
||||||
|
async def acquire(self) -> None:
|
||||||
|
"""Acquire the lock."""
|
||||||
|
await checkpoint_if_cancelled()
|
||||||
|
try:
|
||||||
|
self.acquire_nowait()
|
||||||
|
except WouldBlock:
|
||||||
|
task = get_current_task()
|
||||||
|
event = Event()
|
||||||
|
token = task, event
|
||||||
|
self._waiters.append(token)
|
||||||
|
try:
|
||||||
|
await event.wait()
|
||||||
|
except BaseException:
|
||||||
|
if not event.is_set():
|
||||||
|
self._waiters.remove(token)
|
||||||
|
elif self._owner_task == task:
|
||||||
|
self.release()
|
||||||
|
|
||||||
|
raise
|
||||||
|
|
||||||
|
assert self._owner_task == task
|
||||||
|
else:
|
||||||
|
try:
|
||||||
|
await cancel_shielded_checkpoint()
|
||||||
|
except BaseException:
|
||||||
|
self.release()
|
||||||
|
raise
|
||||||
|
|
||||||
|
def acquire_nowait(self) -> None:
|
||||||
|
"""
|
||||||
|
Acquire the lock, without blocking.
|
||||||
|
|
||||||
|
:raises ~anyio.WouldBlock: if the operation would block
|
||||||
|
|
||||||
|
"""
|
||||||
|
task = get_current_task()
|
||||||
|
if self._owner_task == task:
|
||||||
|
raise RuntimeError("Attempted to acquire an already held Lock")
|
||||||
|
|
||||||
|
if self._owner_task is not None:
|
||||||
|
raise WouldBlock
|
||||||
|
|
||||||
|
self._owner_task = task
|
||||||
|
|
||||||
|
def release(self) -> None:
|
||||||
|
"""Release the lock."""
|
||||||
|
if self._owner_task != get_current_task():
|
||||||
|
raise RuntimeError("The current task is not holding this lock")
|
||||||
|
|
||||||
|
if self._waiters:
|
||||||
|
self._owner_task, event = self._waiters.popleft()
|
||||||
|
event.set()
|
||||||
|
else:
|
||||||
|
del self._owner_task
|
||||||
|
|
||||||
|
def locked(self) -> bool:
|
||||||
|
"""Return True if the lock is currently held."""
|
||||||
|
return self._owner_task is not None
|
||||||
|
|
||||||
|
def statistics(self) -> LockStatistics:
|
||||||
|
"""
|
||||||
|
Return statistics about the current state of this lock.
|
||||||
|
|
||||||
|
.. versionadded:: 3.0
|
||||||
|
"""
|
||||||
|
return LockStatistics(self.locked(), self._owner_task, len(self._waiters))
|
||||||
|
|
||||||
|
|
||||||
|
class Condition:
|
||||||
|
_owner_task: TaskInfo | None = None
|
||||||
|
|
||||||
|
def __init__(self, lock: Lock | None = None):
|
||||||
|
self._lock = lock or Lock()
|
||||||
|
self._waiters: deque[Event] = deque()
|
||||||
|
|
||||||
|
async def __aenter__(self) -> None:
|
||||||
|
await self.acquire()
|
||||||
|
|
||||||
|
async def __aexit__(
|
||||||
|
self,
|
||||||
|
exc_type: type[BaseException] | None,
|
||||||
|
exc_val: BaseException | None,
|
||||||
|
exc_tb: TracebackType | None,
|
||||||
|
) -> None:
|
||||||
|
self.release()
|
||||||
|
|
||||||
|
def _check_acquired(self) -> None:
|
||||||
|
if self._owner_task != get_current_task():
|
||||||
|
raise RuntimeError("The current task is not holding the underlying lock")
|
||||||
|
|
||||||
|
async def acquire(self) -> None:
|
||||||
|
"""Acquire the underlying lock."""
|
||||||
|
await self._lock.acquire()
|
||||||
|
self._owner_task = get_current_task()
|
||||||
|
|
||||||
|
def acquire_nowait(self) -> None:
|
||||||
|
"""
|
||||||
|
Acquire the underlying lock, without blocking.
|
||||||
|
|
||||||
|
:raises ~anyio.WouldBlock: if the operation would block
|
||||||
|
|
||||||
|
"""
|
||||||
|
self._lock.acquire_nowait()
|
||||||
|
self._owner_task = get_current_task()
|
||||||
|
|
||||||
|
def release(self) -> None:
|
||||||
|
"""Release the underlying lock."""
|
||||||
|
self._lock.release()
|
||||||
|
|
||||||
|
def locked(self) -> bool:
|
||||||
|
"""Return True if the lock is set."""
|
||||||
|
return self._lock.locked()
|
||||||
|
|
||||||
|
def notify(self, n: int = 1) -> None:
|
||||||
|
"""Notify exactly n listeners."""
|
||||||
|
self._check_acquired()
|
||||||
|
for _ in range(n):
|
||||||
|
try:
|
||||||
|
event = self._waiters.popleft()
|
||||||
|
except IndexError:
|
||||||
|
break
|
||||||
|
|
||||||
|
event.set()
|
||||||
|
|
||||||
|
def notify_all(self) -> None:
|
||||||
|
"""Notify all the listeners."""
|
||||||
|
self._check_acquired()
|
||||||
|
for event in self._waiters:
|
||||||
|
event.set()
|
||||||
|
|
||||||
|
self._waiters.clear()
|
||||||
|
|
||||||
|
async def wait(self) -> None:
|
||||||
|
"""Wait for a notification."""
|
||||||
|
await checkpoint()
|
||||||
|
event = Event()
|
||||||
|
self._waiters.append(event)
|
||||||
|
self.release()
|
||||||
|
try:
|
||||||
|
await event.wait()
|
||||||
|
except BaseException:
|
||||||
|
if not event.is_set():
|
||||||
|
self._waiters.remove(event)
|
||||||
|
|
||||||
|
raise
|
||||||
|
finally:
|
||||||
|
with CancelScope(shield=True):
|
||||||
|
await self.acquire()
|
||||||
|
|
||||||
|
def statistics(self) -> ConditionStatistics:
|
||||||
|
"""
|
||||||
|
Return statistics about the current state of this condition.
|
||||||
|
|
||||||
|
.. versionadded:: 3.0
|
||||||
|
"""
|
||||||
|
return ConditionStatistics(len(self._waiters), self._lock.statistics())
|
||||||
|
|
||||||
|
|
||||||
|
class Semaphore:
|
||||||
|
def __init__(self, initial_value: int, *, max_value: int | None = None):
|
||||||
|
if not isinstance(initial_value, int):
|
||||||
|
raise TypeError("initial_value must be an integer")
|
||||||
|
if initial_value < 0:
|
||||||
|
raise ValueError("initial_value must be >= 0")
|
||||||
|
if max_value is not None:
|
||||||
|
if not isinstance(max_value, int):
|
||||||
|
raise TypeError("max_value must be an integer or None")
|
||||||
|
if max_value < initial_value:
|
||||||
|
raise ValueError(
|
||||||
|
"max_value must be equal to or higher than initial_value"
|
||||||
|
)
|
||||||
|
|
||||||
|
self._value = initial_value
|
||||||
|
self._max_value = max_value
|
||||||
|
self._waiters: deque[Event] = deque()
|
||||||
|
|
||||||
|
async def __aenter__(self) -> Semaphore:
|
||||||
|
await self.acquire()
|
||||||
|
return self
|
||||||
|
|
||||||
|
async def __aexit__(
|
||||||
|
self,
|
||||||
|
exc_type: type[BaseException] | None,
|
||||||
|
exc_val: BaseException | None,
|
||||||
|
exc_tb: TracebackType | None,
|
||||||
|
) -> None:
|
||||||
|
self.release()
|
||||||
|
|
||||||
|
async def acquire(self) -> None:
|
||||||
|
"""Decrement the semaphore value, blocking if necessary."""
|
||||||
|
await checkpoint_if_cancelled()
|
||||||
|
try:
|
||||||
|
self.acquire_nowait()
|
||||||
|
except WouldBlock:
|
||||||
|
event = Event()
|
||||||
|
self._waiters.append(event)
|
||||||
|
try:
|
||||||
|
await event.wait()
|
||||||
|
except BaseException:
|
||||||
|
if not event.is_set():
|
||||||
|
self._waiters.remove(event)
|
||||||
|
else:
|
||||||
|
self.release()
|
||||||
|
|
||||||
|
raise
|
||||||
|
else:
|
||||||
|
try:
|
||||||
|
await cancel_shielded_checkpoint()
|
||||||
|
except BaseException:
|
||||||
|
self.release()
|
||||||
|
raise
|
||||||
|
|
||||||
|
def acquire_nowait(self) -> None:
|
||||||
|
"""
|
||||||
|
Acquire the underlying lock, without blocking.
|
||||||
|
|
||||||
|
:raises ~anyio.WouldBlock: if the operation would block
|
||||||
|
|
||||||
|
"""
|
||||||
|
if self._value == 0:
|
||||||
|
raise WouldBlock
|
||||||
|
|
||||||
|
self._value -= 1
|
||||||
|
|
||||||
|
def release(self) -> None:
|
||||||
|
"""Increment the semaphore value."""
|
||||||
|
if self._max_value is not None and self._value == self._max_value:
|
||||||
|
raise ValueError("semaphore released too many times")
|
||||||
|
|
||||||
|
if self._waiters:
|
||||||
|
self._waiters.popleft().set()
|
||||||
|
else:
|
||||||
|
self._value += 1
|
||||||
|
|
||||||
|
@property
|
||||||
|
def value(self) -> int:
|
||||||
|
"""The current value of the semaphore."""
|
||||||
|
return self._value
|
||||||
|
|
||||||
|
@property
|
||||||
|
def max_value(self) -> int | None:
|
||||||
|
"""The maximum value of the semaphore."""
|
||||||
|
return self._max_value
|
||||||
|
|
||||||
|
def statistics(self) -> SemaphoreStatistics:
|
||||||
|
"""
|
||||||
|
Return statistics about the current state of this semaphore.
|
||||||
|
|
||||||
|
.. versionadded:: 3.0
|
||||||
|
"""
|
||||||
|
return SemaphoreStatistics(len(self._waiters))
|
||||||
|
|
||||||
|
|
||||||
|
class CapacityLimiter:
|
||||||
|
def __new__(cls, total_tokens: float) -> CapacityLimiter:
|
||||||
|
try:
|
||||||
|
return get_async_backend().create_capacity_limiter(total_tokens)
|
||||||
|
except AsyncLibraryNotFoundError:
|
||||||
|
return CapacityLimiterAdapter(total_tokens)
|
||||||
|
|
||||||
|
async def __aenter__(self) -> None:
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
async def __aexit__(
|
||||||
|
self,
|
||||||
|
exc_type: type[BaseException] | None,
|
||||||
|
exc_val: BaseException | None,
|
||||||
|
exc_tb: TracebackType | None,
|
||||||
|
) -> bool | None:
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
@property
|
||||||
|
def total_tokens(self) -> float:
|
||||||
|
"""
|
||||||
|
The total number of tokens available for borrowing.
|
||||||
|
|
||||||
|
This is a read-write property. If the total number of tokens is increased, the
|
||||||
|
proportionate number of tasks waiting on this limiter will be granted their
|
||||||
|
tokens.
|
||||||
|
|
||||||
|
.. versionchanged:: 3.0
|
||||||
|
The property is now writable.
|
||||||
|
|
||||||
|
"""
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
@total_tokens.setter
|
||||||
|
def total_tokens(self, value: float) -> None:
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
@property
|
||||||
|
def borrowed_tokens(self) -> int:
|
||||||
|
"""The number of tokens that have currently been borrowed."""
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
@property
|
||||||
|
def available_tokens(self) -> float:
|
||||||
|
"""The number of tokens currently available to be borrowed"""
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
def acquire_nowait(self) -> None:
|
||||||
|
"""
|
||||||
|
Acquire a token for the current task without waiting for one to become
|
||||||
|
available.
|
||||||
|
|
||||||
|
:raises ~anyio.WouldBlock: if there are no tokens available for borrowing
|
||||||
|
|
||||||
|
"""
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
def acquire_on_behalf_of_nowait(self, borrower: object) -> None:
|
||||||
|
"""
|
||||||
|
Acquire a token without waiting for one to become available.
|
||||||
|
|
||||||
|
:param borrower: the entity borrowing a token
|
||||||
|
:raises ~anyio.WouldBlock: if there are no tokens available for borrowing
|
||||||
|
|
||||||
|
"""
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
async def acquire(self) -> None:
|
||||||
|
"""
|
||||||
|
Acquire a token for the current task, waiting if necessary for one to become
|
||||||
|
available.
|
||||||
|
|
||||||
|
"""
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
async def acquire_on_behalf_of(self, borrower: object) -> None:
|
||||||
|
"""
|
||||||
|
Acquire a token, waiting if necessary for one to become available.
|
||||||
|
|
||||||
|
:param borrower: the entity borrowing a token
|
||||||
|
|
||||||
|
"""
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
def release(self) -> None:
|
||||||
|
"""
|
||||||
|
Release the token held by the current task.
|
||||||
|
|
||||||
|
:raises RuntimeError: if the current task has not borrowed a token from this
|
||||||
|
limiter.
|
||||||
|
|
||||||
|
"""
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
def release_on_behalf_of(self, borrower: object) -> None:
|
||||||
|
"""
|
||||||
|
Release the token held by the given borrower.
|
||||||
|
|
||||||
|
:raises RuntimeError: if the borrower has not borrowed a token from this
|
||||||
|
limiter.
|
||||||
|
|
||||||
|
"""
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
def statistics(self) -> CapacityLimiterStatistics:
|
||||||
|
"""
|
||||||
|
Return statistics about the current state of this limiter.
|
||||||
|
|
||||||
|
.. versionadded:: 3.0
|
||||||
|
|
||||||
|
"""
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
|
||||||
|
class CapacityLimiterAdapter(CapacityLimiter):
|
||||||
|
_internal_limiter: CapacityLimiter | None = None
|
||||||
|
|
||||||
|
def __new__(cls, total_tokens: float) -> CapacityLimiterAdapter:
|
||||||
|
return object.__new__(cls)
|
||||||
|
|
||||||
|
def __init__(self, total_tokens: float) -> None:
|
||||||
|
self.total_tokens = total_tokens
|
||||||
|
|
||||||
|
@property
|
||||||
|
def _limiter(self) -> CapacityLimiter:
|
||||||
|
if self._internal_limiter is None:
|
||||||
|
self._internal_limiter = get_async_backend().create_capacity_limiter(
|
||||||
|
self._total_tokens
|
||||||
|
)
|
||||||
|
|
||||||
|
return self._internal_limiter
|
||||||
|
|
||||||
|
async def __aenter__(self) -> None:
|
||||||
|
await self._limiter.__aenter__()
|
||||||
|
|
||||||
|
async def __aexit__(
|
||||||
|
self,
|
||||||
|
exc_type: type[BaseException] | None,
|
||||||
|
exc_val: BaseException | None,
|
||||||
|
exc_tb: TracebackType | None,
|
||||||
|
) -> bool | None:
|
||||||
|
return await self._limiter.__aexit__(exc_type, exc_val, exc_tb)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def total_tokens(self) -> float:
|
||||||
|
if self._internal_limiter is None:
|
||||||
|
return self._total_tokens
|
||||||
|
|
||||||
|
return self._internal_limiter.total_tokens
|
||||||
|
|
||||||
|
@total_tokens.setter
|
||||||
|
def total_tokens(self, value: float) -> None:
|
||||||
|
if not isinstance(value, int) and value is not math.inf:
|
||||||
|
raise TypeError("total_tokens must be an int or math.inf")
|
||||||
|
elif value < 1:
|
||||||
|
raise ValueError("total_tokens must be >= 1")
|
||||||
|
|
||||||
|
if self._internal_limiter is None:
|
||||||
|
self._total_tokens = value
|
||||||
|
return
|
||||||
|
|
||||||
|
self._limiter.total_tokens = value
|
||||||
|
|
||||||
|
@property
|
||||||
|
def borrowed_tokens(self) -> int:
|
||||||
|
if self._internal_limiter is None:
|
||||||
|
return 0
|
||||||
|
|
||||||
|
return self._internal_limiter.borrowed_tokens
|
||||||
|
|
||||||
|
@property
|
||||||
|
def available_tokens(self) -> float:
|
||||||
|
if self._internal_limiter is None:
|
||||||
|
return self._total_tokens
|
||||||
|
|
||||||
|
return self._internal_limiter.available_tokens
|
||||||
|
|
||||||
|
def acquire_nowait(self) -> None:
|
||||||
|
self._limiter.acquire_nowait()
|
||||||
|
|
||||||
|
def acquire_on_behalf_of_nowait(self, borrower: object) -> None:
|
||||||
|
self._limiter.acquire_on_behalf_of_nowait(borrower)
|
||||||
|
|
||||||
|
async def acquire(self) -> None:
|
||||||
|
await self._limiter.acquire()
|
||||||
|
|
||||||
|
async def acquire_on_behalf_of(self, borrower: object) -> None:
|
||||||
|
await self._limiter.acquire_on_behalf_of(borrower)
|
||||||
|
|
||||||
|
def release(self) -> None:
|
||||||
|
self._limiter.release()
|
||||||
|
|
||||||
|
def release_on_behalf_of(self, borrower: object) -> None:
|
||||||
|
self._limiter.release_on_behalf_of(borrower)
|
||||||
|
|
||||||
|
def statistics(self) -> CapacityLimiterStatistics:
|
||||||
|
if self._internal_limiter is None:
|
||||||
|
return CapacityLimiterStatistics(
|
||||||
|
borrowed_tokens=0,
|
||||||
|
total_tokens=self.total_tokens,
|
||||||
|
borrowers=(),
|
||||||
|
tasks_waiting=0,
|
||||||
|
)
|
||||||
|
|
||||||
|
return self._internal_limiter.statistics()
|
||||||
|
|
||||||
|
|
||||||
|
class ResourceGuard:
|
||||||
|
"""
|
||||||
|
A context manager for ensuring that a resource is only used by a single task at a
|
||||||
|
time.
|
||||||
|
|
||||||
|
Entering this context manager while the previous has not exited it yet will trigger
|
||||||
|
:exc:`BusyResourceError`.
|
||||||
|
|
||||||
|
:param action: the action to guard against (visible in the :exc:`BusyResourceError`
|
||||||
|
when triggered, e.g. "Another task is already {action} this resource")
|
||||||
|
|
||||||
|
.. versionadded:: 4.1
|
||||||
|
"""
|
||||||
|
|
||||||
|
__slots__ = "action", "_guarded"
|
||||||
|
|
||||||
|
def __init__(self, action: str = "using"):
|
||||||
|
self.action: str = action
|
||||||
|
self._guarded = False
|
||||||
|
|
||||||
|
def __enter__(self) -> None:
|
||||||
|
if self._guarded:
|
||||||
|
raise BusyResourceError(self.action)
|
||||||
|
|
||||||
|
self._guarded = True
|
||||||
|
|
||||||
|
def __exit__(
|
||||||
|
self,
|
||||||
|
exc_type: type[BaseException] | None,
|
||||||
|
exc_val: BaseException | None,
|
||||||
|
exc_tb: TracebackType | None,
|
||||||
|
) -> bool | None:
|
||||||
|
self._guarded = False
|
||||||
|
return None
|
158
telecli/lib/python3.11/site-packages/anyio/_core/_tasks.py
Normal file
158
telecli/lib/python3.11/site-packages/anyio/_core/_tasks.py
Normal file
|
@ -0,0 +1,158 @@
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import math
|
||||||
|
from collections.abc import Generator
|
||||||
|
from contextlib import contextmanager
|
||||||
|
from types import TracebackType
|
||||||
|
|
||||||
|
from ..abc._tasks import TaskGroup, TaskStatus
|
||||||
|
from ._eventloop import get_async_backend
|
||||||
|
|
||||||
|
|
||||||
|
class _IgnoredTaskStatus(TaskStatus[object]):
|
||||||
|
def started(self, value: object = None) -> None:
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
TASK_STATUS_IGNORED = _IgnoredTaskStatus()
|
||||||
|
|
||||||
|
|
||||||
|
class CancelScope:
|
||||||
|
"""
|
||||||
|
Wraps a unit of work that can be made separately cancellable.
|
||||||
|
|
||||||
|
:param deadline: The time (clock value) when this scope is cancelled automatically
|
||||||
|
:param shield: ``True`` to shield the cancel scope from external cancellation
|
||||||
|
"""
|
||||||
|
|
||||||
|
def __new__(
|
||||||
|
cls, *, deadline: float = math.inf, shield: bool = False
|
||||||
|
) -> CancelScope:
|
||||||
|
return get_async_backend().create_cancel_scope(shield=shield, deadline=deadline)
|
||||||
|
|
||||||
|
def cancel(self) -> None:
|
||||||
|
"""Cancel this scope immediately."""
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
@property
|
||||||
|
def deadline(self) -> float:
|
||||||
|
"""
|
||||||
|
The time (clock value) when this scope is cancelled automatically.
|
||||||
|
|
||||||
|
Will be ``float('inf')`` if no timeout has been set.
|
||||||
|
|
||||||
|
"""
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
@deadline.setter
|
||||||
|
def deadline(self, value: float) -> None:
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
@property
|
||||||
|
def cancel_called(self) -> bool:
|
||||||
|
"""``True`` if :meth:`cancel` has been called."""
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
@property
|
||||||
|
def cancelled_caught(self) -> bool:
|
||||||
|
"""
|
||||||
|
``True`` if this scope suppressed a cancellation exception it itself raised.
|
||||||
|
|
||||||
|
This is typically used to check if any work was interrupted, or to see if the
|
||||||
|
scope was cancelled due to its deadline being reached. The value will, however,
|
||||||
|
only be ``True`` if the cancellation was triggered by the scope itself (and not
|
||||||
|
an outer scope).
|
||||||
|
|
||||||
|
"""
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
@property
|
||||||
|
def shield(self) -> bool:
|
||||||
|
"""
|
||||||
|
``True`` if this scope is shielded from external cancellation.
|
||||||
|
|
||||||
|
While a scope is shielded, it will not receive cancellations from outside.
|
||||||
|
|
||||||
|
"""
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
@shield.setter
|
||||||
|
def shield(self, value: bool) -> None:
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
def __enter__(self) -> CancelScope:
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
def __exit__(
|
||||||
|
self,
|
||||||
|
exc_type: type[BaseException] | None,
|
||||||
|
exc_val: BaseException | None,
|
||||||
|
exc_tb: TracebackType | None,
|
||||||
|
) -> bool | None:
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
|
||||||
|
@contextmanager
|
||||||
|
def fail_after(
|
||||||
|
delay: float | None, shield: bool = False
|
||||||
|
) -> Generator[CancelScope, None, None]:
|
||||||
|
"""
|
||||||
|
Create a context manager which raises a :class:`TimeoutError` if does not finish in
|
||||||
|
time.
|
||||||
|
|
||||||
|
:param delay: maximum allowed time (in seconds) before raising the exception, or
|
||||||
|
``None`` to disable the timeout
|
||||||
|
:param shield: ``True`` to shield the cancel scope from external cancellation
|
||||||
|
:return: a context manager that yields a cancel scope
|
||||||
|
:rtype: :class:`~typing.ContextManager`\\[:class:`~anyio.CancelScope`\\]
|
||||||
|
|
||||||
|
"""
|
||||||
|
current_time = get_async_backend().current_time
|
||||||
|
deadline = (current_time() + delay) if delay is not None else math.inf
|
||||||
|
with get_async_backend().create_cancel_scope(
|
||||||
|
deadline=deadline, shield=shield
|
||||||
|
) as cancel_scope:
|
||||||
|
yield cancel_scope
|
||||||
|
|
||||||
|
if cancel_scope.cancelled_caught and current_time() >= cancel_scope.deadline:
|
||||||
|
raise TimeoutError
|
||||||
|
|
||||||
|
|
||||||
|
def move_on_after(delay: float | None, shield: bool = False) -> CancelScope:
|
||||||
|
"""
|
||||||
|
Create a cancel scope with a deadline that expires after the given delay.
|
||||||
|
|
||||||
|
:param delay: maximum allowed time (in seconds) before exiting the context block, or
|
||||||
|
``None`` to disable the timeout
|
||||||
|
:param shield: ``True`` to shield the cancel scope from external cancellation
|
||||||
|
:return: a cancel scope
|
||||||
|
|
||||||
|
"""
|
||||||
|
deadline = (
|
||||||
|
(get_async_backend().current_time() + delay) if delay is not None else math.inf
|
||||||
|
)
|
||||||
|
return get_async_backend().create_cancel_scope(deadline=deadline, shield=shield)
|
||||||
|
|
||||||
|
|
||||||
|
def current_effective_deadline() -> float:
|
||||||
|
"""
|
||||||
|
Return the nearest deadline among all the cancel scopes effective for the current
|
||||||
|
task.
|
||||||
|
|
||||||
|
:return: a clock value from the event loop's internal clock (or ``float('inf')`` if
|
||||||
|
there is no deadline in effect, or ``float('-inf')`` if the current scope has
|
||||||
|
been cancelled)
|
||||||
|
:rtype: float
|
||||||
|
|
||||||
|
"""
|
||||||
|
return get_async_backend().current_effective_deadline()
|
||||||
|
|
||||||
|
|
||||||
|
def create_task_group() -> TaskGroup:
|
||||||
|
"""
|
||||||
|
Create a task group.
|
||||||
|
|
||||||
|
:return: a task group
|
||||||
|
|
||||||
|
"""
|
||||||
|
return get_async_backend().create_task_group()
|
78
telecli/lib/python3.11/site-packages/anyio/_core/_testing.py
Normal file
78
telecli/lib/python3.11/site-packages/anyio/_core/_testing.py
Normal file
|
@ -0,0 +1,78 @@
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
from collections.abc import Awaitable, Generator
|
||||||
|
from typing import Any, cast
|
||||||
|
|
||||||
|
from ._eventloop import get_async_backend
|
||||||
|
|
||||||
|
|
||||||
|
class TaskInfo:
|
||||||
|
"""
|
||||||
|
Represents an asynchronous task.
|
||||||
|
|
||||||
|
:ivar int id: the unique identifier of the task
|
||||||
|
:ivar parent_id: the identifier of the parent task, if any
|
||||||
|
:vartype parent_id: Optional[int]
|
||||||
|
:ivar str name: the description of the task (if any)
|
||||||
|
:ivar ~collections.abc.Coroutine coro: the coroutine object of the task
|
||||||
|
"""
|
||||||
|
|
||||||
|
__slots__ = "_name", "id", "parent_id", "name", "coro"
|
||||||
|
|
||||||
|
def __init__(
|
||||||
|
self,
|
||||||
|
id: int,
|
||||||
|
parent_id: int | None,
|
||||||
|
name: str | None,
|
||||||
|
coro: Generator[Any, Any, Any] | Awaitable[Any],
|
||||||
|
):
|
||||||
|
func = get_current_task
|
||||||
|
self._name = f"{func.__module__}.{func.__qualname__}"
|
||||||
|
self.id: int = id
|
||||||
|
self.parent_id: int | None = parent_id
|
||||||
|
self.name: str | None = name
|
||||||
|
self.coro: Generator[Any, Any, Any] | Awaitable[Any] = coro
|
||||||
|
|
||||||
|
def __eq__(self, other: object) -> bool:
|
||||||
|
if isinstance(other, TaskInfo):
|
||||||
|
return self.id == other.id
|
||||||
|
|
||||||
|
return NotImplemented
|
||||||
|
|
||||||
|
def __hash__(self) -> int:
|
||||||
|
return hash(self.id)
|
||||||
|
|
||||||
|
def __repr__(self) -> str:
|
||||||
|
return f"{self.__class__.__name__}(id={self.id!r}, name={self.name!r})"
|
||||||
|
|
||||||
|
def has_pending_cancellation(self) -> bool:
|
||||||
|
"""
|
||||||
|
Return ``True`` if the task has a cancellation pending, ``False`` otherwise.
|
||||||
|
|
||||||
|
"""
|
||||||
|
return False
|
||||||
|
|
||||||
|
|
||||||
|
def get_current_task() -> TaskInfo:
|
||||||
|
"""
|
||||||
|
Return the current task.
|
||||||
|
|
||||||
|
:return: a representation of the current task
|
||||||
|
|
||||||
|
"""
|
||||||
|
return get_async_backend().get_current_task()
|
||||||
|
|
||||||
|
|
||||||
|
def get_running_tasks() -> list[TaskInfo]:
|
||||||
|
"""
|
||||||
|
Return a list of running tasks in the current event loop.
|
||||||
|
|
||||||
|
:return: a list of task info objects
|
||||||
|
|
||||||
|
"""
|
||||||
|
return cast("list[TaskInfo]", get_async_backend().get_running_tasks())
|
||||||
|
|
||||||
|
|
||||||
|
async def wait_all_tasks_blocked() -> None:
|
||||||
|
"""Wait until all other tasks are waiting for something."""
|
||||||
|
await get_async_backend().wait_all_tasks_blocked()
|
|
@ -0,0 +1,81 @@
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
from collections.abc import Callable, Mapping
|
||||||
|
from typing import Any, TypeVar, final, overload
|
||||||
|
|
||||||
|
from ._exceptions import TypedAttributeLookupError
|
||||||
|
|
||||||
|
T_Attr = TypeVar("T_Attr")
|
||||||
|
T_Default = TypeVar("T_Default")
|
||||||
|
undefined = object()
|
||||||
|
|
||||||
|
|
||||||
|
def typed_attribute() -> Any:
|
||||||
|
"""Return a unique object, used to mark typed attributes."""
|
||||||
|
return object()
|
||||||
|
|
||||||
|
|
||||||
|
class TypedAttributeSet:
|
||||||
|
"""
|
||||||
|
Superclass for typed attribute collections.
|
||||||
|
|
||||||
|
Checks that every public attribute of every subclass has a type annotation.
|
||||||
|
"""
|
||||||
|
|
||||||
|
def __init_subclass__(cls) -> None:
|
||||||
|
annotations: dict[str, Any] = getattr(cls, "__annotations__", {})
|
||||||
|
for attrname in dir(cls):
|
||||||
|
if not attrname.startswith("_") and attrname not in annotations:
|
||||||
|
raise TypeError(
|
||||||
|
f"Attribute {attrname!r} is missing its type annotation"
|
||||||
|
)
|
||||||
|
|
||||||
|
super().__init_subclass__()
|
||||||
|
|
||||||
|
|
||||||
|
class TypedAttributeProvider:
|
||||||
|
"""Base class for classes that wish to provide typed extra attributes."""
|
||||||
|
|
||||||
|
@property
|
||||||
|
def extra_attributes(self) -> Mapping[T_Attr, Callable[[], T_Attr]]:
|
||||||
|
"""
|
||||||
|
A mapping of the extra attributes to callables that return the corresponding
|
||||||
|
values.
|
||||||
|
|
||||||
|
If the provider wraps another provider, the attributes from that wrapper should
|
||||||
|
also be included in the returned mapping (but the wrapper may override the
|
||||||
|
callables from the wrapped instance).
|
||||||
|
|
||||||
|
"""
|
||||||
|
return {}
|
||||||
|
|
||||||
|
@overload
|
||||||
|
def extra(self, attribute: T_Attr) -> T_Attr: ...
|
||||||
|
|
||||||
|
@overload
|
||||||
|
def extra(self, attribute: T_Attr, default: T_Default) -> T_Attr | T_Default: ...
|
||||||
|
|
||||||
|
@final
|
||||||
|
def extra(self, attribute: Any, default: object = undefined) -> object:
|
||||||
|
"""
|
||||||
|
extra(attribute, default=undefined)
|
||||||
|
|
||||||
|
Return the value of the given typed extra attribute.
|
||||||
|
|
||||||
|
:param attribute: the attribute (member of a :class:`~TypedAttributeSet`) to
|
||||||
|
look for
|
||||||
|
:param default: the value that should be returned if no value is found for the
|
||||||
|
attribute
|
||||||
|
:raises ~anyio.TypedAttributeLookupError: if the search failed and no default
|
||||||
|
value was given
|
||||||
|
|
||||||
|
"""
|
||||||
|
try:
|
||||||
|
getter = self.extra_attributes[attribute]
|
||||||
|
except KeyError:
|
||||||
|
if default is undefined:
|
||||||
|
raise TypedAttributeLookupError("Attribute not found") from None
|
||||||
|
else:
|
||||||
|
return default
|
||||||
|
|
||||||
|
return getter()
|
57
telecli/lib/python3.11/site-packages/anyio/abc/__init__.py
Normal file
57
telecli/lib/python3.11/site-packages/anyio/abc/__init__.py
Normal file
|
@ -0,0 +1,57 @@
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
from typing import Any
|
||||||
|
|
||||||
|
from ._eventloop import AsyncBackend as AsyncBackend
|
||||||
|
from ._resources import AsyncResource as AsyncResource
|
||||||
|
from ._sockets import ConnectedUDPSocket as ConnectedUDPSocket
|
||||||
|
from ._sockets import ConnectedUNIXDatagramSocket as ConnectedUNIXDatagramSocket
|
||||||
|
from ._sockets import IPAddressType as IPAddressType
|
||||||
|
from ._sockets import IPSockAddrType as IPSockAddrType
|
||||||
|
from ._sockets import SocketAttribute as SocketAttribute
|
||||||
|
from ._sockets import SocketListener as SocketListener
|
||||||
|
from ._sockets import SocketStream as SocketStream
|
||||||
|
from ._sockets import UDPPacketType as UDPPacketType
|
||||||
|
from ._sockets import UDPSocket as UDPSocket
|
||||||
|
from ._sockets import UNIXDatagramPacketType as UNIXDatagramPacketType
|
||||||
|
from ._sockets import UNIXDatagramSocket as UNIXDatagramSocket
|
||||||
|
from ._sockets import UNIXSocketStream as UNIXSocketStream
|
||||||
|
from ._streams import AnyByteReceiveStream as AnyByteReceiveStream
|
||||||
|
from ._streams import AnyByteSendStream as AnyByteSendStream
|
||||||
|
from ._streams import AnyByteStream as AnyByteStream
|
||||||
|
from ._streams import AnyUnreliableByteReceiveStream as AnyUnreliableByteReceiveStream
|
||||||
|
from ._streams import AnyUnreliableByteSendStream as AnyUnreliableByteSendStream
|
||||||
|
from ._streams import AnyUnreliableByteStream as AnyUnreliableByteStream
|
||||||
|
from ._streams import ByteReceiveStream as ByteReceiveStream
|
||||||
|
from ._streams import ByteSendStream as ByteSendStream
|
||||||
|
from ._streams import ByteStream as ByteStream
|
||||||
|
from ._streams import Listener as Listener
|
||||||
|
from ._streams import ObjectReceiveStream as ObjectReceiveStream
|
||||||
|
from ._streams import ObjectSendStream as ObjectSendStream
|
||||||
|
from ._streams import ObjectStream as ObjectStream
|
||||||
|
from ._streams import UnreliableObjectReceiveStream as UnreliableObjectReceiveStream
|
||||||
|
from ._streams import UnreliableObjectSendStream as UnreliableObjectSendStream
|
||||||
|
from ._streams import UnreliableObjectStream as UnreliableObjectStream
|
||||||
|
from ._subprocesses import Process as Process
|
||||||
|
from ._tasks import TaskGroup as TaskGroup
|
||||||
|
from ._tasks import TaskStatus as TaskStatus
|
||||||
|
from ._testing import TestRunner as TestRunner
|
||||||
|
|
||||||
|
# Re-exported here, for backwards compatibility
|
||||||
|
# isort: off
|
||||||
|
from .._core._synchronization import (
|
||||||
|
CapacityLimiter as CapacityLimiter,
|
||||||
|
Condition as Condition,
|
||||||
|
Event as Event,
|
||||||
|
Lock as Lock,
|
||||||
|
Semaphore as Semaphore,
|
||||||
|
)
|
||||||
|
from .._core._tasks import CancelScope as CancelScope
|
||||||
|
from ..from_thread import BlockingPortal as BlockingPortal
|
||||||
|
|
||||||
|
# Re-export imports so they look like they live directly in this package
|
||||||
|
key: str
|
||||||
|
value: Any
|
||||||
|
for key, value in list(locals().items()):
|
||||||
|
if getattr(value, "__module__", "").startswith("anyio.abc."):
|
||||||
|
value.__module__ = __name__
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user