repo_full_name
stringlengths
6
93
repo_url
stringlengths
25
112
repo_api_url
stringclasses
28 values
owner
stringclasses
28 values
repo_name
stringclasses
28 values
description
stringclasses
28 values
stars
int64
617
98.8k
forks
int64
31
355
watchers
int64
990
999
license
stringclasses
2 values
default_branch
stringclasses
2 values
repo_created_at
timestamp[s]date
2012-07-24 23:12:50
2025-06-16 08:07:28
repo_updated_at
timestamp[s]date
2026-02-23 15:23:15
2026-05-03 18:52:12
repo_topics
listlengths
0
13
repo_languages
unknown
is_fork
bool
1 class
open_issues
int64
3
104
file_path
stringlengths
3
208
file_name
stringclasses
509 values
file_extension
stringclasses
1 value
file_size_bytes
int64
101
84k
file_url
stringclasses
627 values
file_raw_url
stringclasses
627 values
file_sha
stringclasses
624 values
language
stringclasses
8 values
parsed_at
stringdate
2026-05-04 01:12:36
2026-05-04 19:41:55
text
stringlengths
100
102k
has2k1/plotnine
https://github.com/has2k1/plotnine
null
null
null
null
4,557
null
null
mit
null
null
null
null
null
null
null
plotnine/_mpl/text.py
null
null
null
null
null
null
Python
2026-05-04T01:58:35.260325
from __future__ import annotations from functools import lru_cache from typing import TYPE_CHECKING from matplotlib import artist from matplotlib.text import Text from plotnine._utils import ha_as_float, va_as_float from .patches import StripTextPatch from .utils import bbox_in_axes_space, rel_position if TYPE_CHE...
has2k1/plotnine
https://github.com/has2k1/plotnine
null
null
null
null
4,557
null
null
mit
null
null
null
null
null
null
null
plotnine/_utils/dataclasses.py
null
null
null
null
null
null
Python
2026-05-04T01:58:36.418771
from __future__ import annotations from dataclasses import fields from typing import TYPE_CHECKING if TYPE_CHECKING: from typing import Any, Iterable def non_none_init_items(obj) -> Iterable[tuple[str, Any]]: """ Yield (name, value) pairs of dataclass fields of `obj` that: 1. Have `init=True` in ...
has2k1/plotnine
https://github.com/has2k1/plotnine
null
null
null
null
4,557
null
null
mit
null
null
null
null
null
null
null
plotnine/_mpl/ticker.py
null
null
null
null
null
null
Python
2026-05-04T01:58:36.430852
import locale from matplotlib.ticker import FixedFormatter class MyFixedFormatter(FixedFormatter): """ Override MPL fixedformatter for better formatting """ def format_data(self, value: float) -> str: """ Return a formatted string representation of a number. """ s = l...
has2k1/plotnine
https://github.com/has2k1/plotnine
null
null
null
null
4,557
null
null
mit
null
null
null
null
null
null
null
plotnine/_utils/context.py
null
null
null
null
null
null
Python
2026-05-04T01:58:36.432950
from __future__ import annotations from copy import copy from dataclasses import dataclass from typing import TYPE_CHECKING import pandas as pd from packaging.version import Version from ..session import set_last_plot if TYPE_CHECKING: from typing_extensions import Self from plotnine import ggplot from...
has2k1/plotnine
https://github.com/has2k1/plotnine
null
null
null
null
4,557
null
null
mit
null
null
null
null
null
null
null
plotnine/_utils/quarto.py
null
null
null
null
null
null
Python
2026-05-04T01:58:36.433518
import os import sys from functools import lru_cache def is_quarto_environment() -> bool: """ Return True if running in quarto """ return "QUARTO_FIG_WIDTH" in os.environ def set_options_from_quarto(): """ Set options from quarto """ from plotnine.options import set_option dpi =...
has2k1/plotnine
https://github.com/has2k1/plotnine
null
null
null
null
4,557
null
null
mit
null
null
null
null
null
null
null
plotnine/_utils/dev.py
null
null
null
null
null
null
Python
2026-05-04T01:58:36.434552
from __future__ import annotations def get_plotnine_all() -> str: """ Generate package level * (star) imports for plotnine """ from importlib import import_module modules = ( "coords", "facets", "geoms", "ggplot", "guides", "labels", "mappin...
has2k1/plotnine
https://github.com/has2k1/plotnine
null
null
null
null
4,557
null
null
mit
null
null
null
null
null
null
null
plotnine/_utils/__init__.py
null
null
null
null
null
null
Python
2026-05-04T01:58:36.436333
""" Little functions used all over the codebase """ from __future__ import annotations import inspect import itertools import warnings from collections import defaultdict from collections.abc import Iterable, Sequence from contextlib import suppress from copy import deepcopy from dataclasses import field from typing ...
has2k1/plotnine
https://github.com/has2k1/plotnine
null
null
null
null
4,557
null
null
mit
null
null
null
null
null
null
null
plotnine/_utils/ipython.py
null
null
null
null
null
null
Python
2026-05-04T01:58:36.439798
from __future__ import annotations from typing import TYPE_CHECKING if TYPE_CHECKING: from IPython.core.interactiveshell import InteractiveShell from ..typing import DisplayMetadata, FigureFormat, MimeBundle def get_ipython() -> "None | InteractiveShell": """ Return running IPython instance or None...
has2k1/plotnine
https://github.com/has2k1/plotnine
null
null
null
null
4,557
null
null
mit
null
null
null
null
null
null
null
plotnine/_utils/registry.py
null
null
null
null
null
null
Python
2026-05-04T01:58:36.726627
from __future__ import annotations from abc import ABCMeta from collections import defaultdict from typing import TYPE_CHECKING from weakref import WeakValueDictionary from ..exceptions import PlotnineError if TYPE_CHECKING: from typing import TypeVar T = TypeVar("T") def alias(cls: type[T]) -> type[T]: ...
has2k1/plotnine
https://github.com/has2k1/plotnine
null
null
null
null
4,557
null
null
mit
null
null
null
null
null
null
null
plotnine/_mpl/utils.py
null
null
null
null
null
null
Python
2026-05-04T01:58:36.729529
from __future__ import annotations from dataclasses import dataclass from typing import TYPE_CHECKING, cast from matplotlib.transforms import Affine2D, Bbox from plotnine._utils import ha_as_float, va_as_float from .transforms import ZEROS_BBOX if TYPE_CHECKING: from typing import Literal, Sequence from m...
has2k1/plotnine
https://github.com/has2k1/plotnine
null
null
null
null
4,557
null
null
mit
null
null
null
null
null
null
null
plotnine/_utils/yippie.py
null
null
null
null
null
null
Python
2026-05-04T01:58:37.170051
""" Functions/class to quickly create plots for development and testing """ import pandas as pd from plotnine import ( aes, element_blank, element_rect, element_text, geom_col, geom_point, ggplot, labs, theme, ) __all__ = ("geom", "legend", "plot", "rotate", "tag") class _Plot: ...
has2k1/plotnine
https://github.com/has2k1/plotnine
null
null
null
null
4,557
null
null
mit
null
null
null
null
null
null
null
plotnine/composition/_beside.py
null
null
null
null
null
null
Python
2026-05-04T01:58:37.222367
from __future__ import annotations from typing import TYPE_CHECKING from ._compose import Compose if TYPE_CHECKING: from plotnine.ggplot import ggplot class Beside(Compose): """ Place plots or compositions side by side **Usage** plot | plot plot | composition composition |...
has2k1/plotnine
https://github.com/has2k1/plotnine
null
null
null
null
4,557
null
null
mit
null
null
null
null
null
null
null
plotnine/composition/_plot_layout.py
null
null
null
null
null
null
Python
2026-05-04T01:58:37.230274
from __future__ import annotations from dataclasses import dataclass, field from itertools import cycle from typing import TYPE_CHECKING, Sequence from ..composition._types import ComposeAddable if TYPE_CHECKING: from ._compose import Compose @dataclass(kw_only=True) class plot_layout(ComposeAddable): """ ...
has2k1/plotnine
https://github.com/has2k1/plotnine
null
null
null
null
4,557
null
null
mit
null
null
null
null
null
null
null
plotnine/composition/_plot_spacer.py
null
null
null
null
null
null
Python
2026-05-04T01:58:37.238644
from __future__ import annotations from copy import deepcopy from plotnine import element_rect, ggplot, theme, theme_void class plot_spacer(ggplot): """ Blank area as wide or as tall as a plot Parameters ---------- fill : Background color. The default is a transparent area, but it ...
has2k1/plotnine
https://github.com/has2k1/plotnine
null
null
null
null
4,557
null
null
mit
null
null
null
null
null
null
null
plotnine/composition/_compose.py
null
null
null
null
null
null
Python
2026-05-04T01:58:37.239363
from __future__ import annotations import abc from copy import copy, deepcopy from io import BytesIO from typing import TYPE_CHECKING, cast, overload from plotnine.themes.theme import theme, theme_get from .._utils.context import plot_composition_context from .._utils.ipython import ( get_ipython, get_mimebu...
has2k1/plotnine
https://github.com/has2k1/plotnine
null
null
null
null
4,557
null
null
mit
null
null
null
null
null
null
null
plotnine/composition/__init__.py
null
null
null
null
null
null
Python
2026-05-04T01:58:37.242254
from ._beside import Beside from ._compose import Compose from ._plot_annotation import plot_annotation from ._plot_layout import plot_layout from ._plot_spacer import plot_spacer from ._stack import Stack from ._wrap import Wrap __all__ = ( "Compose", "Stack", "Beside", "Wrap", "plot_annotation", ...
has2k1/plotnine
https://github.com/has2k1/plotnine
null
null
null
null
4,557
null
null
mit
null
null
null
null
null
null
null
plotnine/animation.py
null
null
null
null
null
null
Python
2026-05-04T01:58:37.243181
from __future__ import annotations import typing from copy import deepcopy from matplotlib.animation import ArtistAnimation from .exceptions import PlotnineError if typing.TYPE_CHECKING: from typing import Iterable from matplotlib.artist import Artist from matplotlib.axes import Axes from matplotli...
has2k1/plotnine
https://github.com/has2k1/plotnine
null
null
null
null
4,557
null
null
mit
null
null
null
null
null
null
null
plotnine/composition/_plot_annotation.py
null
null
null
null
null
null
Python
2026-05-04T01:58:37.252894
from __future__ import annotations from dataclasses import dataclass, field from typing import TYPE_CHECKING from .. import theme from .._utils.dataclasses import non_none_init_items from ..composition._types import ComposeAddable if TYPE_CHECKING: from ._compose import Compose @dataclass(kw_only=True) class p...
has2k1/plotnine
https://github.com/has2k1/plotnine
null
null
null
null
4,557
null
null
mit
null
null
null
null
null
null
null
plotnine/composition/_types.py
null
null
null
null
null
null
Python
2026-05-04T01:58:37.281476
from __future__ import annotations from typing import TYPE_CHECKING if TYPE_CHECKING: from ._compose import Compose class ComposeAddable: """ Object that can be added to a ggplot object """ def __radd__(self, other: Compose) -> Compose: """ Add to compose object Paramet...
has2k1/plotnine
https://github.com/has2k1/plotnine
null
null
null
null
4,557
null
null
mit
null
null
null
null
null
null
null
plotnine/composition/_stack.py
null
null
null
null
null
null
Python
2026-05-04T01:58:37.285210
from __future__ import annotations from typing import TYPE_CHECKING from ._compose import Compose if TYPE_CHECKING: from plotnine.ggplot import ggplot class Stack(Compose): """ Place plots or compositions on top of each other **Usage** plot / plot plot / composition compos...
has2k1/plotnine
https://github.com/has2k1/plotnine
null
null
null
null
4,557
null
null
mit
null
null
null
null
null
null
null
plotnine/coords/coord_fixed.py
null
null
null
null
null
null
Python
2026-05-04T01:58:38.207643
from __future__ import annotations import typing from .coord_cartesian import coord_cartesian if typing.TYPE_CHECKING: from typing import Optional from plotnine.iapi import panel_view class coord_fixed(coord_cartesian): """ Cartesian coordinates with fixed relationship between x and y scales ...
has2k1/plotnine
https://github.com/has2k1/plotnine
null
null
null
null
4,557
null
null
mit
null
null
null
null
null
null
null
plotnine/coords/coord_cartesian.py
null
null
null
null
null
null
Python
2026-05-04T01:58:38.210947
from __future__ import annotations import typing from types import SimpleNamespace from ..iapi import panel_view from ..positions.position import transform_position from .coord import coord, dist_euclidean if typing.TYPE_CHECKING: from typing import Any import pandas as pd from plotnine.iapi import sca...
has2k1/plotnine
https://github.com/has2k1/plotnine
null
null
null
null
4,557
null
null
mit
null
null
null
null
null
null
null
plotnine/composition/_wrap.py
null
null
null
null
null
null
Python
2026-05-04T01:58:38.215423
from __future__ import annotations from ..ggplot import ggplot from ._compose import Compose class Wrap(Compose): """ Wrap plots or compositions into a grid **Usage** plot + plot plot + composition composition + plot composition + composition Typically, you will use...
has2k1/plotnine
https://github.com/has2k1/plotnine
null
null
null
null
4,557
null
null
mit
null
null
null
null
null
null
null
plotnine/exceptions.py
null
null
null
null
null
null
Python
2026-05-04T01:58:38.340984
from __future__ import annotations import functools import warnings from textwrap import dedent from typing import Optional, Type, Union # Show the warnings on one line, leaving out any code makes the # message clear def warning_format( message: Union[Warning, str], category: Type[Warning], filename: str...
has2k1/plotnine
https://github.com/has2k1/plotnine
null
null
null
null
4,557
null
null
mit
null
null
null
null
null
null
null
plotnine/coords/__init__.py
null
null
null
null
null
null
Python
2026-05-04T01:58:38.780862
""" Coordinates """ from .coord_cartesian import coord_cartesian from .coord_fixed import coord_equal, coord_fixed from .coord_flip import coord_flip from .coord_trans import coord_trans __all__ = ( "coord_cartesian", "coord_fixed", "coord_equal", "coord_flip", "coord_trans", )
has2k1/plotnine
https://github.com/has2k1/plotnine
null
null
null
null
4,557
null
null
mit
null
null
null
null
null
null
null
plotnine/coords/coord_trans.py
null
null
null
null
null
null
Python
2026-05-04T01:58:38.831396
from __future__ import annotations from types import SimpleNamespace as NS from typing import TYPE_CHECKING, cast from warnings import warn from ..exceptions import PlotnineWarning from ..iapi import panel_ranges, panel_view from ..positions.position import transform_position from .coord import coord, dist_euclidean ...
has2k1/plotnine
https://github.com/has2k1/plotnine
null
null
null
null
4,557
null
null
mit
null
null
null
null
null
null
null
plotnine/data/__init__.py
null
null
null
null
null
null
Python
2026-05-04T01:58:38.848428
""" Plotnine Data """ from pathlib import Path import pandas as pd from pandas.api.types import CategoricalDtype __all__ = ( "anscombe_quartet", "diamonds", "economics", "economics_long", "faithful", "faithfuld", "huron", "luv_colours", "meat", "midwest", "mpg", "mslee...
has2k1/plotnine
https://github.com/has2k1/plotnine
null
null
null
null
4,557
null
null
mit
null
null
null
null
null
null
null
plotnine/coords/coord.py
null
null
null
null
null
null
Python
2026-05-04T01:58:38.914591
from __future__ import annotations import typing from copy import copy import numpy as np from ..iapi import panel_ranges if typing.TYPE_CHECKING: from typing import Any import numpy.typing as npt import pandas as pd from plotnine import ggplot from plotnine.iapi import labels_view, panel_view...
has2k1/plotnine
https://github.com/has2k1/plotnine
null
null
null
null
4,557
null
null
mit
null
null
null
null
null
null
null
plotnine/coords/coord_flip.py
null
null
null
null
null
null
Python
2026-05-04T01:58:38.924492
from __future__ import annotations import typing import pandas as pd from ..iapi import labels_view, panel_ranges, panel_view from .coord_cartesian import coord_cartesian if typing.TYPE_CHECKING: from typing import Sequence, TypeVar from plotnine.scales.scale import scale THasLabels = TypeVar( ...
has2k1/plotnine
https://github.com/has2k1/plotnine
null
null
null
null
4,557
null
null
mit
null
null
null
null
null
null
null
plotnine/doctools.py
null
null
null
null
null
null
Python
2026-05-04T01:58:43.366395
from __future__ import annotations import itertools import os import re from functools import lru_cache from textwrap import dedent, indent from typing import TYPE_CHECKING if TYPE_CHECKING: from typing import Any, Sequence, Type, TypeVar from plotnine.geoms.geom import geom from plotnine.stats.stat impo...
tlkh/asitop
https://github.com/tlkh/asitop
null
null
null
null
4,554
null
null
mit
null
null
null
null
null
null
null
asitop/utils.py
null
null
null
null
null
null
Python
2026-05-04T01:58:45.671926
import os import glob import subprocess from subprocess import PIPE import psutil from .parsers import * import plistlib def parse_powermetrics(path='/tmp/asitop_powermetrics', timecode="0"): data = None try: with open(path+timecode, 'rb') as fp: data = fp.read() data = data.split(...
tlkh/asitop
https://github.com/tlkh/asitop
null
null
null
null
4,554
null
null
mit
null
null
null
null
null
null
null
setup.py
null
null
null
null
null
null
Python
2026-05-04T01:58:45.672388
from setuptools import setup, find_packages long_description = 'Performance monitoring CLI tool for Apple Silicon' setup( name='asitop', version='0.0.22', author='Timothy Liu', author_email='tlkh.xms@gmail.com', url='https://github.com/tlkh/asitop', description='Performance monitoring CLI tool...
tlkh/asitop
https://github.com/tlkh/asitop
null
null
null
null
4,554
null
null
mit
null
null
null
null
null
null
null
asitop/parsers.py
null
null
null
null
null
null
Python
2026-05-04T01:58:45.691903
def parse_thermal_pressure(powermetrics_parse): return powermetrics_parse["thermal_pressure"] def parse_bandwidth_metrics(powermetrics_parse): bandwidth_metrics = powermetrics_parse["bandwidth_counters"] bandwidth_metrics_dict = {} data_fields = ["PCPU0 DCS RD", "PCPU0 DCS WR", "PCP...
tlkh/asitop
https://github.com/tlkh/asitop
null
null
null
null
4,554
null
null
mit
null
null
null
null
null
null
null
asitop/asitop.py
null
null
null
null
null
null
Python
2026-05-04T01:58:45.793959
import time import argparse from collections import deque from dashing import VSplit, HSplit, HGauge, HChart, VGauge from .utils import * parser = argparse.ArgumentParser( description='asitop: Performance monitoring CLI tool for Apple Silicon') parser.add_argument('--interval', type=int, default=1, ...
OTRF/ThreatHunter-Playbook
https://github.com/OTRF/ThreatHunter-Playbook
null
null
null
null
4,544
null
null
mit
null
null
null
null
null
null
null
resources/scripts/create_vendor_pandas.py
null
null
null
null
null
null
Python
2026-05-04T01:58:48.180071
import json import glob import yaml from os import path import pandas as pd import altair as alt # Load Vendor Results JSOn with open('../docs/evals/apt29/data/vendor_results.json','r') as fi: vendor_list = json.load(fi) # ******** Steps Mapping ******** steps_list = [ "Step Zero", "Initial Compromise", ...
OTRF/ThreatHunter-Playbook
https://github.com/OTRF/ThreatHunter-Playbook
null
null
null
null
4,544
null
null
mit
null
null
null
null
null
null
null
resources/scripts/create_actor_files.py
null
null
null
null
null
null
Python
2026-05-04T01:58:48.180968
from jinja2 import Template import copy from attackcti import attack_client # ******** Open actor group template **************** print("[+] Reading master actor group template..") group_template = Template(open('templates/actor_template.md').read()) # ******** Retrieving ATT&CK Groups **************** print("[+] Ret...
OTRF/ThreatHunter-Playbook
https://github.com/OTRF/ThreatHunter-Playbook
null
null
null
null
4,544
null
null
mit
null
null
null
null
null
null
null
resources/scripts/create_book.py
null
null
null
null
null
null
Python
2026-05-04T01:58:48.182460
import glob import yaml import os import json import csv from jinja2 import Template ###### Variables ##### current_directory = os.path.dirname(__file__) docs_directory = os.path.join(current_directory, "../../", "docs") library_directory = os.path.join(docs_directory, "library") hunts_directory = os.path.join(docs_di...
OTRF/ThreatHunter-Playbook
https://github.com/OTRF/ThreatHunter-Playbook
null
null
null
null
4,544
null
null
mit
null
null
null
null
null
null
null
resources/scripts/create_vendor_json.py
null
null
null
null
null
null
Python
2026-05-04T01:58:48.234420
import json import glob from os import path json_files = glob.glob(path.join(path.dirname(__file__), '../../joystick/data/evaluations/apt29', "*.json")) vendor_list = [] for jf in json_files: vendor = path.basename(jf).split(".")[0] with open(jf,'r') as fi: dict = json.load(fi) for t in dict['T...
OTRF/ThreatHunter-Playbook
https://github.com/OTRF/ThreatHunter-Playbook
null
null
null
null
4,544
null
null
mit
null
null
null
null
null
null
null
resources/scripts/create_evals_report.py
null
null
null
null
null
null
Python
2026-05-04T01:58:48.236681
from jinja2 import Template import copy import yaml import json import glob from os import path import nbformat as nbf print("[+] Processing files inside {} directory".format('../docs/evals/apt29/steps')) # ******** Open every forge yaml file available **************** print("[+] Opening report yaml files..") yaml_fil...
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
client/brain.py
null
null
null
null
null
null
Python
2026-05-04T01:58:50.552319
# -*- coding: utf-8-*- import logging import pkgutil import jasperpath class Brain(object): def __init__(self, mic, profile): """ Instantiates a new Brain object, which cross-references user input with a list of modules. Note that the order of brain.modules matters, as the Brain w...
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
client/conversation.py
null
null
null
null
null
null
Python
2026-05-04T01:58:50.553877
# -*- coding: utf-8-*- import logging from notifier import Notifier from brain import Brain class Conversation(object): def __init__(self, persona, mic, profile): self._logger = logging.getLogger(__name__) self.persona = persona self.mic = mic self.profile = profile self.b...
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
client/app_utils.py
null
null
null
null
null
null
Python
2026-05-04T01:58:50.555328
# -*- coding: utf-8-*- import smtplib from email.MIMEText import MIMEText import urllib2 import re from pytz import timezone def sendEmail(SUBJECT, BODY, TO, FROM, SENDER, PASSWORD, SMTP_SERVER): """Sends an HTML email.""" for body_charset in 'US-ASCII', 'ISO-8859-1', 'UTF-8': try: BODY.en...
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
client/local_mic.py
null
null
null
null
null
null
Python
2026-05-04T01:58:50.556215
# -*- coding: utf-8-*- """ A drop-in replacement for the Mic class that allows for all I/O to occur over the terminal. Useful for debugging. Unlike with the typical Mic implementation, Jasper is always active listening with local_mic. """ class Mic: prev = None def __init__(self, speaker, passive_stt_engine,...
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
client/g2p.py
null
null
null
null
null
null
Python
2026-05-04T01:58:50.559829
# -*- coding: utf-8-*- import os import re import subprocess import tempfile import logging import yaml import diagnose import jasperpath class PhonetisaurusG2P(object): PATTERN = re.compile(r'^(?P<word>.+)\t(?P<precision>\d+\.\d+)\t<s> ' + r'(?P<pronounciation>.*) </s>', re.MULTILINE) ...
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
client/jasperpath.py
null
null
null
null
null
null
Python
2026-05-04T01:58:50.560940
# -*- coding: utf-8-*- import os # Jasper main directory APP_PATH = os.path.normpath(os.path.join( os.path.dirname(os.path.abspath(__file__)), os.pardir)) DATA_PATH = os.path.join(APP_PATH, "static") LIB_PATH = os.path.join(APP_PATH, "client") PLUGIN_PATH = os.path.join(LIB_PATH, "modules") CONFIG_PATH = os.path...
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
boot/boot.py
null
null
null
null
null
null
Python
2026-05-04T01:58:50.561817
#!/usr/bin/env python2 # -*- coding: utf-8-*- # This file exists for backwards compatibility with older versions of jasper. # It might be removed in future versions. import os import sys import runpy script_path = os.path.join(os.path.dirname(__file__), os.pardir, "jasper.py") sys.path.remove(os.path.dirname(__file__))...
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
client/diagnose.py
null
null
null
null
null
null
Python
2026-05-04T01:58:50.582394
# -*- coding: utf-8-*- import os import sys import time import socket import subprocess import pkgutil import logging import pip.req import jasperpath if sys.version_info < (3, 3): from distutils.spawn import find_executable else: from shutil import which as find_executable logger = logging.getLogger(__name__)...
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
client/alteration.py
null
null
null
null
null
null
Python
2026-05-04T01:58:50.670745
# -*- coding: utf-8-*- import re def detectYears(input): YEAR_REGEX = re.compile(r'(\b)(\d\d)([1-9]\d)(\b)') return YEAR_REGEX.sub('\g<1>\g<2> \g<3>\g<4>', input) def clean(input): """ Manually adjust output text before it's translated into actual speech by the TTS system. This is to fix...
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
client/modules/MPDControl.py
null
null
null
null
null
null
Python
2026-05-04T01:58:51.155920
# -*- coding: utf-8-*- import re import logging import difflib import mpd from client.mic import Mic # Standard module stuff WORDS = ["MUSIC", "SPOTIFY"] def handle(text, mic, profile): """ Responds to user-input, typically speech text, by telling a joke. Arguments: text -- user-input, typically...
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
client/modules/Gmail.py
null
null
null
null
null
null
Python
2026-05-04T01:58:51.157142
# -*- coding: utf-8-*- import imaplib import email import re from dateutil import parser WORDS = ["EMAIL", "INBOX"] def getSender(email): """ Returns the best-guess sender of an email. Arguments: email -- the email whose sender is desired Returns: Sender of the email. ...
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
client/modules/Birthday.py
null
null
null
null
null
null
Python
2026-05-04T01:58:51.183108
# -*- coding: utf-8-*- import datetime import re import facebook from client.app_utils import getTimezone WORDS = ["BIRTHDAY"] def handle(text, mic, profile): """ Responds to user-input, typically speech text, by listing the user's Facebook friends with birthdays today. Arguments: ...
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
client/modules/Joke.py
null
null
null
null
null
null
Python
2026-05-04T01:58:51.183728
# -*- coding: utf-8-*- import random import re from client import jasperpath WORDS = ["JOKE", "KNOCK KNOCK"] def getRandomJoke(filename=jasperpath.data('text', 'JOKES.txt')): jokeFile = open(filename, "r") jokes = [] start = "" end = "" for line in jokeFile.readlines(): line = line.replac...
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
client/modules/Life.py
null
null
null
null
null
null
Python
2026-05-04T01:58:51.209951
# -*- coding: utf-8-*- import random import re WORDS = ["MEANING", "OF", "LIFE"] def handle(text, mic, profile): """ Responds to user-input, typically speech text, by relaying the meaning of life. Arguments: text -- user-input, typically transcribed speech mic -- used to ...
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
client/modules/News.py
null
null
null
null
null
null
Python
2026-05-04T01:58:51.210557
# -*- coding: utf-8-*- import feedparser from client import app_utils import re from semantic.numbers import NumberService WORDS = ["NEWS", "YES", "NO", "FIRST", "SECOND", "THIRD"] PRIORITY = 3 URL = 'http://news.ycombinator.com' class Article: def __init__(self, title, URL): self.title = title ...
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
client/modules/HN.py
null
null
null
null
null
null
Python
2026-05-04T01:58:51.213253
# -*- coding: utf-8-*- import urllib2 import re import random from bs4 import BeautifulSoup from client import app_utils from semantic.numbers import NumberService WORDS = ["HACKER", "NEWS", "YES", "NO", "FIRST", "SECOND", "THIRD"] PRIORITY = 4 URL = 'http://news.ycombinator.com' class HNStory: def __init__(s...
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
client/mic.py
null
null
null
null
null
null
Python
2026-05-04T01:58:51.269007
# -*- coding: utf-8-*- """ The Mic class handles all interactions with the microphone and speaker. """ import logging import tempfile import wave import audioop import pyaudio import alteration import jasperpath class Mic: speechRec = None speechRec_persona = None def __init__(self, speaker, passive...
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
client/modules/Notifications.py
null
null
null
null
null
null
Python
2026-05-04T01:58:51.270336
# -*- coding: utf-8-*- import re import facebook WORDS = ["FACEBOOK", "NOTIFICATION"] def handle(text, mic, profile): """ Responds to user-input, typically speech text, with a summary of the user's Facebook notifications, including a count and details related to each individual notificat...
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
client/main.py
null
null
null
null
null
null
Python
2026-05-04T01:58:51.275892
#!/usr/bin/env python2 # -*- coding: utf-8-*- # This file exists for backwards compatibility with older versions of jasper. # It might be removed in future versions. import os import sys import runpy script_path = os.path.join(os.path.dirname(__file__), os.pardir, "jasper.py") sys.path.insert(0, os.path.dirname(script_...
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
client/modules/Unclear.py
null
null
null
null
null
null
Python
2026-05-04T01:58:51.725642
# -*- coding: utf-8-*- from sys import maxint import random WORDS = [] PRIORITY = -(maxint + 1) def handle(text, mic, profile): """ Reports that the user has unclear or unusable input. Arguments: text -- user-input, typically transcribed speech mic -- used to interact with the u...
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
client/modules/Time.py
null
null
null
null
null
null
Python
2026-05-04T01:58:51.748337
# -*- coding: utf-8-*- import datetime import re from client.app_utils import getTimezone from semantic.dates import DateService WORDS = ["TIME"] def handle(text, mic, profile): """ Reports the current time based on the user's timezone. Arguments: text -- user-input, typically transcribe...
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
client/modules/Weather.py
null
null
null
null
null
null
Python
2026-05-04T01:58:51.795805
# -*- coding: utf-8-*- import re import datetime import struct import urllib import feedparser import requests import bs4 from client.app_utils import getTimezone from semantic.dates import DateService WORDS = ["WEATHER", "TODAY", "TOMORROW"] def replaceAcronyms(text): """ Replaces some commonly-used acronym...
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
client/notifier.py
null
null
null
null
null
null
Python
2026-05-04T01:58:51.821572
# -*- coding: utf-8-*- import Queue import atexit from modules import Gmail from apscheduler.schedulers.background import BackgroundScheduler import logging class Notifier(object): class NotificationClient(object): def __init__(self, gather, timestamp): self.gather = gather self....
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
client/stt.py
null
null
null
null
null
null
Python
2026-05-04T01:58:51.822954
#!/usr/bin/env python2 # -*- coding: utf-8-*- import os import wave import json import tempfile import logging import urllib import urlparse import re import subprocess from abc import ABCMeta, abstractmethod import requests import yaml import jasperpath import diagnose import vocabcompiler class AbstractSTTEngine(ob...
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
client/tts.py
null
null
null
null
null
null
Python
2026-05-04T01:58:51.879936
# -*- coding: utf-8-*- """ A Speaker handles audio output from Jasper to the user Speaker methods: say - output 'phrase' as speech play - play the audio in 'filename' is_available - returns True if the platform supports this implementation """ import os import platform import re import tempfile import subp...
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
client/populate.py
null
null
null
null
null
null
Python
2026-05-04T01:58:51.911739
# -*- coding: utf-8-*- import os import re from getpass import getpass import yaml from pytz import timezone import feedparser import jasperpath def run(): profile = {} print("Welcome to the profile populator. If, at any step, you'd prefer " + "not to enter the requested information, just hit 'Ente...
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
client/test_mic.py
null
null
null
null
null
null
Python
2026-05-04T01:58:51.952510
# -*- coding: utf-8-*- """ A drop-in replacement for the Mic class used during unit testing. Designed to take pre-arranged inputs as an argument and store any outputs for inspection. Requires a populated profile (profile.yml). """ class Mic: def __init__(self, inputs): self.inputs = inputs self.i...
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
client/vocabcompiler.py
null
null
null
null
null
null
Python
2026-05-04T01:58:51.999776
# -*- coding: utf-8-*- """ Iterates over all the WORDS variables in the modules and creates a vocabulary for the respective stt_engine if needed. """ import os import tempfile import logging import hashlib import subprocess import tarfile import re import contextlib import shutil from abc import ABCMeta, abstractmetho...
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
jasper.py
null
null
null
null
null
null
Python
2026-05-04T01:58:52.291021
#!/usr/bin/env python2 # -*- coding: utf-8-*- import os import sys import shutil import logging import yaml import argparse from client import tts from client import stt from client import jasperpath from client import diagnose from client.conversation import Conversation # Add jasperpath.LIB_PATH to sys.path sys.p...
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
tests/test_brain.py
null
null
null
null
null
null
Python
2026-05-04T01:58:52.377836
#!/usr/bin/env python2 # -*- coding: utf-8-*- import unittest import mock from client import brain, test_mic DEFAULT_PROFILE = { 'prefers_email': False, 'location': 'Cape Town', 'timezone': 'US/Eastern', 'phone_number': '012344321' } class TestBrain(unittest.TestCase): @staticmethod def _em...
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
tests/test_diagnose.py
null
null
null
null
null
null
Python
2026-05-04T01:58:52.404606
#!/usr/bin/env python2 # -*- coding: utf-8-*- import unittest from client import diagnose class TestDiagnose(unittest.TestCase): def testPythonImportCheck(self): # This a python stdlib module that definitely exists self.assertTrue(diagnose.check_python_import("os")) # I sincerly hope nobod...
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
tests/test_g2p.py
null
null
null
null
null
null
Python
2026-05-04T01:58:52.426655
#!/usr/bin/env python2 # -*- coding: utf-8-*- import unittest import tempfile import mock from client import g2p def phonetisaurus_installed(): try: g2p.PhonetisaurusG2P(**g2p.PhonetisaurusG2P.get_config()) except OSError: return False else: return True WORDS = ['GOOD', 'BAD', 'U...
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
tests/test_modules.py
null
null
null
null
null
null
Python
2026-05-04T01:58:52.427234
#!/usr/bin/env python2 # -*- coding: utf-8-*- import unittest from client import test_mic, diagnose, jasperpath from client.modules import Life, Joke, Time, Gmail, HN, News, Weather DEFAULT_PROFILE = { 'prefers_email': False, 'location': 'Cape Town', 'timezone': 'US/Eastern', 'phone_number': '012344321...
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
tests/test_stt.py
null
null
null
null
null
null
Python
2026-05-04T01:58:52.509252
#!/usr/bin/env python2 # -*- coding: utf-8-*- import unittest import imp from client import stt, jasperpath def cmuclmtk_installed(): try: imp.find_module('cmuclmtk') except ImportError: return False else: return True def pocketsphinx_installed(): try: imp.find_module...
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
tests/test_tts.py
null
null
null
null
null
null
Python
2026-05-04T01:58:52.509751
#!/usr/bin/env python2 # -*- coding: utf-8-*- import unittest from client import tts class TestTTS(unittest.TestCase): def testTTS(self): tts_engine = tts.get_engine_by_slug('dummy-tts') tts_instance = tts_engine() tts_instance.say('This is a test.')
jasperproject/jasper-client
https://github.com/jasperproject/jasper-client
null
null
null
null
4,525
null
null
mit
null
null
null
null
null
null
null
tests/test_vocabcompiler.py
null
null
null
null
null
null
Python
2026-05-04T01:58:52.647766
#!/usr/bin/env python2 # -*- coding: utf-8-*- import unittest import tempfile import contextlib import logging import shutil import mock from client import vocabcompiler class TestVocabCompiler(unittest.TestCase): def testPhraseExtraction(self): expected_phrases = ['MOCK'] mock_module = mock.Moc...
Azure/azure-cli
https://github.com/Azure/azure-cli
null
null
null
null
4,521
null
null
mit
null
null
null
null
null
null
null
bin/extract-loc.py
null
null
null
null
null
null
Python
2026-05-04T01:58:57.105600
#! /usr/bin/env python3 # -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # --------------------------------------------...
Azure/azure-cli
https://github.com/Azure/azure-cli
null
null
null
null
4,521
null
null
mit
null
null
null
null
null
null
null
scripts/_common.py
null
null
null
null
null
null
Python
2026-05-04T01:58:57.106132
#!/usr/bin/env python # -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # ---------------------------------------------...
Azure/azure-cli
https://github.com/Azure/azure-cli
null
null
null
null
4,521
null
null
mit
null
null
null
null
null
null
null
doc/sphinx/azhelpgen/__init__.py
null
null
null
null
null
null
Python
2026-05-04T01:58:57.108360
# -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # --------------------------------------------------------------------...
Azure/azure-cli
https://github.com/Azure/azure-cli
null
null
null
null
4,521
null
null
mit
null
null
null
null
null
null
null
doc/sphinx/azhelpgen/azhelpgen.py
null
null
null
null
null
null
Python
2026-05-04T01:58:57.109225
# -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # --------------------------------------------------------------------...
Azure/azure-cli
https://github.com/Azure/azure-cli
null
null
null
null
4,521
null
null
mit
null
null
null
null
null
null
null
doc/sphinx/__main__.py
null
null
null
null
null
null
Python
2026-05-04T01:58:57.112005
#!/usr/bin/env python3 # -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # ---------------------------------------------...
Azure/azure-cli
https://github.com/Azure/azure-cli
null
null
null
null
4,521
null
null
mit
null
null
null
null
null
null
null
doc/sphinx/cligroup/__init__.py
null
null
null
null
null
null
Python
2026-05-04T01:58:57.112900
# -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # --------------------------------------------------------------------...
Azure/azure-cli
https://github.com/Azure/azure-cli
null
null
null
null
4,521
null
null
mit
null
null
null
null
null
null
null
build_scripts/windows/scripts/patch_models_v2.py
null
null
null
null
null
null
Python
2026-05-04T01:58:57.114076
# -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # --------------------------------------------------------------------...
Azure/azure-cli
https://github.com/Azure/azure-cli
null
null
null
null
4,521
null
null
mit
null
null
null
null
null
null
null
build_scripts/windows/scripts/test_msi_package.py
null
null
null
null
null
null
Python
2026-05-04T01:58:57.208409
# -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # --------------------------------------------------------------------...
Azure/azure-cli
https://github.com/Azure/azure-cli
null
null
null
null
4,521
null
null
mit
null
null
null
null
null
null
null
doc/sphinx/cligroup/cligroup.py
null
null
null
null
null
null
Python
2026-05-04T01:58:57.214592
# -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # --------------------------------------------------------------------...
Azure/azure-cli
https://github.com/Azure/azure-cli
null
null
null
null
4,521
null
null
mit
null
null
null
null
null
null
null
doc/sphinx/conf.py
null
null
null
null
null
null
Python
2026-05-04T01:58:57.215867
#!/usr/bin/env python3 # -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # ---------------------------------------------...
Azure/azure-cli
https://github.com/Azure/azure-cli
null
null
null
null
4,521
null
null
mit
null
null
null
null
null
null
null
scripts/ci/a01/docker_app/collect_tests.py
null
null
null
null
null
null
Python
2026-05-04T01:58:58.737376
#!/usr/bin/env python # -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # ---------------------------------------------...
Azure/azure-cli
https://github.com/Azure/azure-cli
null
null
null
null
4,521
null
null
mit
null
null
null
null
null
null
null
scripts/ci/automation_full_test.py
null
null
null
null
null
null
Python
2026-05-04T01:58:58.746909
#!/usr/bin/env python # -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # ---------------------------------------------...
Azure/azure-cli
https://github.com/Azure/azure-cli
null
null
null
null
4,521
null
null
mit
null
null
null
null
null
null
null
scripts/ci/notify_ci_errors.py
null
null
null
null
null
null
Python
2026-05-04T01:58:58.799122
#!/usr/bin/env python # -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # ---------------------------------------------...
Azure/azure-cli
https://github.com/Azure/azure-cli
null
null
null
null
4,521
null
null
mit
null
null
null
null
null
null
null
scripts/ci/check_pull_request.py
null
null
null
null
null
null
Python
2026-05-04T01:58:58.800347
#!/usr/bin/env python # -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # ---------------------------------------------...
Azure/azure-cli
https://github.com/Azure/azure-cli
null
null
null
null
4,521
null
null
mit
null
null
null
null
null
null
null
scripts/ci/service_name.py
null
null
null
null
null
null
Python
2026-05-04T01:58:58.803194
#!/usr/bin/env python # -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # ---------------------------------------------...
Azure/azure-cli
https://github.com/Azure/azure-cli
null
null
null
null
4,521
null
null
mit
null
null
null
null
null
null
null
scripts/ci/breaking_change_test.py
null
null
null
null
null
null
Python
2026-05-04T01:58:58.817742
#!/usr/bin/env python # -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # ---------------------------------------------...
Azure/azure-cli
https://github.com/Azure/azure-cli
null
null
null
null
4,521
null
null
mit
null
null
null
null
null
null
null
scripts/ci/codegen_report.py
null
null
null
null
null
null
Python
2026-05-04T01:58:58.840093
#!/usr/bin/env python # -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # ---------------------------------------------...
Azure/azure-cli
https://github.com/Azure/azure-cli
null
null
null
null
4,521
null
null
mit
null
null
null
null
null
null
null
scripts/ci/test_help_doc_arguments.py
null
null
null
null
null
null
Python
2026-05-04T01:58:58.905304
#!/usr/bin/env python # -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # ---------------------------------------------...
Azure/azure-cli
https://github.com/Azure/azure-cli
null
null
null
null
4,521
null
null
mit
null
null
null
null
null
null
null
scripts/compact_aaz.py
null
null
null
null
null
null
Python
2026-05-04T01:58:58.911692
# -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # --------------------------------------------------------------------...
Azure/azure-cli
https://github.com/Azure/azure-cli
null
null
null
null
4,521
null
null
mit
null
null
null
null
null
null
null
scripts/curl_install_pypi/install.py
null
null
null
null
null
null
Python
2026-05-04T01:58:59.027782
#!/usr/bin/env python # -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # ---------------------------------------------...
Azure/azure-cli
https://github.com/Azure/azure-cli
null
null
null
null
4,521
null
null
mit
null
null
null
null
null
null
null
scripts/dev_setup.py
null
null
null
null
null
null
Python
2026-05-04T01:58:59.353834
#!/usr/bin/env python # -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # ---------------------------------------------...
Azure/azure-cli
https://github.com/Azure/azure-cli
null
null
null
null
4,521
null
null
mit
null
null
null
null
null
null
null
scripts/dump_command_table.py
null
null
null
null
null
null
Python
2026-05-04T01:58:59.366260
# -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # --------------------------------------------------------------------...
Azure/azure-cli
https://github.com/Azure/azure-cli
null
null
null
null
4,521
null
null
mit
null
null
null
null
null
null
null
scripts/generate_command_inventory.py
null
null
null
null
null
null
Python
2026-05-04T01:58:59.437573
# -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # --------------------------------------------------------------------...
Azure/azure-cli
https://github.com/Azure/azure-cli
null
null
null
null
4,521
null
null
mit
null
null
null
null
null
null
null
scripts/generate_latest_indices.py
null
null
null
null
null
null
Python
2026-05-04T01:58:59.438615
#!/usr/bin/env python # -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # ---------------------------------------------...
Azure/azure-cli
https://github.com/Azure/azure-cli
null
null
null
null
4,521
null
null
mit
null
null
null
null
null
null
null
scripts/get-python-version.py
null
null
null
null
null
null
Python
2026-05-04T01:58:59.442227
# -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # --------------------------------------------------------------------...