__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
""" Tools for working with Debian-related file formats """
__version__ = ""
try:
# pylint: disable=no-member
import debian._version
__version__ = debian._version.__version__
except ImportError:
try:
# Try to extract the version from the package changelog and
# determine whether it is a post-release or pre-release version.
import os.path
import debian.changelog
changelog_filename = os.path.join(
os.path.dirname(__file__), '..', '..', 'debian', 'changelog')
with open(changelog_filename, 'rb') as fh:
c = debian.changelog.Changelog(fh)
version = str(c.version)
mark = "~" if c.distributions == 'UNRELEASED' else "+"
except: # pylint: disable=bare-except
# Fake a version string in desperation
version = '0.0.0'
mark = '-'
import datetime
timestamp = datetime.datetime.utcnow().strftime("%Y%m%d")
__version__ = "%s%sgit%s" % (version, mark, timestamp)
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| __pycache__ | Folder | 0755 |
|
|
| _deb822_repro | Folder | 0755 |
|
|
| __init__.py | File | 1012 B | 0644 |
|
| _arch_table.py | File | 18.04 KB | 0644 |
|
| _util.py | File | 13.23 KB | 0644 |
|
| _version.py | File | 63 B | 0644 |
|
| arfile.py | File | 13.48 KB | 0644 |
|
| changelog.py | File | 38.1 KB | 0644 |
|
| copyright.py | File | 30.69 KB | 0644 |
|
| deb822.py | File | 94.59 KB | 0644 |
|
| debfile.py | File | 18.92 KB | 0644 |
|
| debian_support.py | File | 26.79 KB | 0644 |
|
| debtags.py | File | 18.58 KB | 0644 |
|
| deprecation.py | File | 1.7 KB | 0644 |
|
| py.typed | File | 0 B | 0644 |
|
| substvars.py | File | 14.53 KB | 0644 |
|
| watch.py | File | 9.31 KB | 0644 |
|