[ramdisk] add cvitek pre-built ramdisk

Change-Id: Ic7d2046a23358129eaf621b5558984a64fa7361d
This commit is contained in:
sam.xiang
2023-02-23 09:56:47 +08:00
parent 4f810186ab
commit 1cf39ecdd5
12481 changed files with 1478086 additions and 0 deletions

View File

@ -0,0 +1,145 @@
Metadata-Version: 1.1
Name: pathvalidate
Version: 0.16.0
Summary: A python library to validate/sanitize a string such as filenames/variable-names/excel-sheet-names.
Home-page: https://github.com/thombashi/pathvalidate
Author: Tsuyoshi Hombashi
Author-email: tsuyoshi.hombashi@gmail.com
License: MIT License
Description: pathvalidate
============
.. image:: https://badge.fury.io/py/pathvalidate.svg
:target: https://badge.fury.io/py/pathvalidate
.. image:: https://img.shields.io/pypi/pyversions/pathvalidate.svg
:target: https://pypi.python.org/pypi/pathvalidate
.. image:: https://img.shields.io/travis/thombashi/pathvalidate/master.svg?label=Linux
:target: https://travis-ci.org/thombashi/pathvalidate
:alt: Linux CI test status
.. image:: https://img.shields.io/appveyor/ci/thombashi/pathvalidate/master.svg?label=Windows
:target: https://ci.appveyor.com/project/thombashi/pathvalidate/branch/master
:alt: Windows CI test status
.. image:: https://coveralls.io/repos/github/thombashi/pathvalidate/badge.svg?branch=master
:target: https://coveralls.io/github/thombashi/pathvalidate?branch=master
.. image:: https://img.shields.io/github/stars/thombashi/pathvalidate.svg?style=social&label=Star
:target: https://github.com/thombashi/pathvalidate
Summary
-------
A python library to validate/sanitize a string such as filenames/variable-names/excel-sheet-names.
Feature
-------
- Validate/Sanitize a string:
- file name
- file path
- variable name: ``Python``/``JavaScript``
- `Labeled Tab-separated Values (LTSV) <http://ltsv.org/>`__ label
- Elastic search index name
- Excel sheet name
- SQLite table/attribute name
Examples
========
Validate a filename
-------------------
.. code:: python
import pathvalidate
try:
pathvalidate.validate_filename("\0_a*b:c<d>e%f/(g)h+i_0.txt")
except ValueError:
print("invalid filename!")
.. code::
invalid filename!
Sanitize a filename
-------------------
.. code:: python
import pathvalidate
filename = "_a*b:c<d>e%f/(g)h+i_0.txt"
print(pathvalidate.sanitize_filename(filename))
.. code::
_abcde%f(g)h+i_0.txt
Sanitize a variable name
------------------------
.. code:: python
import pathvalidate
print(pathvalidate.sanitize_python_var_name("_a*b:c<d>e%f/(g)h+i_0.txt"))
.. code::
abcdefghi_0txt
For more information
--------------------
More examples are available at
http://pathvalidate.rtfd.io/en/latest/pages/examples/index.html
Installation
============
::
pip install pathvalidate
Dependencies
============
Python 2.7+ or 3.3+
No package dependencies.
Test dependencies
-----------------
- `pytest <http://pytest.org/latest/>`__
- `pytest-runner <https://pypi.python.org/pypi/pytest-runner>`__
- `tox <https://testrun.org/tox/latest/>`__
Documentation
=============
http://pathvalidate.rtfd.io/
Keywords: path,validation,validator,sanitize,file,Excel,JavaScript,LTSV,SQLite
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
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
Classifier: Topic :: Software Development :: Libraries :: Python Modules

View File

@ -0,0 +1,39 @@
LICENSE
MANIFEST.in
README.rst
setup.cfg
setup.py
tox.ini
docs/pages/introduction/summary.txt
pathvalidate/__init__.py
pathvalidate/_app.py
pathvalidate/_common.py
pathvalidate/_error.py
pathvalidate/_file.py
pathvalidate/_interface.py
pathvalidate/_ltsv.py
pathvalidate/_six.py
pathvalidate/_sqlite.py
pathvalidate/_symbol.py
pathvalidate.egg-info/PKG-INFO
pathvalidate.egg-info/SOURCES.txt
pathvalidate.egg-info/dependency_links.txt
pathvalidate.egg-info/top_level.txt
pathvalidate/variable/__init__.py
pathvalidate/variable/_base.py
pathvalidate/variable/_elasticsearch.py
pathvalidate/variable/_javascript.py
pathvalidate/variable/_python.py
requirements/docs_requirements.txt
requirements/requirements.txt
requirements/test_requirements.txt
test/__init__.py
test/_common.py
test/test_elasticsearch.py
test/test_excel.py
test/test_file.py
test/test_js_var_name.py
test/test_ltsv.py
test/test_python_var_name.py
test/test_sqlite.py
test/test_symbol.py