├── .DS_Store ├── .deepsource.toml ├── .gitattributes ├── .gitignore ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── TODO.md ├── docs ├── .readthedocs.yaml ├── Makefile ├── make.bat └── source │ ├── _static │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── custom.css │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── images │ │ ├── assigning_a_name_to_a_snippet.png │ │ ├── assigning_names_to_multiple_snippets.png │ │ ├── code_input_with_file.png │ │ ├── code_input_with_prompt.gif │ │ ├── custom_labeled_named_plot_output_demo.png │ │ ├── dracula_theme_demo.png │ │ ├── fruity_theme_demo.png │ │ ├── image_exporting_demo.png │ │ ├── image_exporting_with_custom_background.jpg │ │ ├── material_theme_demo.png │ │ ├── monokai_theme_demo.png │ │ ├── named_plot_output_demo.png │ │ ├── native_theme_demo.png │ │ ├── one_dark_theme_demo.png │ │ ├── output_demo.png │ │ ├── plot_output_custom_bar_color.png │ │ ├── plot_output_demo.png │ │ ├── plot_output_demo_dark_background.png │ │ ├── setup.png │ │ ├── str_vs_fstring.png │ │ ├── svg_output_demo.svg │ │ └── time_unit_demo.png │ ├── logo.jpg │ ├── logo.png │ ├── logo_large.png │ └── site.webmanifest │ ├── conf.py │ ├── csv_lexer.py │ ├── development │ ├── contributing.rst │ ├── index.rst │ ├── internal_structure.rst │ ├── license.rst │ └── workflows.rst │ ├── documentation │ ├── cli_reference.rst │ ├── cli_reference_automated.rst │ ├── exporting.rst │ ├── index.rst │ ├── quickstart.rst │ └── tips_recipies_and_notes.rst │ ├── docutils.conf │ ├── genindex.rst │ ├── glossary.rst │ └── index.rst ├── examples ├── README.md ├── export │ ├── python_http_library_benchmark.adoc │ ├── python_http_library_benchmark.csv │ ├── python_http_library_benchmark.json │ ├── python_http_library_benchmark.md │ ├── python_http_library_benchmark.png │ ├── python_http_library_benchmark.svg │ ├── python_http_library_benchmark.yaml │ └── python_http_library_benchmark_plot.png ├── python_diff_between_two_lists_benchmark.ps1 ├── python_diff_between_two_lists_benchmark.sh ├── python_get_list_element.ps1 ├── python_get_list_element.sh ├── python_http_library_benchmark.ps1 ├── python_http_library_benchmark.sh ├── python_http_library_benchmark_input.json ├── python_itertools_repeat_benchmark.ps1 └── python_itertools_repeat_benchmark.sh ├── fastero ├── __init__.py ├── __main__.py ├── core.py ├── exporter.py └── utils.py ├── logo.jpg ├── logo.png ├── requirements-docs.txt ├── requirements.txt ├── schema.json ├── setup.cfg └── setup.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/.DS_Store -------------------------------------------------------------------------------- /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/TODO.md -------------------------------------------------------------------------------- /docs/.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/.readthedocs.yaml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/_static/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/_static/android-chrome-192x192.png -------------------------------------------------------------------------------- /docs/source/_static/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/_static/android-chrome-512x512.png -------------------------------------------------------------------------------- /docs/source/_static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/_static/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/source/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/_static/custom.css -------------------------------------------------------------------------------- /docs/source/_static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/_static/favicon-16x16.png -------------------------------------------------------------------------------- /docs/source/_static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/_static/favicon-32x32.png -------------------------------------------------------------------------------- /docs/source/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/_static/favicon.ico -------------------------------------------------------------------------------- /docs/source/_static/images/assigning_a_name_to_a_snippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/_static/images/assigning_a_name_to_a_snippet.png -------------------------------------------------------------------------------- /docs/source/_static/images/assigning_names_to_multiple_snippets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/_static/images/assigning_names_to_multiple_snippets.png -------------------------------------------------------------------------------- /docs/source/_static/images/code_input_with_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/_static/images/code_input_with_file.png -------------------------------------------------------------------------------- /docs/source/_static/images/code_input_with_prompt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/_static/images/code_input_with_prompt.gif -------------------------------------------------------------------------------- /docs/source/_static/images/custom_labeled_named_plot_output_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/_static/images/custom_labeled_named_plot_output_demo.png -------------------------------------------------------------------------------- /docs/source/_static/images/dracula_theme_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/_static/images/dracula_theme_demo.png -------------------------------------------------------------------------------- /docs/source/_static/images/fruity_theme_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/_static/images/fruity_theme_demo.png -------------------------------------------------------------------------------- /docs/source/_static/images/image_exporting_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/_static/images/image_exporting_demo.png -------------------------------------------------------------------------------- /docs/source/_static/images/image_exporting_with_custom_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/_static/images/image_exporting_with_custom_background.jpg -------------------------------------------------------------------------------- /docs/source/_static/images/material_theme_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/_static/images/material_theme_demo.png -------------------------------------------------------------------------------- /docs/source/_static/images/monokai_theme_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/_static/images/monokai_theme_demo.png -------------------------------------------------------------------------------- /docs/source/_static/images/named_plot_output_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/_static/images/named_plot_output_demo.png -------------------------------------------------------------------------------- /docs/source/_static/images/native_theme_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/_static/images/native_theme_demo.png -------------------------------------------------------------------------------- /docs/source/_static/images/one_dark_theme_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/_static/images/one_dark_theme_demo.png -------------------------------------------------------------------------------- /docs/source/_static/images/output_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/_static/images/output_demo.png -------------------------------------------------------------------------------- /docs/source/_static/images/plot_output_custom_bar_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/_static/images/plot_output_custom_bar_color.png -------------------------------------------------------------------------------- /docs/source/_static/images/plot_output_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/_static/images/plot_output_demo.png -------------------------------------------------------------------------------- /docs/source/_static/images/plot_output_demo_dark_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/_static/images/plot_output_demo_dark_background.png -------------------------------------------------------------------------------- /docs/source/_static/images/setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/_static/images/setup.png -------------------------------------------------------------------------------- /docs/source/_static/images/str_vs_fstring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/_static/images/str_vs_fstring.png -------------------------------------------------------------------------------- /docs/source/_static/images/svg_output_demo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/_static/images/svg_output_demo.svg -------------------------------------------------------------------------------- /docs/source/_static/images/time_unit_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/_static/images/time_unit_demo.png -------------------------------------------------------------------------------- /docs/source/_static/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/_static/logo.jpg -------------------------------------------------------------------------------- /docs/source/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/_static/logo.png -------------------------------------------------------------------------------- /docs/source/_static/logo_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/_static/logo_large.png -------------------------------------------------------------------------------- /docs/source/_static/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/_static/site.webmanifest -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/csv_lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/csv_lexer.py -------------------------------------------------------------------------------- /docs/source/development/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/development/contributing.rst -------------------------------------------------------------------------------- /docs/source/development/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/development/index.rst -------------------------------------------------------------------------------- /docs/source/development/internal_structure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/development/internal_structure.rst -------------------------------------------------------------------------------- /docs/source/development/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/development/license.rst -------------------------------------------------------------------------------- /docs/source/development/workflows.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/development/workflows.rst -------------------------------------------------------------------------------- /docs/source/documentation/cli_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/documentation/cli_reference.rst -------------------------------------------------------------------------------- /docs/source/documentation/cli_reference_automated.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/documentation/cli_reference_automated.rst -------------------------------------------------------------------------------- /docs/source/documentation/exporting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/documentation/exporting.rst -------------------------------------------------------------------------------- /docs/source/documentation/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/documentation/index.rst -------------------------------------------------------------------------------- /docs/source/documentation/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/documentation/quickstart.rst -------------------------------------------------------------------------------- /docs/source/documentation/tips_recipies_and_notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/documentation/tips_recipies_and_notes.rst -------------------------------------------------------------------------------- /docs/source/docutils.conf: -------------------------------------------------------------------------------- 1 | [restructuredtext parser] 2 | syntax_highlight = short -------------------------------------------------------------------------------- /docs/source/genindex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/genindex.rst -------------------------------------------------------------------------------- /docs/source/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/glossary.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/export/python_http_library_benchmark.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/examples/export/python_http_library_benchmark.adoc -------------------------------------------------------------------------------- /examples/export/python_http_library_benchmark.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/examples/export/python_http_library_benchmark.csv -------------------------------------------------------------------------------- /examples/export/python_http_library_benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/examples/export/python_http_library_benchmark.json -------------------------------------------------------------------------------- /examples/export/python_http_library_benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/examples/export/python_http_library_benchmark.md -------------------------------------------------------------------------------- /examples/export/python_http_library_benchmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/examples/export/python_http_library_benchmark.png -------------------------------------------------------------------------------- /examples/export/python_http_library_benchmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/examples/export/python_http_library_benchmark.svg -------------------------------------------------------------------------------- /examples/export/python_http_library_benchmark.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/examples/export/python_http_library_benchmark.yaml -------------------------------------------------------------------------------- /examples/export/python_http_library_benchmark_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/examples/export/python_http_library_benchmark_plot.png -------------------------------------------------------------------------------- /examples/python_diff_between_two_lists_benchmark.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/examples/python_diff_between_two_lists_benchmark.ps1 -------------------------------------------------------------------------------- /examples/python_diff_between_two_lists_benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/examples/python_diff_between_two_lists_benchmark.sh -------------------------------------------------------------------------------- /examples/python_get_list_element.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/examples/python_get_list_element.ps1 -------------------------------------------------------------------------------- /examples/python_get_list_element.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/examples/python_get_list_element.sh -------------------------------------------------------------------------------- /examples/python_http_library_benchmark.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/examples/python_http_library_benchmark.ps1 -------------------------------------------------------------------------------- /examples/python_http_library_benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/examples/python_http_library_benchmark.sh -------------------------------------------------------------------------------- /examples/python_http_library_benchmark_input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/examples/python_http_library_benchmark_input.json -------------------------------------------------------------------------------- /examples/python_itertools_repeat_benchmark.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/examples/python_itertools_repeat_benchmark.ps1 -------------------------------------------------------------------------------- /examples/python_itertools_repeat_benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/examples/python_itertools_repeat_benchmark.sh -------------------------------------------------------------------------------- /fastero/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/fastero/__init__.py -------------------------------------------------------------------------------- /fastero/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/fastero/__main__.py -------------------------------------------------------------------------------- /fastero/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/fastero/core.py -------------------------------------------------------------------------------- /fastero/exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/fastero/exporter.py -------------------------------------------------------------------------------- /fastero/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/fastero/utils.py -------------------------------------------------------------------------------- /logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/logo.jpg -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/logo.png -------------------------------------------------------------------------------- /requirements-docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/requirements-docs.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/requirements.txt -------------------------------------------------------------------------------- /schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/schema.json -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasi-master/fastero/HEAD/setup.py --------------------------------------------------------------------------------