Hendrik Langer
5 years ago
commit
586156c6c1
1799 changed files with 267096 additions and 0 deletions
@ -0,0 +1 @@ |
|||||
|
.pio |
@ -0,0 +1,67 @@ |
|||||
|
# Continuous Integration (CI) is the practice, in software |
||||
|
# engineering, of merging all developer working copies with a shared mainline |
||||
|
# several times a day < https://docs.platformio.org/page/ci/index.html > |
||||
|
# |
||||
|
# Documentation: |
||||
|
# |
||||
|
# * Travis CI Embedded Builds with PlatformIO |
||||
|
# < https://docs.travis-ci.com/user/integration/platformio/ > |
||||
|
# |
||||
|
# * PlatformIO integration with Travis CI |
||||
|
# < https://docs.platformio.org/page/ci/travis.html > |
||||
|
# |
||||
|
# * User Guide for `platformio ci` command |
||||
|
# < https://docs.platformio.org/page/userguide/cmd_ci.html > |
||||
|
# |
||||
|
# |
||||
|
# Please choose one of the following templates (proposed below) and uncomment |
||||
|
# it (remove "# " before each line) or use own configuration according to the |
||||
|
# Travis CI documentation (see above). |
||||
|
# |
||||
|
|
||||
|
|
||||
|
# |
||||
|
# Template #1: General project. Test it using existing `platformio.ini`. |
||||
|
# |
||||
|
|
||||
|
# language: python |
||||
|
# python: |
||||
|
# - "2.7" |
||||
|
# |
||||
|
# sudo: false |
||||
|
# cache: |
||||
|
# directories: |
||||
|
# - "~/.platformio" |
||||
|
# |
||||
|
# install: |
||||
|
# - pip install -U platformio |
||||
|
# - platformio update |
||||
|
# |
||||
|
# script: |
||||
|
# - platformio run |
||||
|
|
||||
|
|
||||
|
# |
||||
|
# Template #2: The project is intended to be used as a library with examples. |
||||
|
# |
||||
|
|
||||
|
# language: python |
||||
|
# python: |
||||
|
# - "2.7" |
||||
|
# |
||||
|
# sudo: false |
||||
|
# cache: |
||||
|
# directories: |
||||
|
# - "~/.platformio" |
||||
|
# |
||||
|
# env: |
||||
|
# - PLATFORMIO_CI_SRC=path/to/test/file.c |
||||
|
# - PLATFORMIO_CI_SRC=examples/file.ino |
||||
|
# - PLATFORMIO_CI_SRC=path/to/test/directory |
||||
|
# |
||||
|
# install: |
||||
|
# - pip install -U platformio |
||||
|
# - platformio update |
||||
|
# |
||||
|
# script: |
||||
|
# - platformio ci --lib="." --board=ID_1 --board=ID_2 --board=ID_N |
Binary file not shown.
@ -0,0 +1,78 @@ |
|||||
|
# This file must be used with "source bin/activate" *from bash* |
||||
|
# you cannot run it directly |
||||
|
|
||||
|
deactivate () { |
||||
|
unset -f pydoc >/dev/null 2>&1 |
||||
|
|
||||
|
# reset old environment variables |
||||
|
# ! [ -z ${VAR+_} ] returns true if VAR is declared at all |
||||
|
if ! [ -z "${_OLD_VIRTUAL_PATH+_}" ] ; then |
||||
|
PATH="$_OLD_VIRTUAL_PATH" |
||||
|
export PATH |
||||
|
unset _OLD_VIRTUAL_PATH |
||||
|
fi |
||||
|
if ! [ -z "${_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-}" ] || [ -n "${ZSH_VERSION-}" ] ; then |
||||
|
hash -r 2>/dev/null |
||||
|
fi |
||||
|
|
||||
|
if ! [ -z "${_OLD_VIRTUAL_PS1+_}" ] ; then |
||||
|
PS1="$_OLD_VIRTUAL_PS1" |
||||
|
export PS1 |
||||
|
unset _OLD_VIRTUAL_PS1 |
||||
|
fi |
||||
|
|
||||
|
unset VIRTUAL_ENV |
||||
|
if [ ! "${1-}" = "nondestructive" ] ; then |
||||
|
# Self destruct! |
||||
|
unset -f deactivate |
||||
|
fi |
||||
|
} |
||||
|
|
||||
|
# unset irrelevant variables |
||||
|
deactivate nondestructive |
||||
|
|
||||
|
VIRTUAL_ENV="/home/hendrik/Projects/midistepper" |
||||
|
export VIRTUAL_ENV |
||||
|
|
||||
|
_OLD_VIRTUAL_PATH="$PATH" |
||||
|
PATH="$VIRTUAL_ENV/bin:$PATH" |
||||
|
export PATH |
||||
|
|
||||
|
# unset PYTHONHOME if set |
||||
|
if ! [ -z "${PYTHONHOME+_}" ] ; then |
||||
|
_OLD_VIRTUAL_PYTHONHOME="$PYTHONHOME" |
||||
|
unset PYTHONHOME |
||||
|
fi |
||||
|
|
||||
|
if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT-}" ] ; then |
||||
|
_OLD_VIRTUAL_PS1="${PS1-}" |
||||
|
if [ "x" != x ] ; then |
||||
|
PS1="${PS1-}" |
||||
|
else |
||||
|
PS1="(`basename \"$VIRTUAL_ENV\"`) ${PS1-}" |
||||
|
fi |
||||
|
export PS1 |
||||
|
fi |
||||
|
|
||||
|
# Make sure to unalias pydoc if it's already there |
||||
|
alias pydoc 2>/dev/null >/dev/null && unalias pydoc || true |
||||
|
|
||||
|
pydoc () { |
||||
|
python -m pydoc "$@" |
||||
|
} |
||||
|
|
||||
|
# 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-}" ] || [ -n "${ZSH_VERSION-}" ] ; then |
||||
|
hash -r 2>/dev/null |
||||
|
fi |
@ -0,0 +1,55 @@ |
|||||
|
# 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>. |
||||
|
|
||||
|
set newline='\ |
||||
|
' |
||||
|
|
||||
|
alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH:q" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT:q" && unset _OLD_VIRTUAL_PROMPT; unsetenv VIRTUAL_ENV; test "\!:*" != "nondestructive" && unalias deactivate && unalias pydoc' |
||||
|
|
||||
|
# Unset irrelevant variables. |
||||
|
deactivate nondestructive |
||||
|
|
||||
|
setenv VIRTUAL_ENV "/home/hendrik/Projects/midistepper" |
||||
|
|
||||
|
set _OLD_VIRTUAL_PATH="$PATH:q" |
||||
|
setenv PATH "$VIRTUAL_ENV:q/bin:$PATH:q" |
||||
|
|
||||
|
|
||||
|
|
||||
|
if ("" != "") then |
||||
|
set env_name = "" |
||||
|
else |
||||
|
set env_name = '('"$VIRTUAL_ENV:t:q"') ' |
||||
|
endif |
||||
|
|
||||
|
if ( $?VIRTUAL_ENV_DISABLE_PROMPT ) then |
||||
|
if ( $VIRTUAL_ENV_DISABLE_PROMPT == "" ) then |
||||
|
set do_prompt = "1" |
||||
|
else |
||||
|
set do_prompt = "0" |
||||
|
endif |
||||
|
else |
||||
|
set do_prompt = "1" |
||||
|
endif |
||||
|
|
||||
|
if ( $do_prompt == "1" ) then |
||||
|
# Could be in a non-interactive environment, |
||||
|
# in which case, $prompt is undefined and we wouldn't |
||||
|
# care about the prompt anyway. |
||||
|
if ( $?prompt ) then |
||||
|
set _OLD_VIRTUAL_PROMPT="$prompt:q" |
||||
|
if ( "$prompt:q" =~ *"$newline:q"* ) then |
||||
|
: |
||||
|
else |
||||
|
set prompt = "$env_name:q$prompt:q" |
||||
|
endif |
||||
|
endif |
||||
|
endif |
||||
|
|
||||
|
unset env_name |
||||
|
unset do_prompt |
||||
|
|
||||
|
alias pydoc python -m pydoc |
||||
|
|
||||
|
rehash |
@ -0,0 +1,101 @@ |
|||||
|
# This file must be used using `source bin/activate.fish` *within a running fish ( http://fishshell.com ) session*. |
||||
|
# Do not run it directly. |
||||
|
|
||||
|
function _bashify_path -d "Converts a fish path to something bash can recognize" |
||||
|
set fishy_path $argv |
||||
|
set bashy_path $fishy_path[1] |
||||
|
for path_part in $fishy_path[2..-1] |
||||
|
set bashy_path "$bashy_path:$path_part" |
||||
|
end |
||||
|
echo $bashy_path |
||||
|
end |
||||
|
|
||||
|
function _fishify_path -d "Converts a bash path to something fish can recognize" |
||||
|
echo $argv | tr ':' '\n' |
||||
|
end |
||||
|
|
||||
|
function deactivate -d 'Exit virtualenv mode and return to the normal environment.' |
||||
|
# reset old environment variables |
||||
|
if test -n "$_OLD_VIRTUAL_PATH" |
||||
|
# https://github.com/fish-shell/fish-shell/issues/436 altered PATH handling |
||||
|
if test (echo $FISH_VERSION | tr "." "\n")[1] -lt 3 |
||||
|
set -gx PATH (_fishify_path $_OLD_VIRTUAL_PATH) |
||||
|
else |
||||
|
set -gx PATH $_OLD_VIRTUAL_PATH |
||||
|
end |
||||
|
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 an empty local `$fish_function_path` to allow the removal of `fish_prompt` using `functions -e`. |
||||
|
set -l fish_function_path |
||||
|
|
||||
|
# Erase virtualenv's `fish_prompt` and restore the original. |
||||
|
functions -e fish_prompt |
||||
|
functions -c _old_fish_prompt fish_prompt |
||||
|
functions -e _old_fish_prompt |
||||
|
set -e _OLD_FISH_PROMPT_OVERRIDE |
||||
|
end |
||||
|
|
||||
|
set -e VIRTUAL_ENV |
||||
|
|
||||
|
if test "$argv[1]" != 'nondestructive' |
||||
|
# Self-destruct! |
||||
|
functions -e pydoc |
||||
|
functions -e deactivate |
||||
|
functions -e _bashify_path |
||||
|
functions -e _fishify_path |
||||
|
end |
||||
|
end |
||||
|
|
||||
|
# Unset irrelevant variables. |
||||
|
deactivate nondestructive |
||||
|
|
||||
|
set -gx VIRTUAL_ENV "/home/hendrik/Projects/midistepper" |
||||
|
|
||||
|
# https://github.com/fish-shell/fish-shell/issues/436 altered PATH handling |
||||
|
if test (echo $FISH_VERSION | tr "." "\n")[1] -lt 3 |
||||
|
set -gx _OLD_VIRTUAL_PATH (_bashify_path $PATH) |
||||
|
else |
||||
|
set -gx _OLD_VIRTUAL_PATH $PATH |
||||
|
end |
||||
|
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 |
||||
|
|
||||
|
function pydoc |
||||
|
python -m pydoc $argv |
||||
|
end |
||||
|
|
||||
|
if test -z "$VIRTUAL_ENV_DISABLE_PROMPT" |
||||
|
# Copy the current `fish_prompt` function as `_old_fish_prompt`. |
||||
|
functions -c fish_prompt _old_fish_prompt |
||||
|
|
||||
|
function fish_prompt |
||||
|
# Save the current $status, for fish_prompts that display it. |
||||
|
set -l old_status $status |
||||
|
|
||||
|
# Prompt override provided? |
||||
|
# If not, just prepend the environment name. |
||||
|
if test -n "" |
||||
|
printf '%s%s' "" (set_color normal) |
||||
|
else |
||||
|
printf '%s(%s) ' (set_color normal) (basename "$VIRTUAL_ENV") |
||||
|
end |
||||
|
|
||||
|
# Restore the original $status |
||||
|
echo "exit $old_status" | source |
||||
|
_old_fish_prompt |
||||
|
end |
||||
|
|
||||
|
set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV" |
||||
|
end |
@ -0,0 +1,72 @@ |
|||||
|
# This file must be dot sourced from PoSh; you cannot run it directly. Do this: . ./activate.ps1 |
||||
|
|
||||
|
$script:THIS_PATH = $myinvocation.mycommand.path |
||||
|
$script:BASE_DIR = split-path (resolve-path "$THIS_PATH/..") -Parent |
||||
|
|
||||
|
function global:deactivate([switch] $NonDestructive) |
||||
|
{ |
||||
|
if (test-path variable:_OLD_VIRTUAL_PATH) |
||||
|
{ |
||||
|
$env:PATH = $variable:_OLD_VIRTUAL_PATH |
||||
|
remove-variable "_OLD_VIRTUAL_PATH" -scope global |
||||
|
} |
||||
|
|
||||
|
if (test-path function:_old_virtual_prompt) |
||||
|
{ |
||||
|
$function:prompt = $function:_old_virtual_prompt |
||||
|
remove-item function:\_old_virtual_prompt |
||||
|
} |
||||
|
|
||||
|
if ($env:VIRTUAL_ENV) |
||||
|
{ |
||||
|
$old_env = split-path $env:VIRTUAL_ENV -leaf |
||||
|
remove-item env:VIRTUAL_ENV -erroraction silentlycontinue |
||||
|
} |
||||
|
|
||||
|
if (!$NonDestructive) |
||||
|
{ |
||||
|
# Self destruct! |
||||
|
remove-item function:deactivate |
||||
|
remove-item function:pydoc |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
function global:pydoc |
||||
|
{ |
||||
|
python -m pydoc $args |
||||
|
} |
||||
|
|
||||
|
# unset irrelevant variables |
||||
|
deactivate -nondestructive |
||||
|
|
||||
|
$VIRTUAL_ENV = $BASE_DIR |
||||
|
$env:VIRTUAL_ENV = $VIRTUAL_ENV |
||||
|
|
||||
|
$global:_OLD_VIRTUAL_PATH = $env:PATH |
||||
|
$env:PATH = "$env:VIRTUAL_ENV/bin:" + $env:PATH |
||||
|
if (!$env:VIRTUAL_ENV_DISABLE_PROMPT) |
||||
|
{ |
||||
|
function global:_old_virtual_prompt |
||||
|
{ |
||||
|
"" |
||||
|
} |
||||
|
$function:_old_virtual_prompt = $function:prompt |
||||
|
if ("" -ne "") |
||||
|
{ |
||||
|
function global:prompt |
||||
|
{ |
||||
|
# Add the custom prefix to the existing prompt |
||||
|
write-host "" -nonewline |
||||
|
& $function:_old_virtual_prompt |
||||
|
} |
||||
|
} |
||||
|
else |
||||
|
{ |
||||
|
function global:prompt |
||||
|
{ |
||||
|
# Add a prefix to the current prompt, but don't discard it. |
||||
|
write-host "($( split-path $env:VIRTUAL_ENV -leaf )) " -nonewline |
||||
|
& $function:_old_virtual_prompt |
||||
|
} |
||||
|
} |
||||
|
} |
@ -0,0 +1,46 @@ |
|||||
|
"""Activate virtualenv for current interpreter: |
||||
|
|
||||
|
Use exec(open(this_file).read(), {'__file__': this_file}). |
||||
|
|
||||
|
This can be used when you must use an existing Python interpreter, not the virtualenv bin/python. |
||||
|
""" |
||||
|
import os |
||||
|
import site |
||||
|
import sys |
||||
|
|
||||
|
try: |
||||
|
__file__ |
||||
|
except NameError: |
||||
|
raise AssertionError("You must use exec(open(this_file).read(), {'__file__': this_file}))") |
||||
|
|
||||
|
# prepend bin to PATH (this file is inside the bin directory) |
||||
|
bin_dir = os.path.dirname(os.path.abspath(__file__)) |
||||
|
os.environ["PATH"] = os.pathsep.join([bin_dir] + os.environ.get("PATH", "").split(os.pathsep)) |
||||
|
|
||||
|
base = os.path.dirname(bin_dir) |
||||
|
|
||||
|
# virtual env is right above bin directory |
||||
|
os.environ["VIRTUAL_ENV"] = base |
||||
|
|
||||
|
# add the virtual environments site-package to the host python import mechanism |
||||
|
IS_PYPY = hasattr(sys, "pypy_version_info") |
||||
|
IS_JYTHON = sys.platform.startswith("java") |
||||
|
if IS_JYTHON: |
||||
|
site_packages = os.path.join(base, "Lib", "site-packages") |
||||
|
elif IS_PYPY: |
||||
|
site_packages = os.path.join(base, "site-packages") |
||||
|
else: |
||||
|
IS_WIN = sys.platform == "win32" |
||||
|
if IS_WIN: |
||||
|
site_packages = os.path.join(base, "Lib", "site-packages") |
||||
|
else: |
||||
|
site_packages = os.path.join(base, "lib", "python{}".format(sys.version[:3]), "site-packages") |
||||
|
|
||||
|
prev = set(sys.path) |
||||
|
site.addsitedir(site_packages) |
||||
|
sys.real_prefix = sys.prefix |
||||
|
sys.prefix = base |
||||
|
|
||||
|
# Move the added items to the front of the path, in place |
||||
|
new = list(sys.path) |
||||
|
sys.path[:] = [i for i in new if i not in prev] + [i for i in new if i in prev] |
File diff suppressed because it is too large
Binary file not shown.
@ -0,0 +1,8 @@ |
|||||
|
#!/home/hendrik/Projects/midistepper/bin/python |
||||
|
# -*- coding: utf-8 -*- |
||||
|
import re |
||||
|
import sys |
||||
|
from chardet.cli.chardetect import main |
||||
|
if __name__ == '__main__': |
||||
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) |
||||
|
sys.exit(main()) |
@ -0,0 +1,10 @@ |
|||||
|
#!/home/hendrik/Projects/midistepper/bin/python |
||||
|
# -*- coding: utf-8 -*- |
||||
|
import re |
||||
|
import sys |
||||
|
|
||||
|
from setuptools.command.easy_install import main |
||||
|
|
||||
|
if __name__ == '__main__': |
||||
|
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) |
||||
|
sys.exit(main()) |
@ -0,0 +1,10 @@ |
|||||
|
#!/home/hendrik/Projects/midistepper/bin/python |
||||
|
# -*- coding: utf-8 -*- |
||||
|
import re |
||||
|
import sys |
||||
|
|
||||
|
from setuptools.command.easy_install import main |
||||
|
|
||||
|
if __name__ == '__main__': |
||||
|
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) |
||||
|
sys.exit(main()) |
@ -0,0 +1,976 @@ |
|||||
|
#!/home/hendrik/Projects/midistepper/bin/python |
||||
|
# |
||||
|
# Very simple serial terminal |
||||
|
# |
||||
|
# This file is part of pySerial. https://github.com/pyserial/pyserial |
||||
|
# (C)2002-2015 Chris Liechti <cliechti@gmx.net> |
||||
|
# |
||||
|
# SPDX-License-Identifier: BSD-3-Clause |
||||
|
|
||||
|
import codecs |
||||
|
import os |
||||
|
import sys |
||||
|
import threading |
||||
|
|
||||
|
import serial |
||||
|
from serial.tools.list_ports import comports |
||||
|
from serial.tools import hexlify_codec |
||||
|
|
||||
|
# pylint: disable=wrong-import-order,wrong-import-position |
||||
|
|
||||
|
codecs.register(lambda c: hexlify_codec.getregentry() if c == 'hexlify' else None) |
||||
|
|
||||
|
try: |
||||
|
raw_input |
||||
|
except NameError: |
||||
|
# pylint: disable=redefined-builtin,invalid-name |
||||
|
raw_input = input # in python3 it's "raw" |
||||
|
unichr = chr |
||||
|
|
||||
|
|
||||
|
def key_description(character): |
||||
|
"""generate a readable description for a key""" |
||||
|
ascii_code = ord(character) |
||||
|
if ascii_code < 32: |
||||
|
return 'Ctrl+{:c}'.format(ord('@') + ascii_code) |
||||
|
else: |
||||
|
return repr(character) |
||||
|
|
||||
|
|
||||
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
||||
|
class ConsoleBase(object): |
||||
|
"""OS abstraction for console (input/output codec, no echo)""" |
||||
|
|
||||
|
def __init__(self): |
||||
|
if sys.version_info >= (3, 0): |
||||
|
self.byte_output = sys.stdout.buffer |
||||
|
else: |
||||
|
self.byte_output = sys.stdout |
||||
|
self.output = sys.stdout |
||||
|
|
||||
|
def setup(self): |
||||
|
"""Set console to read single characters, no echo""" |
||||
|
|
||||
|
def cleanup(self): |
||||
|
"""Restore default console settings""" |
||||
|
|
||||
|
def getkey(self): |
||||
|
"""Read a single key from the console""" |
||||
|
return None |
||||
|
|
||||
|
def write_bytes(self, byte_string): |
||||
|
"""Write bytes (already encoded)""" |
||||
|
self.byte_output.write(byte_string) |
||||
|
self.byte_output.flush() |
||||
|
|
||||
|
def write(self, text): |
||||
|
"""Write string""" |
||||
|
self.output.write(text) |
||||
|
self.output.flush() |
||||
|
|
||||
|
def cancel(self): |
||||
|
"""Cancel getkey operation""" |
||||
|
|
||||
|
# - - - - - - - - - - - - - - - - - - - - - - - - |
||||
|
# context manager: |
||||
|
# switch terminal temporary to normal mode (e.g. to get user input) |
||||
|
|
||||
|
def __enter__(self): |
||||
|
self.cleanup() |
||||
|
return self |
||||
|
|
||||
|
def __exit__(self, *args, **kwargs): |
||||
|
self.setup() |
||||
|
|
||||
|
|
||||
|
if os.name == 'nt': # noqa |
||||
|
import msvcrt |
||||
|
import ctypes |
||||
|
|
||||
|
class Out(object): |
||||
|
"""file-like wrapper that uses os.write""" |
||||
|
|
||||
|
def __init__(self, fd): |
||||
|
self.fd = fd |
||||
|
|
||||
|
def flush(self): |
||||
|
pass |
||||
|
|
||||
|
def write(self, s): |
||||
|
os.write(self.fd, s) |
||||
|
|
||||
|
class Console(ConsoleBase): |
||||
|
def __init__(self): |
||||
|
super(Console, self).__init__() |
||||
|
self._saved_ocp = ctypes.windll.kernel32.GetConsoleOutputCP() |
||||
|
self._saved_icp = ctypes.windll.kernel32.GetConsoleCP() |
||||
|
ctypes.windll.kernel32.SetConsoleOutputCP(65001) |
||||
|
ctypes.windll.kernel32.SetConsoleCP(65001) |
||||
|
self.output = codecs.getwriter('UTF-8')(Out(sys.stdout.fileno()), 'replace') |
||||
|
# the change of the code page is not propagated to Python, manually fix it |
||||
|
sys.stderr = codecs.getwriter('UTF-8')(Out(sys.stderr.fileno()), 'replace') |
||||
|
sys.stdout = self.output |
||||
|
self.output.encoding = 'UTF-8' # needed for input |
||||
|
|
||||
|
def __del__(self): |
||||
|
ctypes.windll.kernel32.SetConsoleOutputCP(self._saved_ocp) |
||||
|
ctypes.windll.kernel32.SetConsoleCP(self._saved_icp) |
||||
|
|
||||
|
def getkey(self): |
||||
|
while True: |
||||
|
z = msvcrt.getwch() |
||||
|
if z == unichr(13): |
||||
|
return unichr(10) |
||||
|
elif z in (unichr(0), unichr(0x0e)): # functions keys, ignore |
||||
|
msvcrt.getwch() |
||||
|
else: |
||||
|
return z |
||||
|
|
||||
|
def cancel(self): |
||||
|
# CancelIo, CancelSynchronousIo do not seem to work when using |
||||
|
# getwch, so instead, send a key to the window with the console |
||||
|
hwnd = ctypes.windll.kernel32.GetConsoleWindow() |
||||
|
ctypes.windll.user32.PostMessageA(hwnd, 0x100, 0x0d, 0) |
||||
|
|
||||
|
elif os.name == 'posix': |
||||
|
import atexit |
||||
|
import termios |
||||
|
import fcntl |
||||
|
|
||||
|
class Console(ConsoleBase): |
||||
|
def __init__(self): |
||||
|
super(Console, self).__init__() |
||||
|
self.fd = sys.stdin.fileno() |
||||
|
self.old = termios.tcgetattr(self.fd) |
||||
|
atexit.register(self.cleanup) |
||||
|
if sys.version_info < (3, 0): |
||||
|
self.enc_stdin = codecs.getreader(sys.stdin.encoding)(sys.stdin) |
||||
|
else: |
||||
|
self.enc_stdin = sys.stdin |
||||
|
|
||||
|
def setup(self): |
||||
|
new = termios.tcgetattr(self.fd) |
||||
|
new[3] = new[3] & ~termios.ICANON & ~termios.ECHO & ~termios.ISIG |
||||
|
new[6][termios.VMIN] = 1 |
||||
|
new[6][termios.VTIME] = 0 |
||||
|
termios.tcsetattr(self.fd, termios.TCSANOW, new) |
||||
|
|
||||
|
def getkey(self): |
||||
|
c = self.enc_stdin.read(1) |
||||
|
if c == unichr(0x7f): |
||||
|
c = unichr(8) # map the BS key (which yields DEL) to backspace |
||||
|
return c |
||||
|
|
||||
|
def cancel(self): |
||||
|
fcntl.ioctl(self.fd, termios.TIOCSTI, b'\0') |
||||
|
|
||||
|
def cleanup(self): |
||||
|
termios.tcsetattr(self.fd, termios.TCSAFLUSH, self.old) |
||||
|
|
||||
|
else: |
||||
|
raise NotImplementedError( |
||||
|
'Sorry no implementation for your platform ({}) available.'.format(sys.platform)) |
||||
|
|
||||
|
|
||||
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
||||
|
|
||||
|
class Transform(object): |
||||
|
"""do-nothing: forward all data unchanged""" |
||||
|
def rx(self, text): |
||||
|
"""text received from serial port""" |
||||
|
return text |
||||
|
|
||||
|
def tx(self, text): |
||||
|
"""text to be sent to serial port""" |
||||
|
return text |
||||
|
|
||||
|
def echo(self, text): |
||||
|
"""text to be sent but displayed on console""" |
||||
|
return text |
||||
|
|
||||
|
|
||||
|
class CRLF(Transform): |
||||
|
"""ENTER sends CR+LF""" |
||||
|
|
||||
|
def tx(self, text): |
||||
|
return text.replace('\n', '\r\n') |
||||
|
|
||||
|
|
||||
|
class CR(Transform): |
||||
|
"""ENTER sends CR""" |
||||
|
|
||||
|
def rx(self, text): |
||||
|
return text.replace('\r', '\n') |
||||
|
|
||||
|
def tx(self, text): |
||||
|
return text.replace('\n', '\r') |
||||
|
|
||||
|
|
||||
|
class LF(Transform): |
||||
|
"""ENTER sends LF""" |
||||
|
|
||||
|
|
||||
|
class NoTerminal(Transform): |
||||
|
"""remove typical terminal control codes from input""" |
||||
|
|
||||
|
REPLACEMENT_MAP = dict((x, 0x2400 + x) for x in range(32) if unichr(x) not in '\r\n\b\t') |
||||
|
REPLACEMENT_MAP.update( |
||||
|
{ |
||||
|
0x7F: 0x2421, # DEL |
||||
|
0x9B: 0x2425, # CSI |
||||
|
}) |
||||
|
|
||||
|
def rx(self, text): |
||||
|
return text.translate(self.REPLACEMENT_MAP) |
||||
|
|
||||
|
echo = rx |
||||
|
|
||||
|
|
||||
|
class NoControls(NoTerminal): |
||||
|
"""Remove all control codes, incl. CR+LF""" |
||||
|
|
||||
|
REPLACEMENT_MAP = dict((x, 0x2400 + x) for x in range(32)) |
||||
|
REPLACEMENT_MAP.update( |
||||
|
{ |
||||
|
0x20: 0x2423, # visual space |
||||
|
0x7F: 0x2421, # DEL |
||||
|
0x9B: 0x2425, # CSI |
||||
|
}) |
||||
|
|
||||
|
|
||||
|
class Printable(Transform): |
||||
|
"""Show decimal code for all non-ASCII characters and replace most control codes""" |
||||
|
|
||||
|
def rx(self, text): |
||||
|
r = [] |
||||
|
for c in text: |
||||
|
if ' ' <= c < '\x7f' or c in '\r\n\b\t': |
||||
|
r.append(c) |
||||
|
elif c < ' ': |
||||
|
r.append(unichr(0x2400 + ord(c))) |
||||
|
else: |
||||
|
r.extend(unichr(0x2080 + ord(d) - 48) for d in '{:d}'.format(ord(c))) |
||||
|
r.append(' ') |
||||
|
return ''.join(r) |
||||
|
|
||||
|
echo = rx |
||||
|
|
||||
|
|
||||
|
class Colorize(Transform): |
||||
|
"""Apply different colors for received and echo""" |
||||
|
|
||||
|
def __init__(self): |
||||
|
# XXX make it configurable, use colorama? |
||||
|
self.input_color = '\x1b[37m' |
||||
|
self.echo_color = '\x1b[31m' |
||||
|
|
||||
|
def rx(self, text): |
||||
|
return self.input_color + text |
||||
|
|
||||
|
def echo(self, text): |
||||
|
return self.echo_color + text |
||||
|
|
||||
|
|
||||
|
class DebugIO(Transform): |
||||
|
"""Print what is sent and received""" |
||||
|
|
||||
|
def rx(self, text): |
||||
|
sys.stderr.write(' [RX:{}] '.format(repr(text))) |
||||
|
sys.stderr.flush() |
||||
|
return text |
||||
|
|
||||
|
def tx(self, text): |
||||
|
sys.stderr.write(' [TX:{}] '.format(repr(text))) |
||||
|
sys.stderr.flush() |
||||
|
return text |
||||
|
|
||||
|
|
||||
|
# other ideas: |
||||
|
# - add date/time for each newline |
||||
|
# - insert newline after: a) timeout b) packet end character |
||||
|
|
||||
|
EOL_TRANSFORMATIONS = { |
||||
|
'crlf': CRLF, |
||||
|
'cr': CR, |
||||
|
'lf': LF, |
||||
|
} |
||||
|
|
||||
|
TRANSFORMATIONS = { |
||||
|
'direct': Transform, # no transformation |
||||
|
'default': NoTerminal, |
||||
|
'nocontrol': NoControls, |
||||
|
'printable': Printable, |
||||
|
'colorize': Colorize, |
||||
|
'debug': DebugIO, |
||||
|
} |
||||
|
|
||||
|
|
||||
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
||||
|
def ask_for_port(): |
||||
|
"""\ |
||||
|
Show a list of ports and ask the user for a choice. To make selection |
||||
|
easier on systems with long device names, also allow the input of an |
||||
|
index. |
||||
|
""" |
||||
|
sys.stderr.write('\n--- Available ports:\n') |
||||
|
ports = [] |
||||
|
for n, (port, desc, hwid) in enumerate(sorted(comports()), 1): |
||||
|
sys.stderr.write('--- {:2}: {:20} {!r}\n'.format(n, port, desc)) |
||||
|
ports.append(port) |
||||
|
while True: |
||||
|
port = raw_input('--- Enter port index or full name: ') |
||||
|
try: |
||||
|
index = int(port) - 1 |
||||
|
if not 0 <= index < len(ports): |
||||
|
sys.stderr.write('--- Invalid index!\n') |
||||
|
continue |
||||
|
except ValueError: |
||||
|
pass |
||||
|
else: |
||||
|
port = ports[index] |
||||
|
return port |
||||
|
|
||||
|
|
||||
|
class Miniterm(object): |
||||
|
"""\ |
||||
|
Terminal application. Copy data from serial port to console and vice versa. |
||||
|
Handle special keys from the console to show menu etc. |
||||
|
""" |
||||
|
|
||||
|
def __init__(self, serial_instance, echo=False, eol='crlf', filters=()): |
||||
|
self.console = Console() |
||||
|
self.serial = serial_instance |
||||
|
self.echo = echo |
||||
|
self.raw = False |
||||
|
self.input_encoding = 'UTF-8' |
||||
|
self.output_encoding = 'UTF-8' |
||||
|
self.eol = eol |
||||
|
self.filters = filters |
||||
|
self.update_transformations() |
||||
|
self.exit_character = 0x1d # GS/CTRL+] |
||||
|
self.menu_character = 0x14 # Menu: CTRL+T |
||||
|
self.alive = None |
||||
|
self._reader_alive = None |
||||
|
self.receiver_thread = None |
||||
|
self.rx_decoder = None |
||||
|
self.tx_decoder = None |
||||
|
|
||||
|
def _start_reader(self): |
||||
|
"""Start reader thread""" |
||||
|
self._reader_alive = True |
||||
|
# start serial->console thread |
||||
|
self.receiver_thread = threading.Thread(target=self.reader, name='rx') |
||||
|
self.receiver_thread.daemon = True |
||||
|
self.receiver_thread.start() |
||||
|
|
||||
|
def _stop_reader(self): |
||||
|
"""Stop reader thread only, wait for clean exit of thread""" |
||||
|
self._reader_alive = False |
||||
|
if hasattr(self.serial, 'cancel_read'): |
||||
|
self.serial.cancel_read() |
||||
|
self.receiver_thread.join() |
||||
|
|
||||
|
def start(self): |
||||
|
"""start worker threads""" |
||||
|
self.alive = True |
||||
|
self._start_reader() |
||||
|
# enter console->serial loop |
||||
|
self.transmitter_thread = threading.Thread(target=self.writer, name='tx') |
||||
|
self.transmitter_thread.daemon = True |
||||
|
self.transmitter_thread.start() |
||||
|
self.console.setup() |
||||
|
|
||||
|
def stop(self): |
||||
|
"""set flag to stop worker threads""" |
||||
|
self.alive = False |
||||
|
|
||||
|
def join(self, transmit_only=False): |
||||
|
"""wait for worker threads to terminate""" |
||||
|
self.transmitter_thread.join() |
||||
|
if not transmit_only: |
||||
|
if hasattr(self.serial, 'cancel_read'): |
||||
|
self.serial.cancel_read() |
||||
|
self.receiver_thread.join() |
||||
|
|
||||
|
def close(self): |
||||
|
self.serial.close() |
||||
|
|
||||
|
def update_transformations(self): |
||||
|
"""take list of transformation classes and instantiate them for rx and tx""" |
||||
|
transformations = [EOL_TRANSFORMATIONS[self.eol]] + [TRANSFORMATIONS[f] |
||||
|
for f in self.filters] |
||||
|
self.tx_transformations = [t() for t in transformations] |
||||
|
self.rx_transformations = list(reversed(self.tx_transformations)) |
||||
|
|
||||
|
def set_rx_encoding(self, encoding, errors='replace'): |
||||
|
"""set encoding for received data""" |
||||
|
self.input_encoding = encoding |
||||
|
self.rx_decoder = codecs.getincrementaldecoder(encoding)(errors) |
||||
|
|
||||
|
def set_tx_encoding(self, encoding, errors='replace'): |
||||
|
"""set encoding for transmitted data""" |
||||
|
self.output_encoding = encoding |
||||
|
self.tx_encoder = codecs.getincrementalencoder(encoding)(errors) |
||||
|
|
||||
|
def dump_port_settings(self): |
||||
|
"""Write current settings to sys.stderr""" |
||||
|
sys.stderr.write("\n--- Settings: {p.name} {p.baudrate},{p.bytesize},{p.parity},{p.stopbits}\n".format( |
||||
|
p=self.serial)) |
||||
|
sys.stderr.write('--- RTS: {:8} DTR: {:8} BREAK: {:8}\n'.format( |
||||
|
('active' if self.serial.rts else 'inactive'), |
||||
|
('active' if self.serial.dtr else 'inactive'), |
||||
|
('active' if self.serial.break_condition else 'inactive'))) |
||||
|
try: |
||||
|
sys.stderr.write('--- CTS: {:8} DSR: {:8} RI: {:8} CD: {:8}\n'.format( |
||||
|
('active' if self.serial.cts else 'inactive'), |
||||
|
('active' if self.serial.dsr else 'inactive'), |
||||
|
('active' if self.serial.ri else 'inactive'), |
||||
|
('active' if self.serial.cd else 'inactive'))) |
||||
|
except serial.SerialException: |
||||
|
# on RFC 2217 ports, it can happen if no modem state notification was |
||||
|
# yet received. ignore this error. |
||||
|
pass |
||||
|
sys.stderr.write('--- software flow control: {}\n'.format('active' if self.serial.xonxoff else 'inactive')) |
||||
|
sys.stderr.write('--- hardware flow control: {}\n'.format('active' if self.serial.rtscts else 'inactive')) |
||||
|
sys.stderr.write('--- serial input encoding: {}\n'.format(self.input_encoding)) |
||||
|
sys.stderr.write('--- serial output encoding: {}\n'.format(self.output_encoding)) |
||||
|
sys.stderr.write('--- EOL: {}\n'.format(self.eol.upper())) |
||||
|
sys.stderr.write('--- filters: {}\n'.format(' '.join(self.filters))) |
||||
|
|
||||
|
def reader(self): |
||||
|
"""loop and copy serial->console""" |
||||
|
try: |
||||
|
while self.alive and self._reader_alive: |
||||
|
# read all that is there or wait for one byte |
||||
|
data = self.serial.read(self.serial.in_waiting or 1) |
||||
|
if data: |
||||
|
if self.raw: |
||||
|
self.console.write_bytes(data) |
||||
|
else: |
||||
|
text = self.rx_decoder.decode(data) |
||||
|
for transformation in self.rx_transformations: |
||||
|
text = transformation.rx(text) |
||||
|
self.console.write(text) |
||||
|
except serial.SerialException: |
||||
|
self.alive = False |
||||
|
self.console.cancel() |
||||
|
raise # XXX handle instead of re-raise? |
||||
|
|
||||
|
def writer(self): |
||||
|
"""\ |
||||
|
Loop and copy console->serial until self.exit_character character is |
||||
|
found. When self.menu_character is found, interpret the next key |
||||
|
locally. |
||||
|
""" |
||||
|
menu_active = False |
||||
|
try: |
||||
|
while self.alive: |
||||
|
try: |
||||
|
c = self.console.getkey() |
||||
|
except KeyboardInterrupt: |
||||
|
c = '\x03' |
||||
|
if not self.alive: |
||||
|
break |
||||
|
if menu_active: |
||||
|
self.handle_menu_key(c) |
||||
|
menu_active = False |
||||
|
elif c == self.menu_character: |
||||
|
menu_active = True # next char will be for menu |
||||
|
elif c == self.exit_character: |
||||
|
self.stop() # exit app |
||||
|
break |
||||
|
else: |
||||
|
#~ if self.raw: |
||||
|
text = c |
||||
|
for transformation in self.tx_transformations: |
||||
|
text = transformation.tx(text) |
||||
|
self.serial.write(self.tx_encoder.encode(text)) |
||||
|
if self.echo: |
||||
|
echo_text = c |
||||
|
for transformation in self.tx_transformations: |
||||
|
echo_text = transformation.echo(echo_text) |
||||
|
self.console.write(echo_text) |
||||
|
except: |
||||
|
self.alive = False |
||||
|
raise |
||||
|
|
||||
|
def handle_menu_key(self, c): |
||||
|
"""Implement a simple menu / settings""" |
||||
|
if c == self.menu_character or c == self.exit_character: |
||||
|
# Menu/exit character again -> send itself |
||||
|
self.serial.write(self.tx_encoder.encode(c)) |
||||
|
if self.echo: |
||||
|
self.console.write(c) |
||||
|
elif c == '\x15': # CTRL+U -> upload file |
||||
|
self.upload_file() |
||||
|
elif c in '\x08hH?': # CTRL+H, h, H, ? -> Show help |
||||
|
sys.stderr.write(self.get_help_text()) |
||||
|
elif c == '\x12': # CTRL+R -> Toggle RTS |
||||
|
self.serial.rts = not self.serial.rts |
||||
|
sys.stderr.write('--- RTS {} ---\n'.format('active' if self.serial.rts else 'inactive')) |
||||
|
elif c == '\x04': # CTRL+D -> Toggle DTR |
||||
|
self.serial.dtr = not self.serial.dtr |
||||
|
sys.stderr.write('--- DTR {} ---\n'.format('active' if self.serial.dtr else 'inactive')) |
||||
|
elif c == '\x02': # CTRL+B -> toggle BREAK condition |
||||
|
self.serial.break_condition = not self.serial.break_condition |
||||
|
sys.stderr.write('--- BREAK {} ---\n'.format('active' if self.serial.break_condition else 'inactive')) |
||||
|
elif c == '\x05': # CTRL+E -> toggle local echo |
||||
|
self.echo = not self.echo |
||||
|
sys.stderr.write('--- local echo {} ---\n'.format('active' if self.echo else 'inactive')) |
||||
|
elif c == '\x06': # CTRL+F -> edit filters |
||||
|
self.change_filter() |
||||
|
elif c == '\x0c': # CTRL+L -> EOL mode |
||||
|
modes = list(EOL_TRANSFORMATIONS) # keys |
||||
|
eol = modes.index(self.eol) + 1 |
||||
|
if eol >= len(modes): |
||||
|
eol = 0 |
||||
|
self.eol = modes[eol] |
||||
|
sys.stderr.write('--- EOL: {} ---\n'.format(self.eol.upper())) |
||||
|
self.update_transformations() |
||||
|
elif c == '\x01': # CTRL+A -> set encoding |
||||
|
self.change_encoding() |
||||
|
elif c == '\x09': # CTRL+I -> info |
||||
|
self.dump_port_settings() |
||||
|
#~ elif c == '\x01': # CTRL+A -> cycle escape mode |
||||
|
#~ elif c == '\x0c': # CTRL+L -> cycle linefeed mode |
||||
|
elif c in 'pP': # P -> change port |
||||
|
self.change_port() |
||||
|
elif c in 'sS': # S -> suspend / open port temporarily |
||||
|
self.suspend_port() |
||||
|
elif c in 'bB': # B -> change baudrate |
||||
|
self.change_baudrate() |
||||
|
elif c == '8': # 8 -> change to 8 bits |
||||
|
self.serial.bytesize = serial.EIGHTBITS |
||||
|
self.dump_port_settings() |
||||
|
elif c == '7': # 7 -> change to 8 bits |
||||
|
self.serial.bytesize = serial.SEVENBITS |
||||
|
self.dump_port_settings() |
||||
|
elif c in 'eE': # E -> change to even parity |
||||
|
self.serial.parity = serial.PARITY_EVEN |
||||
|
self.dump_port_settings() |
||||
|
elif c in 'oO': # O -> change to odd parity |
||||
|
self.serial.parity = serial.PARITY_ODD |
||||
|
self.dump_port_settings() |
||||
|
elif c in 'mM': # M -> change to mark parity |
||||
|
self.serial.parity = serial.PARITY_MARK |
||||
|
self.dump_port_settings() |
||||
|
elif c in 'sS': # S -> change to space parity |
||||
|
self.serial.parity = serial.PARITY_SPACE |
||||
|
self.dump_port_settings() |
||||
|
elif c in 'nN': # N -> change to no parity |
||||
|
self.serial.parity = serial.PARITY_NONE |
||||
|
self.dump_port_settings() |
||||
|
elif c == '1': # 1 -> change to 1 stop bits |
||||
|
self.serial.stopbits = serial.STOPBITS_ONE |
||||
|
self.dump_port_settings() |
||||
|
elif c == '2': # 2 -> change to 2 stop bits |
||||
|
self.serial.stopbits = serial.STOPBITS_TWO |
||||
|
self.dump_port_settings() |
||||
|
elif c == '3': # 3 -> change to 1.5 stop bits |
||||
|
self.serial.stopbits = serial.STOPBITS_ONE_POINT_FIVE |
||||
|
self.dump_port_settings() |
||||
|
elif c in 'xX': # X -> change software flow control |
||||
|
self.serial.xonxoff = (c == 'X') |
||||
|
self.dump_port_settings() |
||||
|
elif c in 'rR': # R -> change hardware flow control |
||||
|
self.serial.rtscts = (c == 'R') |
||||
|
self.dump_port_settings() |
||||
|
else: |
||||
|
sys.stderr.write('--- unknown menu character {} --\n'.format(key_description(c))) |
||||
|
|
||||
|
def upload_file(self): |
||||
|
"""Ask user for filenname and send its contents""" |
||||
|
sys.stderr.write('\n--- File to upload: ') |
||||
|
sys.stderr.flush() |
||||
|
with self.console: |
||||
|
filename = sys.stdin.readline().rstrip('\r\n') |
||||
|
if filename: |
||||
|
try: |
||||
|
with open(filename, 'rb') as f: |
||||
|
sys.stderr.write('--- Sending file {} ---\n'.format(filename)) |
||||
|
while True: |
||||
|
block = f.read(1024) |
||||
|
if not block: |
||||
|
break |
||||
|
self.serial.write(block) |
||||
|
# Wait for output buffer to drain. |
||||
|
self.serial.flush() |
||||
|
sys.stderr.write('.') # Progress indicator. |
||||
|
sys.stderr.write('\n--- File {} sent ---\n'.format(filename)) |
||||
|
except IOError as e: |
||||
|
sys.stderr.write('--- ERROR opening file {}: {} ---\n'.format(filename, e)) |
||||
|
|
||||
|
def change_filter(self): |
||||
|
"""change the i/o transformations""" |
||||
|
sys.stderr.write('\n--- Available Filters:\n') |
||||
|
sys.stderr.write('\n'.join( |
||||
|
'--- {:<10} = {.__doc__}'.format(k, v) |
||||
|
for k, v in sorted(TRANSFORMATIONS.items()))) |
||||
|
sys.stderr.write('\n--- Enter new filter name(s) [{}]: '.format(' '.join(self.filters))) |
||||
|
with self.console: |
||||
|
new_filters = sys.stdin.readline().lower().split() |
||||
|
if new_filters: |
||||
|
for f in new_filters: |
||||
|
if f not in TRANSFORMATIONS: |
||||
|
sys.stderr.write('--- unknown filter: {}\n'.format(repr(f))) |
||||
|
break |
||||
|
else: |
||||
|
self.filters = new_filters |
||||
|
self.update_transformations() |
||||
|
sys.stderr.write('--- filters: {}\n'.format(' '.join(self.filters))) |
||||
|
|
||||
|
def change_encoding(self): |
||||
|
"""change encoding on the serial port""" |
||||
|
sys.stderr.write('\n--- Enter new encoding name [{}]: '.format(self.input_encoding)) |
||||
|
with self.console: |
||||
|
new_encoding = sys.stdin.readline().strip() |
||||
|
if new_encoding: |
||||
|
try: |
||||
|
codecs.lookup(new_encoding) |
||||
|
except LookupError: |
||||
|
sys.stderr.write('--- invalid encoding name: {}\n'.format(new_encoding)) |
||||
|
else: |
||||
|
self.set_rx_encoding(new_encoding) |
||||
|
self.set_tx_encoding(new_encoding) |
||||
|
sys.stderr.write('--- serial input encoding: {}\n'.format(self.input_encoding)) |
||||
|
sys.stderr.write('--- serial output encoding: {}\n'.format(self.output_encoding)) |
||||
|
|
||||
|
def change_baudrate(self): |
||||
|
"""change the baudrate""" |
||||
|
sys.stderr.write('\n--- Baudrate: ') |
||||
|
sys.stderr.flush() |
||||
|
with self.console: |
||||
|
backup = self.serial.baudrate |
||||
|
try: |
||||
|
self.serial.baudrate = int(sys.stdin.readline().strip()) |
||||
|
except ValueError as e: |
||||
|
sys.stderr.write('--- ERROR setting baudrate: {} ---\n'.format(e)) |
||||
|
self.serial.baudrate = backup |
||||
|
else: |
||||
|
self.dump_port_settings() |
||||
|
|
||||
|
def change_port(self): |
||||
|
"""Have a conversation with the user to change the serial port""" |
||||
|
with self.console: |
||||
|
try: |
||||
|
port = ask_for_port() |
||||
|
except KeyboardInterrupt: |
||||
|
port = None |
||||
|
if port and port != self.serial.port: |
||||
|
# reader thread needs to be shut down |
||||
|
self._stop_reader() |
||||
|
# save settings |
||||
|
settings = self.serial.getSettingsDict() |
||||
|
try: |
||||
|
new_serial = serial.serial_for_url(port, do_not_open=True) |
||||
|
# restore settings and open |
||||
|
new_serial.applySettingsDict(settings) |
||||
|
new_serial.rts = self.serial.rts |
||||
|
new_serial.dtr = self.serial.dtr |
||||
|
new_serial.open() |
||||
|
new_serial.break_condition = self.serial.break_condition |
||||
|
except Exception as e: |
||||
|
sys.stderr.write('--- ERROR opening new port: {} ---\n'.format(e)) |
||||
|
new_serial.close() |
||||
|
else: |
||||
|
self.serial.close() |
||||
|
self.serial = new_serial |
||||
|
sys.stderr.write('--- Port changed to: {} ---\n'.format(self.serial.port)) |
||||
|
# and restart the reader thread |
||||
|
self._start_reader() |
||||
|
|
||||
|
def suspend_port(self): |
||||
|
"""\ |
||||
|
open port temporarily, allow reconnect, exit and port change to get |
||||
|
out of the loop |
||||
|
""" |
||||
|
# reader thread needs to be shut down |
||||
|
self._stop_reader() |
||||
|
self.serial.close() |
||||
|
sys.stderr.write('\n--- Port closed: {} ---\n'.format(self.serial.port)) |
||||
|
do_change_port = False |
||||
|
while not self.serial.is_open: |
||||
|
sys.stderr.write('--- Quit: {exit} | p: port change | any other key to reconnect ---\n'.format( |
||||
|
exit=key_description(self.exit_character))) |
||||
|
k = self.console.getkey() |
||||
|
if k == self.exit_character: |
||||
|
self.stop() # exit app |
||||
|
break |
||||
|
elif k in 'pP': |
||||
|
do_change_port = True |
||||
|
break |
||||
|
try: |
||||
|
self.serial.open() |
||||
|
except Exception as e: |
||||
|
sys.stderr.write('--- ERROR opening port: {} ---\n'.format(e)) |
||||
|
if do_change_port: |
||||
|
self.change_port() |
||||
|
else: |
||||
|
# and restart the reader thread |
||||
|
self._start_reader() |
||||
|
sys.stderr.write('--- Port opened: {} ---\n'.format(self.serial.port)) |
||||
|
|
||||
|
def get_help_text(self): |
||||
|
"""return the help text""" |
||||
|
# help text, starts with blank line! |
||||
|
return """ |
||||
|
--- pySerial ({version}) - miniterm - help |
||||
|
--- |
||||
|
--- {exit:8} Exit program |
||||
|
--- {menu:8} Menu escape key, followed by: |
||||
|
--- Menu keys: |
||||
|
--- {menu:7} Send the menu character itself to remote |
||||
|
--- {exit:7} Send the exit character itself to remote |
||||
|
--- {info:7} Show info |
||||
|
--- {upload:7} Upload file (prompt will be shown) |
||||
|
--- {repr:7} encoding |
||||
|
--- {filter:7} edit filters |
||||
|
--- Toggles: |
||||
|
--- {rts:7} RTS {dtr:7} DTR {brk:7} BREAK |
||||
|
--- {echo:7} echo {eol:7} EOL |
||||
|
--- |
||||
|
--- Port settings ({menu} followed by the following): |
||||
|
--- p change port |
||||
|
--- 7 8 set data bits |
||||
|
--- N E O S M change parity (None, Even, Odd, Space, Mark) |
||||
|
--- 1 2 3 set stop bits (1, 2, 1.5) |
||||
|
--- b change baud rate |
||||
|
--- x X disable/enable software flow control |
||||
|
--- r R disable/enable hardware flow control |
||||
|
""".format(version=getattr(serial, 'VERSION', 'unknown version'), |
||||
|
exit=key_description(self.exit_character), |
||||
|
menu=key_description(self.menu_character), |
||||
|
rts=key_description('\x12'), |
||||
|
dtr=key_description('\x04'), |
||||
|
brk=key_description('\x02'), |
||||
|
echo=key_description('\x05'), |
||||
|
info=key_description('\x09'), |
||||
|
upload=key_description('\x15'), |
||||
|
repr=key_description('\x01'), |
||||
|
filter=key_description('\x06'), |
||||
|
eol=key_description('\x0c')) |
||||
|
|
||||
|
|
||||
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
||||
|
# default args can be used to override when calling main() from an other script |
||||
|
# e.g to create a miniterm-my-device.py |
||||
|
def main(default_port=None, default_baudrate=9600, default_rts=None, default_dtr=None): |
||||
|
"""Command line tool, entry point""" |
||||
|
|
||||
|
import argparse |
||||
|
|
||||
|
parser = argparse.ArgumentParser( |
||||
|
description="Miniterm - A simple terminal program for the serial port.") |
||||
|
|
||||
|
parser.add_argument( |
||||
|
"port", |
||||
|
nargs='?', |
||||
|
help="serial port name ('-' to show port list)", |
||||
|
default=default_port) |
||||
|
|
||||
|
parser.add_argument( |
||||
|
"baudrate", |
||||
|
nargs='?', |
||||
|
type=int, |
||||
|
help="set baud rate, default: %(default)s", |
||||
|
default=default_baudrate) |
||||
|
|
||||
|
group = parser.add_argument_group("port settings") |
||||
|
|
||||
|
group.add_argument( |
||||
|
"--parity", |
||||
|
choices=['N', 'E', 'O', 'S', 'M'], |
||||
|
type=lambda c: c.upper(), |
||||
|
help="set parity, one of {N E O S M}, default: N", |
||||
|
default='N') |
||||
|
|
||||
|
group.add_argument( |
||||
|
"--rtscts", |
||||
|
action="store_true", |
||||
|
help="enable RTS/CTS flow control (default off)", |
||||
|
default=False) |
||||
|
|
||||
|
group.add_argument( |
||||
|
"--xonxoff", |
||||
|
action="store_true", |
||||
|
help="enable software flow control (default off)", |
||||
|
default=False) |
||||
|
|
||||
|
group.add_argument( |
||||
|
"--rts", |
||||
|
type=int, |
||||
|
help="set initial RTS line state (possible values: 0, 1)", |
||||
|
default=default_rts) |
||||
|
|
||||
|
group.add_argument( |
||||
|
"--dtr", |
||||
|
type=int, |
||||
|
help="set initial DTR line state (possible values: 0, 1)", |
||||
|
default=default_dtr) |
||||
|
|
||||
|
group.add_argument( |
||||
|
"--ask", |
||||
|
action="store_true", |
||||
|
help="ask again for port when open fails", |
||||
|
default=False) |
||||
|
|
||||
|
group = parser.add_argument_group("data handling") |
||||
|
|
||||
|
group.add_argument( |
||||
|
"-e", "--echo", |
||||
|
action="store_true", |
||||
|
help="enable local echo (default off)", |
||||
|
default=False) |
||||
|
|
||||
|
group.add_argument( |
||||
|
"--encoding", |
||||
|
dest="serial_port_encoding", |
||||
|
metavar="CODEC", |
||||
|
help="set the encoding for the serial port (e.g. hexlify, Latin1, UTF-8), default: %(default)s", |
||||
|
default='UTF-8') |
||||
|
|
||||
|
group.add_argument( |
||||
|
"-f", "--filter", |
||||
|
action="append", |
||||
|
metavar="NAME", |
||||
|
help="add text transformation", |
||||
|
default=[]) |
||||
|
|
||||
|
group.add_argument( |
||||
|
"--eol", |
||||
|
choices=['CR', 'LF', 'CRLF'], |
||||
|
type=lambda c: c.upper(), |
||||
|
help="end of line mode", |
||||
|
default='CRLF') |
||||
|
|
||||
|
group.add_argument( |
||||
|
"--raw", |
||||
|
action="store_true", |
||||
|
help="Do no apply any encodings/transformations", |
||||
|
default=False) |
||||
|
|
||||
|
group = parser.add_argument_group("hotkeys") |
||||
|
|
||||
|
group.add_argument( |
||||
|
"--exit-char", |
||||
|
type=int, |
||||
|
metavar='NUM', |
||||
|
help="Unicode of special character that is used to exit the application, default: %(default)s", |
||||
|
default=0x1d) # GS/CTRL+] |
||||
|
|
||||
|
group.add_argument( |
||||
|
"--menu-char", |
||||
|
type=int, |
||||
|
metavar='NUM', |
||||
|
help="Unicode code of special character that is used to control miniterm (menu), default: %(default)s", |
||||
|
default=0x14) # Menu: CTRL+T |
||||
|
|
||||
|
group = parser.add_argument_group("diagnostics") |
||||
|
|
||||
|
group.add_argument( |
||||
|
"-q", "--quiet", |
||||
|
action="store_true", |
||||
|
help="suppress non-error messages", |
||||
|
default=False) |
||||
|
|
||||
|
group.add_argument( |
||||
|
"--develop", |
||||
|
action="store_true", |
||||
|
help="show Python traceback on error", |
||||
|
default=False) |
||||
|
|
||||
|
args = parser.parse_args() |
||||
|
|
||||
|
if args.menu_char == args.exit_char: |
||||
|
parser.error('--exit-char can not be the same as --menu-char') |
||||
|
|
||||
|
if args.filter: |
||||
|
if 'help' in args.filter: |
||||
|
sys.stderr.write('Available filters:\n') |
||||
|
sys.stderr.write('\n'.join( |
||||
|
'{:<10} = {.__doc__}'.format(k, v) |
||||
|
for k, v in sorted(TRANSFORMATIONS.items()))) |
||||
|
sys.stderr.write('\n') |
||||
|
sys.exit(1) |
||||
|
filters = args.filter |
||||
|
else: |
||||
|
filters = ['default'] |
||||
|
|
||||
|
while True: |
||||
|
# no port given on command line -> ask user now |
||||
|
if args.port is None or args.port == '-': |
||||
|
try: |
||||
|
args.port = ask_for_port() |
||||
|
except KeyboardInterrupt: |
||||
|
sys.stderr.write('\n') |
||||
|
parser.error('user aborted and port is not given') |
||||
|
else: |
||||
|
if not args.port: |
||||
|
parser.error('port is not given') |
||||
|
try: |
||||
|
serial_instance = serial.serial_for_url( |
||||
|
args.port, |
||||
|
args.baudrate, |
||||
|
parity=args.parity, |
||||
|
rtscts=args.rtscts, |
||||
|
xonxoff=args.xonxoff, |
||||
|
do_not_open=True) |
||||
|
|
||||
|
if not hasattr(serial_instance, 'cancel_read'): |
||||
|
# enable timeout for alive flag polling if cancel_read is not available |
||||
|
serial_instance.timeout = 1 |
||||
|
|
||||
|
if args.dtr is not None: |
||||
|
if not args.quiet: |
||||
|
sys.stderr.write('--- forcing DTR {}\n'.format('active' if args.dtr else 'inactive')) |
||||
|
serial_instance.dtr = args.dtr |
||||
|
if args.rts is not None: |
||||
|
if not args.quiet: |
||||
|
sys.stderr.write('--- forcing RTS {}\n'.format('active' if args.rts else 'inactive')) |
||||
|
serial_instance.rts = args.rts |
||||
|
|
||||
|
serial_instance.open() |
||||
|
except serial.SerialException as e: |
||||
|
sys.stderr.write('could not open port {}: {}\n'.format(repr(args.port), e)) |
||||
|
if args.develop: |
||||
|
raise |
||||
|
if not args.ask: |
||||
|
sys.exit(1) |
||||
|
else: |
||||
|
args.port = '-' |
||||
|
else: |
||||
|
break |
||||
|
|
||||
|
miniterm = Miniterm( |
||||
|
serial_instance, |
||||
|
echo=args.echo, |
||||
|
eol=args.eol.lower(), |
||||
|
filters=filters) |
||||
|
miniterm.exit_character = unichr(args.exit_char) |
||||
|
miniterm.menu_character = unichr(args.menu_char) |
||||
|
miniterm.raw = args.raw |
||||
|
miniterm.set_rx_encoding(args.serial_port_encoding) |
||||
|
miniterm.set_tx_encoding(args.serial_port_encoding) |
||||
|
|
||||
|
if not args.quiet: |
||||
|
sys.stderr.write('--- Miniterm on {p.name} {p.baudrate},{p.bytesize},{p.parity},{p.stopbits} ---\n'.format( |
||||
|
p=miniterm.serial)) |
||||
|
sys.stderr.write('--- Quit: {} | Menu: {} | Help: {} followed by {} ---\n'.format( |
||||
|
key_description(miniterm.exit_character), |
||||
|
key_description(miniterm.menu_character), |
||||
|
key_description(miniterm.menu_character), |
||||
|
key_description('\x08'))) |
||||
|
|
||||
|
miniterm.start() |
||||
|
try: |
||||
|
miniterm.join(True) |
||||
|
except KeyboardInterrupt: |
||||
|
pass |
||||
|
if not args.quiet: |
||||
|
sys.stderr.write("\n--- exit ---\n") |
||||
|
miniterm.join() |
||||
|
miniterm.close() |
||||
|
|
||||
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
||||
|
if __name__ == '__main__': |
||||
|
main() |
Binary file not shown.
@ -0,0 +1,8 @@ |
|||||
|
#!/home/hendrik/Projects/midistepper/bin/python |
||||
|
# -*- coding: utf-8 -*- |
||||
|
import re |
||||
|
import sys |
||||
|
from platformio.__main__ import main |
||||
|
if __name__ == '__main__': |
||||
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) |
||||
|
sys.exit(main()) |
@ -0,0 +1,8 @@ |
|||||
|
#!/home/hendrik/Projects/midistepper/bin/python |
||||
|
# -*- coding: utf-8 -*- |
||||
|
import re |
||||
|
import sys |
||||
|
from platformio.__main__ import debug_gdb_main |
||||
|
if __name__ == '__main__': |
||||
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) |
||||
|
sys.exit(debug_gdb_main()) |
@ -0,0 +1,10 @@ |
|||||
|
#!/home/hendrik/Projects/midistepper/bin/python |
||||
|
# -*- 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()) |
@ -0,0 +1,10 @@ |
|||||
|
#!/home/hendrik/Projects/midistepper/bin/python |
||||
|
# -*- 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()) |
@ -0,0 +1,10 @@ |
|||||
|
#!/home/hendrik/Projects/midistepper/bin/python |
||||
|
# -*- 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()) |
@ -0,0 +1,8 @@ |
|||||
|
#!/home/hendrik/Projects/midistepper/bin/python |
||||
|
# -*- coding: utf-8 -*- |
||||
|
import re |
||||
|
import sys |
||||
|
from platformio.__main__ import main |
||||
|
if __name__ == '__main__': |
||||
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) |
||||
|
sys.exit(main()) |
Binary file not shown.
@ -0,0 +1,78 @@ |
|||||
|
#!/home/hendrik/Projects/midistepper/bin/python |
||||
|
|
||||
|
import sys |
||||
|
import getopt |
||||
|
import sysconfig |
||||
|
|
||||
|
valid_opts = ['prefix', 'exec-prefix', 'includes', 'libs', 'cflags', |
||||
|
'ldflags', 'help'] |
||||
|
|
||||
|
if sys.version_info >= (3, 2): |
||||
|
valid_opts.insert(-1, 'extension-suffix') |
||||
|
valid_opts.append('abiflags') |
||||
|
if sys.version_info >= (3, 3): |
||||
|
valid_opts.append('configdir') |
||||
|
|
||||
|
|
||||
|
def exit_with_usage(code=1): |
||||
|
sys.stderr.write("Usage: {0} [{1}]\n".format( |
||||
|
sys.argv[0], '|'.join('--'+opt for opt in valid_opts))) |
||||
|
sys.exit(code) |
||||
|
|
||||
|
try: |
||||
|
opts, args = getopt.getopt(sys.argv[1:], '', valid_opts) |
||||
|
except getopt.error: |
||||
|
exit_with_usage() |
||||
|
|
||||
|
if not opts: |
||||
|
exit_with_usage() |
||||
|
|
||||
|
pyver = sysconfig.get_config_var('VERSION') |
||||
|
getvar = sysconfig.get_config_var |
||||
|
|
||||
|
opt_flags = [flag for (flag, val) in opts] |
||||
|
|
||||
|
if '--help' in opt_flags: |
||||
|
exit_with_usage(code=0) |
||||
|
|
||||
|
for opt in opt_flags: |
||||
|
if opt == '--prefix': |
||||
|
print(sysconfig.get_config_var('prefix')) |
||||
|
|
||||
|
elif opt == '--exec-prefix': |
||||
|
print(sysconfig.get_config_var('exec_prefix')) |
||||
|
|
||||
|
elif opt in ('--includes', '--cflags'): |
||||
|
flags = ['-I' + sysconfig.get_path('include'), |
||||
|
'-I' + sysconfig.get_path('platinclude')] |
||||
|
if opt == '--cflags': |
||||
|
flags.extend(getvar('CFLAGS').split()) |
||||
|
print(' '.join(flags)) |
||||
|
|
||||
|
elif opt in ('--libs', '--ldflags'): |
||||
|
abiflags = getattr(sys, 'abiflags', '') |
||||
|
libs = ['-lpython' + pyver + abiflags] |
||||
|
libs += getvar('LIBS').split() |
||||
|
libs += getvar('SYSLIBS').split() |
||||
|
# add the prefix/lib/pythonX.Y/config dir, but only if there is no |
||||
|
# shared library in prefix/lib/. |
||||
|
if opt == '--ldflags': |
||||
|
if not getvar('Py_ENABLE_SHARED'): |
||||
|
libs.insert(0, '-L' + getvar('LIBPL')) |
||||
|
if not getvar('PYTHONFRAMEWORK'): |
||||
|
libs.extend(getvar('LINKFORSHARED').split()) |
||||
|
print(' '.join(libs)) |
||||
|
|
||||
|
elif opt == '--extension-suffix': |
||||
|
ext_suffix = sysconfig.get_config_var('EXT_SUFFIX') |
||||
|
if ext_suffix is None: |
||||
|
ext_suffix = sysconfig.get_config_var('SO') |
||||
|
print(ext_suffix) |
||||
|
|
||||
|
elif opt == '--abiflags': |
||||
|
if not getattr(sys, 'abiflags', None): |
||||
|
exit_with_usage() |
||||
|
print(sys.abiflags) |
||||
|
|
||||
|
elif opt == '--configdir': |
||||
|
print(sysconfig.get_config_var('LIBPL')) |
@ -0,0 +1 @@ |
|||||
|
python |
@ -0,0 +1 @@ |
|||||
|
python |
File diff suppressed because it is too large
Binary file not shown.
@ -0,0 +1,8 @@ |
|||||
|
#!/home/hendrik/Projects/midistepper/bin/python |
||||
|
# -*- coding: utf-8 -*- |
||||
|
import re |
||||
|
import sys |
||||
|
from tabulate import _main |
||||
|
if __name__ == '__main__': |
||||
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) |
||||
|
sys.exit(_main()) |
@ -0,0 +1,10 @@ |
|||||
|
#!/home/hendrik/Projects/midistepper/bin/python |
||||
|
# -*- coding: utf-8 -*- |
||||
|
import re |
||||
|
import sys |
||||
|
|
||||
|
from wheel.cli import main |
||||
|
|
||||
|
if __name__ == '__main__': |
||||
|
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) |
||||
|
sys.exit(main()) |
@ -0,0 +1 @@ |
|||||
|
/usr/include/python2.7 |
@ -0,0 +1 @@ |
|||||
|
/usr/lib/python2.7/LICENSE.txt |
@ -0,0 +1 @@ |
|||||
|
/usr/lib/python2.7/UserDict.py |
Binary file not shown.
@ -0,0 +1 @@ |
|||||
|
/usr/lib/python2.7/_abcoll.py |
Binary file not shown.
@ -0,0 +1 @@ |
|||||
|
/usr/lib/python2.7/_weakrefset.py |
Binary file not shown.
@ -0,0 +1 @@ |
|||||
|
/usr/lib/python2.7/abc.py |
Binary file not shown.
@ -0,0 +1 @@ |
|||||
|
/usr/lib/python2.7/codecs.py |
Binary file not shown.
@ -0,0 +1 @@ |
|||||
|
/usr/lib/python2.7/copy_reg.py |
Binary file not shown.
@ -0,0 +1,134 @@ |
|||||
|
import os |
||||
|
import sys |
||||
|
import warnings |
||||
|
|
||||
|
# opcode is not a virtualenv module, so we can use it to find the stdlib |
||||
|
# Important! To work on pypy, this must be a module that resides in the |
||||
|
# lib-python/modified-x.y.z directory |
||||
|
import opcode |
||||
|
|
||||
|
dirname = os.path.dirname |
||||
|
|
||||
|
distutils_path = os.path.join(os.path.dirname(opcode.__file__), "distutils") |
||||
|
if os.path.normpath(distutils_path) == os.path.dirname(os.path.normpath(__file__)): |
||||
|
warnings.warn("The virtualenv distutils package at %s appears to be in the same location as the system distutils?") |
||||
|
else: |
||||
|
__path__.insert(0, distutils_path) # noqa: F821 |
||||
|
if sys.version_info < (3, 4): |
||||
|
import imp |
||||
|
|
||||
|
real_distutils = imp.load_module("_virtualenv_distutils", None, distutils_path, ("", "", imp.PKG_DIRECTORY)) |
||||
|
else: |
||||
|
import importlib.machinery |
||||
|
|
||||
|
distutils_path = os.path.join(distutils_path, "__init__.py") |
||||
|
loader = importlib.machinery.SourceFileLoader("_virtualenv_distutils", distutils_path) |
||||
|
if sys.version_info < (3, 5): |
||||
|
import types |
||||
|
|
||||
|
real_distutils = types.ModuleType(loader.name) |
||||
|
else: |
||||
|
import importlib.util |
||||
|
|
||||
|
spec = importlib.util.spec_from_loader(loader.name, loader) |
||||
|
real_distutils = importlib.util.module_from_spec(spec) |
||||
|
loader.exec_module(real_distutils) |
||||
|
|
||||
|
# Copy the relevant attributes |
||||
|
try: |
||||
|
__revision__ = real_distutils.__revision__ |
||||
|
except AttributeError: |
||||
|
pass |
||||
|
__version__ = real_distutils.__version__ |
||||
|
|
||||
|
from distutils import dist, sysconfig # isort:skip |
||||
|
|
||||
|
try: |
||||
|
basestring |
||||
|
except NameError: |
||||
|
basestring = str |
||||
|
|
||||
|
# patch build_ext (distutils doesn't know how to get the libs directory |
||||
|
# path on windows - it hardcodes the paths around the patched sys.prefix) |
||||
|
|
||||
|
if sys.platform == "win32": |
||||
|
from distutils.command.build_ext import build_ext as old_build_ext |
||||
|
|
||||
|
class build_ext(old_build_ext): |
||||
|
def finalize_options(self): |
||||
|
if self.library_dirs is None: |
||||
|
self.library_dirs = [] |
||||
|
elif isinstance(self.library_dirs, basestring): |
||||
|
self.library_dirs = self.library_dirs.split(os.pathsep) |
||||
|
|
||||
|
self.library_dirs.insert(0, os.path.join(sys.real_prefix, "Libs")) |
||||
|
old_build_ext.finalize_options(self) |
||||
|
|
||||
|
from distutils.command import build_ext as build_ext_module |
||||
|
|
||||
|
build_ext_module.build_ext = build_ext |
||||
|
|
||||
|
# distutils.dist patches: |
||||
|
|
||||
|
old_find_config_files = dist.Distribution.find_config_files |
||||
|
|
||||
|
|
||||
|
def find_config_files(self): |
||||
|
found = old_find_config_files(self) |
||||
|
if os.name == "posix": |
||||
|
user_filename = ".pydistutils.cfg" |
||||
|
else: |
||||
|
user_filename = "pydistutils.cfg" |
||||
|
user_filename = os.path.join(sys.prefix, user_filename) |
||||
|
if os.path.isfile(user_filename): |
||||
|
for item in list(found): |
||||
|
if item.endswith("pydistutils.cfg"): |
||||
|
found.remove(item) |
||||
|
found.append(user_filename) |
||||
|
return found |
||||
|
|
||||
|
|
||||
|
dist.Distribution.find_config_files = find_config_files |
||||
|
|
||||
|
# distutils.sysconfig patches: |
||||
|
|
||||
|
old_get_python_inc = sysconfig.get_python_inc |
||||
|
|
||||
|
|
||||
|
def sysconfig_get_python_inc(plat_specific=0, prefix=None): |
||||
|
if prefix is None: |
||||
|
prefix = sys.real_prefix |
||||
|
return old_get_python_inc(plat_specific, prefix) |
||||
|
|
||||
|
|
||||
|
sysconfig_get_python_inc.__doc__ = old_get_python_inc.__doc__ |
||||
|
sysconfig.get_python_inc = sysconfig_get_python_inc |
||||
|
|
||||
|
old_get_python_lib = sysconfig.get_python_lib |
||||
|
|
||||
|
|
||||
|
def sysconfig_get_python_lib(plat_specific=0, standard_lib=0, prefix=None): |
||||
|
if standard_lib and prefix is None: |
||||
|
prefix = sys.real_prefix |
||||
|
return old_get_python_lib(plat_specific, standard_lib, prefix) |
||||
|
|
||||
|
|
||||
|
sysconfig_get_python_lib.__doc__ = old_get_python_lib.__doc__ |
||||
|
sysconfig.get_python_lib = sysconfig_get_python_lib |
||||
|
|
||||
|
old_get_config_vars = sysconfig.get_config_vars |
||||
|
|
||||
|
|
||||
|
def sysconfig_get_config_vars(*args): |
||||
|
real_vars = old_get_config_vars(*args) |
||||
|
if sys.platform == "win32": |
||||
|
lib_dir = os.path.join(sys.real_prefix, "libs") |
||||
|
if isinstance(real_vars, dict) and "LIBDIR" not in real_vars: |
||||
|
real_vars["LIBDIR"] = lib_dir # asked for all |
||||
|
elif isinstance(real_vars, list) and "LIBDIR" in args: |
||||
|
real_vars = real_vars + [lib_dir] # asked for list |
||||
|
return real_vars |
||||
|
|
||||
|
|
||||
|
sysconfig_get_config_vars.__doc__ = old_get_config_vars.__doc__ |
||||
|
sysconfig.get_config_vars = sysconfig_get_config_vars |
Binary file not shown.
@ -0,0 +1,6 @@ |
|||||
|
# This is a config file local to this virtualenv installation |
||||
|
# You may include options that will be used by all distutils commands, |
||||
|
# and by easy_install. For instance: |
||||
|
# |
||||
|
# [easy_install] |
||||
|
# find_links = http://mylocalsite |
@ -0,0 +1 @@ |
|||||
|
/usr/lib/python2.7/encodings |
@ -0,0 +1 @@ |
|||||
|
/usr/lib/python2.7/fnmatch.py |
Binary file not shown.
@ -0,0 +1 @@ |
|||||
|
/usr/lib/python2.7/genericpath.py |
Binary file not shown.
@ -0,0 +1 @@ |
|||||
|
/usr/lib/python2.7/lib-dynload |
@ -0,0 +1 @@ |
|||||
|
/usr/lib/python2.7/linecache.py |
Binary file not shown.
@ -0,0 +1 @@ |
|||||
|
/usr/lib/python2.7/locale.py |
Binary file not shown.
@ -0,0 +1 @@ |
|||||
|
/usr/lib/python2.7/ntpath.py |
Binary file not shown.
@ -0,0 +1 @@ |
|||||
|
/usr |
@ -0,0 +1 @@ |
|||||
|
/usr/lib/python2.7/os.py |
Binary file not shown.
@ -0,0 +1 @@ |
|||||
|
/usr/lib/python2.7/posixpath.py |
Binary file not shown.
@ -0,0 +1 @@ |
|||||
|
/usr/lib/python2.7/re.py |
Binary file not shown.
@ -0,0 +1 @@ |
|||||
|
pip |
@ -0,0 +1,39 @@ |
|||||
|
Copyright © 2014 by the Pallets team. |
||||
|
|
||||
|
Some rights reserved. |
||||
|
|
||||
|
Redistribution and use in source and binary forms of the software as |
||||
|
well as documentation, with or without modification, are permitted |
||||
|
provided that the following conditions are met: |
||||
|
|
||||
|
- Redistributions of source code must retain the above copyright |
||||
|
notice, this list of conditions and the following disclaimer. |
||||
|
|
||||
|
- 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. |
||||
|
|
||||
|
- Neither the name of the copyright holder nor the names of its |
||||
|
contributors may be used to endorse or promote products derived from |
||||
|
this software without specific prior written permission. |
||||
|
|
||||
|
THIS SOFTWARE AND DOCUMENTATION IS PROVIDED BY THE COPYRIGHT HOLDERS AND |
||||
|
CONTRIBUTORS "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 THE |
||||
|
COPYRIGHT HOLDER OR 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, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||||
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
||||
|
THIS SOFTWARE AND DOCUMENTATION, EVEN IF ADVISED OF THE POSSIBILITY OF |
||||
|
SUCH DAMAGE. |
||||
|
|
||||
|
---- |
||||
|
|
||||
|
Click uses parts of optparse written by Gregory P. Ward and maintained |
||||
|
by the Python Software Foundation. This is limited to code in parser.py. |
||||
|
|
||||
|
Copyright © 2001-2006 Gregory P. Ward. All rights reserved. |
||||
|
Copyright © 2002-2006 Python Software Foundation. All rights reserved. |
@ -0,0 +1,121 @@ |
|||||
|
Metadata-Version: 2.1 |
||||
|
Name: Click |
||||
|
Version: 7.0 |
||||
|
Summary: Composable command line interface toolkit |
||||
|
Home-page: https://palletsprojects.com/p/click/ |
||||
|
Author: Armin Ronacher |
||||
|
Author-email: armin.ronacher@active-4.com |
||||
|
Maintainer: Pallets Team |
||||
|
Maintainer-email: contact@palletsprojects.com |
||||
|
License: BSD |
||||
|
Project-URL: Documentation, https://click.palletsprojects.com/ |
||||
|
Project-URL: Code, https://github.com/pallets/click |
||||
|
Project-URL: Issue tracker, https://github.com/pallets/click/issues |
||||
|
Platform: UNKNOWN |
||||
|
Classifier: Development Status :: 5 - Production/Stable |
||||
|
Classifier: Intended Audience :: Developers |
||||
|
Classifier: License :: OSI Approved :: BSD License |
||||
|
Classifier: Operating System :: OS Independent |
||||
|
Classifier: Programming Language :: Python |
||||
|
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 |
||||
|
Classifier: Programming Language :: Python :: 3.7 |
||||
|
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.* |
||||
|
|
||||
|
\$ click\_ |
||||
|
========== |
||||
|
|
||||
|
Click is a Python package for creating beautiful command line interfaces |
||||
|
in a composable way with as little code as necessary. It's the "Command |
||||
|
Line Interface Creation Kit". It's highly configurable but comes with |
||||
|
sensible defaults out of the box. |
||||
|
|
||||
|
It aims to make the process of writing command line tools quick and fun |
||||
|
while also preventing any frustration caused by the inability to |
||||
|
implement an intended CLI API. |
||||
|
|
||||
|
Click in three points: |
||||
|
|
||||
|
- Arbitrary nesting of commands |
||||
|
- Automatic help page generation |
||||
|
- Supports lazy loading of subcommands at runtime |
||||
|
|
||||
|
|
||||
|
Installing |
||||
|
---------- |
||||
|
|
||||
|
Install and update using `pip`_: |
||||
|
|
||||
|
.. code-block:: text |
||||
|
|
||||
|
$ pip install click |
||||
|
|
||||
|
Click supports Python 3.4 and newer, Python 2.7, and PyPy. |
||||
|
|
||||
|
.. _pip: https://pip.pypa.io/en/stable/quickstart/ |
||||
|
|
||||
|
|
||||
|
A Simple Example |
||||
|
---------------- |
||||
|
|
||||
|
What does it look like? Here is an example of a simple Click program: |
||||
|
|
||||
|
.. code-block:: python |
||||
|
|
||||
|
import click |
||||
|
|
||||
|
@click.command() |
||||
|
@click.option("--count", default=1, help="Number of greetings.") |
||||
|
@click.option("--name", prompt="Your name", |
||||
|
help="The person to greet.") |
||||
|
def hello(count, name): |
||||
|
"""Simple program that greets NAME for a total of COUNT times.""" |
||||
|
for _ in range(count): |
||||
|
click.echo("Hello, %s!" % name) |
||||
|
|
||||
|
if __name__ == '__main__': |
||||
|
hello() |
||||
|
|
||||
|
And what it looks like when run: |
||||
|
|
||||
|
.. code-block:: text |
||||
|
|
||||
|
$ python hello.py --count=3 |
||||
|
Your name: Click |
||||
|
Hello, Click! |
||||
|
Hello, Click! |
||||
|
Hello, Click! |
||||
|
|
||||
|
|
||||
|
Donate |
||||
|
------ |
||||
|
|
||||
|
The Pallets organization develops and supports Click and other popular |
||||
|
packages. In order to grow the community of contributors and users, and |
||||
|
allow the maintainers to devote more time to the projects, `please |
||||
|
donate today`_. |
||||
|
|
||||
|
.. _please donate today: https://palletsprojects.com/donate |
||||
|
|
||||
|
|
||||
|
Links |
||||
|
----- |
||||
|
|
||||
|
* Website: https://palletsprojects.com/p/click/ |
||||
|
* Documentation: https://click.palletsprojects.com/ |
||||
|
* License: `BSD <https://github.com/pallets/click/blob/master/LICENSE.rst>`_ |
||||
|
* Releases: https://pypi.org/project/click/ |
||||
|
* Code: https://github.com/pallets/click |
||||
|
* Issue tracker: https://github.com/pallets/click/issues |
||||
|
* Test status: |
||||
|
|
||||
|
* Linux, Mac: https://travis-ci.org/pallets/click |
||||
|
* Windows: https://ci.appveyor.com/project/pallets/click |
||||
|
|
||||
|
* Test coverage: https://codecov.io/gh/pallets/click |
||||
|
|
||||
|
|
@ -0,0 +1,40 @@ |
|||||
|
Click-7.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 |
||||
|
Click-7.0.dist-info/LICENSE.txt,sha256=4hIxn676T0Wcisk3_chVcECjyrivKTZsoqSNI5AlIlw,1876 |
||||
|
Click-7.0.dist-info/METADATA,sha256=-r8jeke3Zer4diRvT1MjFZuiJ6yTT_qFP39svLqdaLI,3516 |
||||
|
Click-7.0.dist-info/RECORD,, |
||||
|
Click-7.0.dist-info/WHEEL,sha256=gduuPyBvFJQSQ0zdyxF7k0zynDXbIbvg5ZBHoXum5uk,110 |
||||
|
Click-7.0.dist-info/top_level.txt,sha256=J1ZQogalYS4pphY_lPECoNMfw0HzTSrZglC4Yfwo4xA,6 |
||||
|
click/__init__.py,sha256=HjGThQ7tef9kkwCV371TBnrf0SAi6fKfU_jtEnbYTvQ,2789 |
||||
|
click/__init__.pyc,, |
||||
|
click/_bashcomplete.py,sha256=iaNUmtxag0YPfxba3TDYCNietiTMQIrvhRLj-H8okFU,11014 |
||||
|
click/_bashcomplete.pyc,, |
||||
|
click/_compat.py,sha256=vYmvoj4opPxo-c-2GMQQjYT_r_QkOKybkfGoeVrt0dA,23399 |
||||
|
click/_compat.pyc,, |
||||
|
click/_termui_impl.py,sha256=xHmLtOJhKUCVD6168yucJ9fknUJPAMs0eUTPgVUO-GQ,19611 |
||||
|
click/_termui_impl.pyc,, |
||||
|
click/_textwrap.py,sha256=gwS4m7bdQiJnzaDG8osFcRb-5vn4t4l2qSCy-5csCEc,1198 |
||||
|
click/_textwrap.pyc,, |
||||
|
click/_unicodefun.py,sha256=QHy2_5jYlX-36O-JVrTHNnHOqg8tquUR0HmQFev7Ics,4364 |
||||
|
click/_unicodefun.pyc,, |
||||
|
click/_winconsole.py,sha256=PPWVak8Iikm_gAPsxMrzwsVFCvHgaW3jPaDWZ1JBl3U,8965 |
||||
|
click/_winconsole.pyc,, |
||||
|
click/core.py,sha256=q8FLcDZsagBGSRe5Y9Hi_FGvAeZvusNfoO5EkhkSQ8Y,75305 |
||||
|
click/core.pyc,, |
||||
|
click/decorators.py,sha256=idKt6duLUUfAFftrHoREi8MJSd39XW36pUVHthdglwk,11226 |
||||
|
click/decorators.pyc,, |
||||
|
click/exceptions.py,sha256=CNpAjBAE7qjaV4WChxQeak95e5yUOau8AsvT-8m6wss,7663 |
||||
|
click/exceptions.pyc,, |
||||
|
click/formatting.py,sha256=eh-cypTUAhpI3HD-K4ZpR3vCiURIO62xXvKkR3tNUTM,8889 |
||||
|
click/formatting.pyc,, |
||||
|
click/globals.py,sha256=oQkou3ZQ5DgrbVM6BwIBirwiqozbjfirzsLGAlLRRdg,1514 |
||||
|
click/globals.pyc,, |
||||
|
click/parser.py,sha256=m-nGZz4VwprM42_qtFlWFGo7yRJQxkBlRcZodoH593Y,15510 |
||||
|
click/parser.pyc,, |
||||
|
click/termui.py,sha256=o_ZXB2jyvL2Rce7P_bFGq452iyBq9ykJyRApIPMCZO0,23207 |
||||
|
click/termui.pyc,, |
||||
|
click/testing.py,sha256=aYGqY_iWLu2p4k7lkuJ6t3fqpf6aPGqTsyLzNY_ngKg,13062 |
||||
|
click/testing.pyc,, |
||||
|
click/types.py,sha256=2Q929p-aBP_ZYuMFJqJR-Ipucofv3fmDc5JzBDPmzJU,23287 |
||||
|
click/types.pyc,, |
||||
|
click/utils.py,sha256=6-D0WkAxvv9FkgHXSHwDIv0l9Gdx9Mm6Z5vuKNLIfZI,15763 |
||||
|
click/utils.pyc,, |
@ -0,0 +1,6 @@ |
|||||
|
Wheel-Version: 1.0 |
||||
|
Generator: bdist_wheel (0.31.1) |
||||
|
Root-Is-Purelib: true |
||||
|
Tag: py2-none-any |
||||
|
Tag: py3-none-any |
||||
|
|
@ -0,0 +1 @@ |
|||||
|
click |
@ -0,0 +1 @@ |
|||||
|
pip |
@ -0,0 +1,42 @@ |
|||||
|
Metadata-Version: 2.1 |
||||
|
Name: bottle |
||||
|
Version: 0.12.18 |
||||
|
Summary: Fast and simple WSGI-framework for small web-applications. |
||||
|
Home-page: http://bottlepy.org/ |
||||
|
Author: Marcel Hellkamp |
||||
|
Author-email: marc@gsites.de |
||||
|
License: MIT |
||||
|
Platform: any |
||||
|
Classifier: Development Status :: 4 - Beta |
||||
|
Classifier: Intended Audience :: Developers |
||||
|
Classifier: License :: OSI Approved :: MIT License |
||||
|
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries |
||||
|
Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers |
||||
|
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI |
||||
|
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application |
||||
|
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware |
||||
|
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Server |
||||
|
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks |
||||
|
Classifier: Programming Language :: Python :: 2.5 |
||||
|
Classifier: Programming Language :: Python :: 2.6 |
||||
|
Classifier: Programming Language :: Python :: 2.7 |
||||
|
Classifier: Programming Language :: Python :: 3 |
||||
|
Classifier: Programming Language :: Python :: 3.2 |
||||
|
Classifier: Programming Language :: Python :: 3.3 |
||||
|
Classifier: Programming Language :: Python :: 3.4 |
||||
|
Classifier: Programming Language :: Python :: 3.5 |
||||
|
Classifier: Programming Language :: Python :: 3.6 |
||||
|
Classifier: Programming Language :: Python :: 3.7 |
||||
|
|
||||
|
Bottle is a fast and simple micro-framework for small web applications. It |
||||
|
offers request dispatching (Routes) with url parameter support, templates, |
||||
|
a built-in HTTP Server and adapters for many third party WSGI/HTTP-server and |
||||
|
template engines - all in a single file and with no dependencies other than the |
||||
|
Python Standard Library. |
||||
|
|
||||
|
Homepage and documentation: http://bottlepy.org/ |
||||
|
|
||||
|
Copyright (c) 2016, Marcel Hellkamp. |
||||
|
License: MIT (see LICENSE for details) |
||||
|
|
||||
|
|
@ -0,0 +1,9 @@ |
|||||
|
../../../bin/bottle.py,sha256=LRyG3HZAhbM_W3aktpqm_o7BMawyg95jcWPzjUhK9EY,150567 |
||||
|
../../../bin/bottle.pyc,, |
||||
|
bottle-0.12.18.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 |
||||
|
bottle-0.12.18.dist-info/METADATA,sha256=l_uRL08xx8kySIjlzqk8-q5O0yAS9ZDWMBGvVr5NnYc,1793 |
||||
|
bottle-0.12.18.dist-info/RECORD,, |
||||
|
bottle-0.12.18.dist-info/WHEEL,sha256=I79qopWJ69l5T6wZayt9VUOMecGZGPzu2_icbRYWjpI,93 |
||||
|
bottle-0.12.18.dist-info/top_level.txt,sha256=cK8mpC1WUvVJAVL1XsjCoCGkD-0Yc-pcrqfH0fRXkhg,7 |
||||
|
bottle.py,sha256=mDSCc0MX7-XwbF1VuZ1N58O3pjiu_lRpopf6d9ONX-g,150580 |
||||
|
bottle.pyc,, |
@ -0,0 +1,5 @@ |
|||||
|
Wheel-Version: 1.0 |
||||
|
Generator: bdist_wheel (0.33.6) |
||||
|
Root-Is-Purelib: true |
||||
|
Tag: cp27-none-any |
||||
|
|
@ -0,0 +1 @@ |
|||||
|
bottle |
File diff suppressed because it is too large
Binary file not shown.
@ -0,0 +1,50 @@ |
|||||
|
Certifi: Python SSL Certificates |
||||
|
================================ |
||||
|
|
||||
|
`Certifi`_ is a carefully curated collection of Root Certificates for |
||||
|
validating the trustworthiness of SSL certificates while verifying the identity |
||||
|
of TLS hosts. It has been extracted from the `Requests`_ project. |
||||
|
|
||||
|
Installation |
||||
|
------------ |
||||
|
|
||||
|
``certifi`` is available on PyPI. Simply install it with ``pip``:: |
||||
|
|
||||
|
$ pip install certifi |
||||
|
|
||||
|
Usage |
||||
|
----- |
||||
|
|
||||
|
To reference the installed certificate authority (CA) bundle, you can use the |
||||
|
built-in function:: |
||||
|
|
||||
|
>>> import certifi |
||||
|
|
||||
|
>>> certifi.where() |
||||
|
'/usr/local/lib/python2.7/site-packages/certifi/cacert.pem' |
||||
|
|
||||
|
Or from the command line:: |
||||
|
|
||||
|
$ python -m certifi |
||||
|
/usr/local/lib/python2.7/site-packages/certifi/cacert.pem |
||||
|
|
||||
|
Enjoy! |
||||
|
|
||||
|
1024-bit Root Certificates |
||||
|
~~~~~~~~~~~~~~~~~~~~~~~~~~ |
||||
|
|
||||
|
Browsers and certificate authorities have concluded that 1024-bit keys are |
||||
|
unacceptably weak for certificates, particularly root certificates. For this |
||||
|
reason, Mozilla has removed any weak (i.e. 1024-bit key) certificate from its |
||||
|
bundle, replacing it with an equivalent strong (i.e. 2048-bit or greater key) |
||||
|
certificate from the same CA. Because Mozilla removed these certificates from |
||||
|
its bundle, ``certifi`` removed them as well. |
||||
|
|
||||
|
In previous versions, ``certifi`` provided the ``certifi.old_where()`` function |
||||
|
to intentionally re-add the 1024-bit roots back into your bundle. This was not |
||||
|
recommended in production and therefore was removed at the end of 2018. |
||||
|
|
||||
|
.. _`Certifi`: https://certifi.io/en/latest/ |
||||
|
.. _`Requests`: http://docs.python-requests.org/en/latest/ |
||||
|
|
||||
|
|
@ -0,0 +1 @@ |
|||||
|
pip |
@ -0,0 +1,74 @@ |
|||||
|
Metadata-Version: 2.0 |
||||
|
Name: certifi |
||||
|
Version: 2019.11.28 |
||||
|
Summary: Python package for providing Mozilla's CA Bundle. |
||||
|
Home-page: https://certifi.io/ |
||||
|
Author: Kenneth Reitz |
||||
|
Author-email: me@kennethreitz.com |
||||
|
License: MPL-2.0 |
||||
|
Platform: UNKNOWN |
||||
|
Classifier: Development Status :: 5 - Production/Stable |
||||
|
Classifier: Intended Audience :: Developers |
||||
|
Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0) |
||||
|
Classifier: Natural Language :: English |
||||
|
Classifier: Programming Language :: Python |
||||
|
Classifier: Programming Language :: Python :: 2 |
||||
|
Classifier: Programming Language :: Python :: 2.6 |
||||
|
Classifier: Programming Language :: Python :: 2.7 |
||||
|
Classifier: Programming Language :: Python :: 3 |
||||
|
Classifier: Programming Language :: Python :: 3.3 |
||||
|
Classifier: Programming Language :: Python :: 3.4 |
||||
|
Classifier: Programming Language :: Python :: 3.5 |
||||
|
Classifier: Programming Language :: Python :: 3.6 |
||||
|
Classifier: Programming Language :: Python :: 3.7 |
||||
|
|
||||
|
Certifi: Python SSL Certificates |
||||
|
================================ |
||||
|
|
||||
|
`Certifi`_ is a carefully curated collection of Root Certificates for |
||||
|
validating the trustworthiness of SSL certificates while verifying the identity |
||||
|
of TLS hosts. It has been extracted from the `Requests`_ project. |
||||
|
|
||||
|
Installation |
||||
|
------------ |
||||
|
|
||||
|
``certifi`` is available on PyPI. Simply install it with ``pip``:: |
||||
|
|
||||
|
$ pip install certifi |
||||
|
|
||||
|
Usage |
||||
|
----- |
||||
|
|
||||
|
To reference the installed certificate authority (CA) bundle, you can use the |
||||
|
built-in function:: |
||||
|
|
||||
|
>>> import certifi |
||||
|
|
||||
|
>>> certifi.where() |
||||
|
'/usr/local/lib/python2.7/site-packages/certifi/cacert.pem' |
||||
|
|
||||
|
Or from the command line:: |
||||
|
|
||||
|
$ python -m certifi |
||||
|
/usr/local/lib/python2.7/site-packages/certifi/cacert.pem |
||||
|
|
||||
|
Enjoy! |
||||
|
|
||||
|
1024-bit Root Certificates |
||||
|
~~~~~~~~~~~~~~~~~~~~~~~~~~ |
||||
|
|
||||
|
Browsers and certificate authorities have concluded that 1024-bit keys are |
||||
|
unacceptably weak for certificates, particularly root certificates. For this |
||||
|
reason, Mozilla has removed any weak (i.e. 1024-bit key) certificate from its |
||||
|
bundle, replacing it with an equivalent strong (i.e. 2048-bit or greater key) |
||||
|
certificate from the same CA. Because Mozilla removed these certificates from |
||||
|
its bundle, ``certifi`` removed them as well. |
||||
|
|
||||
|
In previous versions, ``certifi`` provided the ``certifi.old_where()`` function |
||||
|
to intentionally re-add the 1024-bit roots back into your bundle. This was not |
||||
|
recommended in production and therefore was removed at the end of 2018. |
||||
|
|
||||
|
.. _`Certifi`: https://certifi.io/en/latest/ |
||||
|
.. _`Requests`: http://docs.python-requests.org/en/latest/ |
||||
|
|
||||
|
|
@ -0,0 +1,14 @@ |
|||||
|
certifi-2019.11.28.dist-info/DESCRIPTION.rst,sha256=aLNHONztn2ZiBpSTivVFy6EDIWmuNYSsEQwx4NWbvB4,1580 |
||||
|
certifi-2019.11.28.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 |
||||
|
certifi-2019.11.28.dist-info/METADATA,sha256=CnYsfjDpEJJMNgBGSD2v_WN-PS-g4ZmIt1aiZ8UiRiE,2523 |
||||
|
certifi-2019.11.28.dist-info/RECORD,, |
||||
|
certifi-2019.11.28.dist-info/WHEEL,sha256=5wvfB7GvgZAbKBSE9uX9Zbi6LCL-_KgezgHblXhCRnM,113 |
||||
|
certifi-2019.11.28.dist-info/metadata.json,sha256=9MSLVS0RruV3LnE_uHbsv6QHamn7Lq9GwQ_gZOrw4Mw,1023 |
||||
|
certifi-2019.11.28.dist-info/top_level.txt,sha256=KMu4vUCfsjLrkPbSNdgdekS-pVJzBAJFO__nI8NF6-U,8 |
||||
|
certifi/__init__.py,sha256=JVwzDhkMttyVVtfNDrU_i0v2a-WmtEBXq0Z8oz4Ghzk,52 |
||||
|
certifi/__init__.pyc,, |
||||
|
certifi/__main__.py,sha256=FiOYt1Fltst7wk9DRa6GCoBr8qBUxlNQu_MKJf04E6s,41 |
||||
|
certifi/__main__.pyc,, |
||||
|
certifi/cacert.pem,sha256=cyvv5Jx1gHACNEj2GaOrsIj0Tk8FmSvHR42uhzvlatg,281457 |
||||
|
certifi/core.py,sha256=EuFc2BsToG5O1-qsx4BSjQ1r1-7WRtH87b1WflZOWhI,218 |
||||
|
certifi/core.pyc,, |
@ -0,0 +1,6 @@ |
|||||
|
Wheel-Version: 1.0 |
||||
|
Generator: bdist_wheel (0.30.0.a0) |
||||
|
Root-Is-Purelib: true |
||||
|
Tag: py2-none-any |
||||
|
Tag: py3-none-any |
||||
|
|
@ -0,0 +1 @@ |
|||||
|
{"classifiers": ["Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)", "Natural Language :: English", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7"], "extensions": {"python.details": {"contacts": [{"email": "me@kennethreitz.com", "name": "Kenneth Reitz", "role": "author"}], "document_names": {"description": "DESCRIPTION.rst"}, "project_urls": {"Home": "https://certifi.io/"}}}, "generator": "bdist_wheel (0.30.0.a0)", "license": "MPL-2.0", "metadata_version": "2.0", "name": "certifi", "summary": "Python package for providing Mozilla's CA Bundle.", "version": "2019.11.28"} |
@ -0,0 +1 @@ |
|||||
|
certifi |
@ -0,0 +1,3 @@ |
|||||
|
from .core import where |
||||
|
|
||||
|
__version__ = "2019.11.28" |
Binary file not shown.
@ -0,0 +1,2 @@ |
|||||
|
from certifi import where |
||||
|
print(where()) |
Binary file not shown.
File diff suppressed because it is too large
@ -0,0 +1,15 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
|
||||
|
""" |
||||
|
certifi.py |
||||
|
~~~~~~~~~~ |
||||
|
|
||||
|
This module returns the installation location of cacert.pem. |
||||
|
""" |
||||
|
import os |
||||
|
|
||||
|
|
||||
|
def where(): |
||||
|
f = os.path.dirname(__file__) |
||||
|
|
||||
|
return os.path.join(f, 'cacert.pem') |
Binary file not shown.
@ -0,0 +1,70 @@ |
|||||
|
Chardet: The Universal Character Encoding Detector |
||||
|
-------------------------------------------------- |
||||
|
|
||||
|
.. image:: https://img.shields.io/travis/chardet/chardet/stable.svg |
||||
|
:alt: Build status |
||||
|
:target: https://travis-ci.org/chardet/chardet |
||||
|
|
||||
|
.. image:: https://img.shields.io/coveralls/chardet/chardet/stable.svg |
||||
|
:target: https://coveralls.io/r/chardet/chardet |
||||
|
|
||||
|
.. image:: https://img.shields.io/pypi/v/chardet.svg |
||||
|
:target: https://warehouse.python.org/project/chardet/ |
||||
|
:alt: Latest version on PyPI |
||||
|
|
||||
|
.. image:: https://img.shields.io/pypi/l/chardet.svg |
||||
|
:alt: License |
||||
|
|
||||
|
|
||||
|
Detects |
||||
|
- ASCII, UTF-8, UTF-16 (2 variants), UTF-32 (4 variants) |
||||
|
- Big5, GB2312, EUC-TW, HZ-GB-2312, ISO-2022-CN (Traditional and Simplified Chinese) |
||||
|
- EUC-JP, SHIFT_JIS, CP932, ISO-2022-JP (Japanese) |
||||
|
- EUC-KR, ISO-2022-KR (Korean) |
||||
|
- KOI8-R, MacCyrillic, IBM855, IBM866, ISO-8859-5, windows-1251 (Cyrillic) |
||||
|
- ISO-8859-5, windows-1251 (Bulgarian) |
||||
|
- ISO-8859-1, windows-1252 (Western European languages) |
||||
|
- ISO-8859-7, windows-1253 (Greek) |
||||
|
- ISO-8859-8, windows-1255 (Visual and Logical Hebrew) |
||||
|
- TIS-620 (Thai) |
||||
|
|
||||
|
.. note:: |
||||
|
Our ISO-8859-2 and windows-1250 (Hungarian) probers have been temporarily |
||||
|
disabled until we can retrain the models. |
||||
|
|
||||
|
Requires Python 2.6, 2.7, or 3.3+. |
||||
|
|
||||
|
Installation |
||||
|
------------ |
||||
|
|
||||
|
Install from `PyPI <https://pypi.python.org/pypi/chardet>`_:: |
||||
|
|
||||
|
pip install chardet |
||||
|
|
||||
|
Documentation |
||||
|
------------- |
||||
|
|
||||
|
For users, docs are now available at https://chardet.readthedocs.io/. |
||||
|
|
||||
|
Command-line Tool |
||||
|
----------------- |
||||
|
|
||||
|
chardet comes with a command-line script which reports on the encodings of one |
||||
|
or more files:: |
||||
|
|
||||
|
% chardetect somefile someotherfile |
||||
|
somefile: windows-1252 with confidence 0.5 |
||||
|
someotherfile: ascii with confidence 1.0 |
||||
|
|
||||
|
About |
||||
|
----- |
||||
|
|
||||
|
This is a continuation of Mark Pilgrim's excellent chardet. Previously, two |
||||
|
versions needed to be maintained: one that supported python 2.x and one that |
||||
|
supported python 3.x. We've recently merged with `Ian Cordasco <https://github.com/sigmavirus24>`_'s |
||||
|
`charade <https://github.com/sigmavirus24/charade>`_ fork, so now we have one |
||||
|
coherent version that works for Python 2.6+. |
||||
|
|
||||
|
:maintainer: Dan Blanchard |
||||
|
|
||||
|
|
@ -0,0 +1 @@ |
|||||
|
pip |
@ -0,0 +1,96 @@ |
|||||
|
Metadata-Version: 2.0 |
||||
|
Name: chardet |
||||
|
Version: 3.0.4 |
||||
|
Summary: Universal encoding detector for Python 2 and 3 |
||||
|
Home-page: https://github.com/chardet/chardet |
||||
|
Author: Daniel Blanchard |
||||
|
Author-email: dan.blanchard@gmail.com |
||||
|
License: LGPL |
||||
|
Keywords: encoding,i18n,xml |
||||
|
Platform: UNKNOWN |
||||
|
Classifier: Development Status :: 4 - Beta |
||||
|
Classifier: Intended Audience :: Developers |
||||
|
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL) |
||||
|
Classifier: Operating System :: OS Independent |
||||
|
Classifier: Programming Language :: Python |
||||
|
Classifier: Programming Language :: Python :: 2 |
||||
|
Classifier: Programming Language :: Python :: 2.6 |
||||
|
Classifier: Programming Language :: Python :: 2.7 |
||||
|
Classifier: Programming Language :: Python :: 3 |
||||
|
Classifier: Programming Language :: Python :: 3.3 |
||||
|
Classifier: Programming Language :: Python :: 3.4 |
||||
|
Classifier: Programming Language :: Python :: 3.5 |
||||
|
Classifier: Programming Language :: Python :: 3.6 |
||||
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules |
||||
|
Classifier: Topic :: Text Processing :: Linguistic |
||||
|
|
||||
|
Chardet: The Universal Character Encoding Detector |
||||
|
-------------------------------------------------- |
||||
|
|
||||
|
.. image:: https://img.shields.io/travis/chardet/chardet/stable.svg |
||||
|
:alt: Build status |
||||
|
:target: https://travis-ci.org/chardet/chardet |
||||
|
|
||||
|
.. image:: https://img.shields.io/coveralls/chardet/chardet/stable.svg |
||||
|
:target: https://coveralls.io/r/chardet/chardet |
||||
|
|
||||
|
.. image:: https://img.shields.io/pypi/v/chardet.svg |
||||
|
:target: https://warehouse.python.org/project/chardet/ |
||||
|
:alt: Latest version on PyPI |
||||
|
|
||||
|
.. image:: https://img.shields.io/pypi/l/chardet.svg |
||||
|
:alt: License |
||||
|
|
||||
|
|
||||
|
Detects |
||||
|
- ASCII, UTF-8, UTF-16 (2 variants), UTF-32 (4 variants) |
||||
|
- Big5, GB2312, EUC-TW, HZ-GB-2312, ISO-2022-CN (Traditional and Simplified Chinese) |
||||
|
- EUC-JP, SHIFT_JIS, CP932, ISO-2022-JP (Japanese) |
||||
|
- EUC-KR, ISO-2022-KR (Korean) |
||||
|
- KOI8-R, MacCyrillic, IBM855, IBM866, ISO-8859-5, windows-1251 (Cyrillic) |
||||
|
- ISO-8859-5, windows-1251 (Bulgarian) |
||||
|
- ISO-8859-1, windows-1252 (Western European languages) |
||||
|
- ISO-8859-7, windows-1253 (Greek) |
||||
|
- ISO-8859-8, windows-1255 (Visual and Logical Hebrew) |
||||
|
- TIS-620 (Thai) |
||||
|
|
||||
|
.. note:: |
||||
|
Our ISO-8859-2 and windows-1250 (Hungarian) probers have been temporarily |
||||
|
disabled until we can retrain the models. |
||||
|
|
||||
|
Requires Python 2.6, 2.7, or 3.3+. |
||||
|
|
||||
|
Installation |
||||
|
------------ |
||||
|
|
||||
|
Install from `PyPI <https://pypi.python.org/pypi/chardet>`_:: |
||||
|
|
||||
|
pip install chardet |
||||
|
|
||||
|
Documentation |
||||
|
------------- |
||||
|
|
||||
|
For users, docs are now available at https://chardet.readthedocs.io/. |
||||
|
|
||||
|
Command-line Tool |
||||
|
----------------- |
||||
|
|
||||
|
chardet comes with a command-line script which reports on the encodings of one |
||||
|
or more files:: |
||||
|
|
||||
|
% chardetect somefile someotherfile |
||||
|
somefile: windows-1252 with confidence 0.5 |
||||
|
someotherfile: ascii with confidence 1.0 |
||||
|
|
||||
|
About |
||||
|
----- |
||||
|
|
||||
|
This is a continuation of Mark Pilgrim's excellent chardet. Previously, two |
||||
|
versions needed to be maintained: one that supported python 2.x and one that |
||||
|
supported python 3.x. We've recently merged with `Ian Cordasco <https://github.com/sigmavirus24>`_'s |
||||
|
`charade <https://github.com/sigmavirus24/charade>`_ fork, so now we have one |
||||
|
coherent version that works for Python 2.6+. |
||||
|
|
||||
|
:maintainer: Dan Blanchard |
||||
|
|
||||
|
|
@ -0,0 +1,91 @@ |
|||||
|
../../../bin/chardetect,sha256=cXevqm5LBBsRaNL9wT5T31FzbTlObMXCxRR7EkeLwjs,250 |
||||
|
chardet-3.0.4.dist-info/DESCRIPTION.rst,sha256=PQ4sBsMyKFZkjC6QpmbpLn0UtCNyeb-ZqvCGEgyZMGk,2174 |
||||
|
chardet-3.0.4.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 |
||||
|
chardet-3.0.4.dist-info/METADATA,sha256=RV_2I4B1Z586DL8oVO5Kp7X5bUdQ5EuKAvNoAEF8wSw,3239 |
||||
|
chardet-3.0.4.dist-info/RECORD,, |
||||
|
chardet-3.0.4.dist-info/WHEEL,sha256=o2k-Qa-RMNIJmUdIc7KU6VWR_ErNRbWNlxDIpl7lm34,110 |
||||
|
chardet-3.0.4.dist-info/entry_points.txt,sha256=fAMmhu5eJ-zAJ-smfqQwRClQ3-nozOCmvJ6-E8lgGJo,60 |
||||
|
chardet-3.0.4.dist-info/metadata.json,sha256=0htbRM18ujyGZDdfowgAqj6Hq2eQtwzwyhaEveKntgo,1375 |
||||
|
chardet-3.0.4.dist-info/top_level.txt,sha256=AowzBbZy4x8EirABDdJSLJZMkJ_53iIag8xfKR6D7kI,8 |
||||
|
chardet/__init__.py,sha256=YsP5wQlsHJ2auF1RZJfypiSrCA7_bQiRm3ES_NI76-Y,1559 |
||||
|
chardet/__init__.pyc,, |
||||
|
chardet/big5freq.py,sha256=D_zK5GyzoVsRes0HkLJziltFQX0bKCLOrFe9_xDvO_8,31254 |
||||
|
chardet/big5freq.pyc,, |
||||
|
chardet/big5prober.py,sha256=kBxHbdetBpPe7xrlb-e990iot64g_eGSLd32lB7_h3M,1757 |
||||
|
chardet/big5prober.pyc,, |
||||
|
chardet/chardistribution.py,sha256=3woWS62KrGooKyqz4zQSnjFbJpa6V7g02daAibTwcl8,9411 |
||||
|
chardet/chardistribution.pyc,, |
||||
|
chardet/charsetgroupprober.py,sha256=6bDu8YIiRuScX4ca9Igb0U69TA2PGXXDej6Cc4_9kO4,3787 |
||||
|
chardet/charsetgroupprober.pyc,, |
||||
|
chardet/charsetprober.py,sha256=KSmwJErjypyj0bRZmC5F5eM7c8YQgLYIjZXintZNstg,5110 |
||||
|
chardet/charsetprober.pyc,, |
||||
|
chardet/cli/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1 |
||||
|
chardet/cli/__init__.pyc,, |
||||
|
chardet/cli/chardetect.py,sha256=YBO8L4mXo0WR6_-Fjh_8QxPBoEBNqB9oNxNrdc54AQs,2738 |
||||
|
chardet/cli/chardetect.pyc,, |
||||
|
chardet/codingstatemachine.py,sha256=VYp_6cyyki5sHgXDSZnXW4q1oelHc3cu9AyQTX7uug8,3590 |
||||
|
chardet/codingstatemachine.pyc,, |
||||
|
chardet/compat.py,sha256=PKTzHkSbtbHDqS9PyujMbX74q1a8mMpeQTDVsQhZMRw,1134 |
||||
|
chardet/compat.pyc,, |
||||
|
chardet/cp949prober.py,sha256=TZ434QX8zzBsnUvL_8wm4AQVTZ2ZkqEEQL_lNw9f9ow,1855 |
||||
|
chardet/cp949prober.pyc,, |
||||
|
chardet/enums.py,sha256=Aimwdb9as1dJKZaFNUH2OhWIVBVd6ZkJJ_WK5sNY8cU,1661 |
||||
|
chardet/enums.pyc,, |
||||
|
chardet/escprober.py,sha256=kkyqVg1Yw3DIOAMJ2bdlyQgUFQhuHAW8dUGskToNWSc,3950 |
||||
|
chardet/escprober.pyc,, |
||||
|
chardet/escsm.py,sha256=RuXlgNvTIDarndvllNCk5WZBIpdCxQ0kcd9EAuxUh84,10510 |
||||
|
chardet/escsm.pyc,, |
||||
|
chardet/eucjpprober.py,sha256=iD8Jdp0ISRjgjiVN7f0e8xGeQJ5GM2oeZ1dA8nbSeUw,3749 |
||||
|
chardet/eucjpprober.pyc,, |
||||
|
chardet/euckrfreq.py,sha256=-7GdmvgWez4-eO4SuXpa7tBiDi5vRXQ8WvdFAzVaSfo,13546 |
||||
|
chardet/euckrfreq.pyc,, |
||||
|
chardet/euckrprober.py,sha256=MqFMTQXxW4HbzIpZ9lKDHB3GN8SP4yiHenTmf8g_PxY,1748 |
||||
|
chardet/euckrprober.pyc,, |
||||
|
chardet/euctwfreq.py,sha256=No1WyduFOgB5VITUA7PLyC5oJRNzRyMbBxaKI1l16MA,31621 |
||||
|
chardet/euctwfreq.pyc,, |
||||
|
chardet/euctwprober.py,sha256=13p6EP4yRaxqnP4iHtxHOJ6R2zxHq1_m8hTRjzVZ95c,1747 |
||||
|
chardet/euctwprober.pyc,, |
||||
|
chardet/gb2312freq.py,sha256=JX8lsweKLmnCwmk8UHEQsLgkr_rP_kEbvivC4qPOrlc,20715 |
||||
|
chardet/gb2312freq.pyc,, |
||||
|
chardet/gb2312prober.py,sha256=gGvIWi9WhDjE-xQXHvNIyrnLvEbMAYgyUSZ65HUfylw,1754 |
||||
|
chardet/gb2312prober.pyc,, |
||||
|
chardet/hebrewprober.py,sha256=c3SZ-K7hvyzGY6JRAZxJgwJ_sUS9k0WYkvMY00YBYFo,13838 |
||||
|
chardet/hebrewprober.pyc,, |
||||
|
chardet/jisfreq.py,sha256=vpmJv2Bu0J8gnMVRPHMFefTRvo_ha1mryLig8CBwgOg,25777 |
||||
|
chardet/jisfreq.pyc,, |
||||
|
chardet/jpcntx.py,sha256=PYlNqRUQT8LM3cT5FmHGP0iiscFlTWED92MALvBungo,19643 |
||||
|
chardet/jpcntx.pyc,, |
||||
|
chardet/langbulgarianmodel.py,sha256=1HqQS9Pbtnj1xQgxitJMvw8X6kKr5OockNCZWfEQrPE,12839 |
||||
|
chardet/langbulgarianmodel.pyc,, |
||||
|
chardet/langcyrillicmodel.py,sha256=LODajvsetH87yYDDQKA2CULXUH87tI223dhfjh9Zx9c,17948 |
||||
|
chardet/langcyrillicmodel.pyc,, |
||||
|
chardet/langgreekmodel.py,sha256=8YAW7bU8YwSJap0kIJSbPMw1BEqzGjWzqcqf0WgUKAA,12688 |
||||
|
chardet/langgreekmodel.pyc,, |
||||
|
chardet/langhebrewmodel.py,sha256=JSnqmE5E62tDLTPTvLpQsg5gOMO4PbdWRvV7Avkc0HA,11345 |
||||
|
chardet/langhebrewmodel.pyc,, |
||||
|
chardet/langhungarianmodel.py,sha256=RhapYSG5l0ZaO-VV4Fan5sW0WRGQqhwBM61yx3yxyOA,12592 |
||||
|
chardet/langhungarianmodel.pyc,, |
||||
|
chardet/langthaimodel.py,sha256=8l0173Gu_W6G8mxmQOTEF4ls2YdE7FxWf3QkSxEGXJQ,11290 |
||||
|
chardet/langthaimodel.pyc,, |
||||
|
chardet/langturkishmodel.py,sha256=W22eRNJsqI6uWAfwXSKVWWnCerYqrI8dZQTm_M0lRFk,11102 |
||||
|
chardet/langturkishmodel.pyc,, |
||||
|
chardet/latin1prober.py,sha256=S2IoORhFk39FEFOlSFWtgVybRiP6h7BlLldHVclNkU8,5370 |
||||
|
chardet/latin1prober.pyc,, |
||||
|
chardet/mbcharsetprober.py,sha256=AR95eFH9vuqSfvLQZN-L5ijea25NOBCoXqw8s5O9xLQ,3413 |
||||
|
chardet/mbcharsetprober.pyc,, |
||||
|
chardet/mbcsgroupprober.py,sha256=h6TRnnYq2OxG1WdD5JOyxcdVpn7dG0q-vB8nWr5mbh4,2012 |
||||
|
chardet/mbcsgroupprober.pyc,, |
||||
|
chardet/mbcssm.py,sha256=SY32wVIF3HzcjY3BaEspy9metbNSKxIIB0RKPn7tjpI,25481 |
||||
|
chardet/mbcssm.pyc,, |
||||
|
chardet/sbcharsetprober.py,sha256=LDSpCldDCFlYwUkGkwD2oFxLlPWIWXT09akH_2PiY74,5657 |
||||
|
chardet/sbcharsetprober.pyc,, |
||||
|
chardet/sbcsgroupprober.py,sha256=1IprcCB_k1qfmnxGC6MBbxELlKqD3scW6S8YIwdeyXA,3546 |
||||
|
chardet/sbcsgroupprober.pyc,, |
||||
|
chardet/sjisprober.py,sha256=IIt-lZj0WJqK4rmUZzKZP4GJlE8KUEtFYVuY96ek5MQ,3774 |
||||
|
chardet/sjisprober.pyc,, |
||||
|
chardet/universaldetector.py,sha256=qL0174lSZE442eB21nnktT9_VcAye07laFWUeUrjttY,12485 |
||||
|
chardet/universaldetector.pyc,, |
||||
|
chardet/utf8prober.py,sha256=IdD8v3zWOsB8OLiyPi-y_fqwipRFxV9Nc1eKBLSuIEw,2766 |
||||
|
chardet/utf8prober.pyc,, |
||||
|
chardet/version.py,sha256=sp3B08mrDXB-pf3K9fqJ_zeDHOCLC8RrngQyDFap_7g,242 |
||||
|
chardet/version.pyc,, |
@ -0,0 +1,6 @@ |
|||||
|
Wheel-Version: 1.0 |
||||
|
Generator: bdist_wheel (0.29.0) |
||||
|
Root-Is-Purelib: true |
||||
|
Tag: py2-none-any |
||||
|
Tag: py3-none-any |
||||
|
|
@ -0,0 +1,3 @@ |
|||||
|
[console_scripts] |
||||
|
chardetect = chardet.cli.chardetect:main |
||||
|
|
@ -0,0 +1 @@ |
|||||
|
{"classifiers": ["Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Text Processing :: Linguistic"], "extensions": {"python.commands": {"wrap_console": {"chardetect": "chardet.cli.chardetect:main"}}, "python.details": {"contacts": [{"email": "dan.blanchard@gmail.com", "name": "Daniel Blanchard", "role": "author"}], "document_names": {"description": "DESCRIPTION.rst"}, "project_urls": {"Home": "https://github.com/chardet/chardet"}}, "python.exports": {"console_scripts": {"chardetect": "chardet.cli.chardetect:main"}}}, "generator": "bdist_wheel (0.29.0)", "keywords": ["encoding", "i18n", "xml"], "license": "LGPL", "metadata_version": "2.0", "name": "chardet", "summary": "Universal encoding detector for Python 2 and 3", "test_requires": [{"requires": ["hypothesis", "pytest"]}], "version": "3.0.4"} |
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue