├── .github ├── actions │ ├── checkpoint │ │ ├── Dockerfile │ │ └── entrypoint.sh │ └── sh │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ └── requirements.txt └── workflows │ └── build_test.yml ├── .gitignore ├── .gitmodules ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs ├── Makefile ├── _static │ ├── custom.css │ ├── perf1.html │ ├── perf2.html │ ├── perf3.html │ ├── perf4.html │ └── perf_graph.png ├── _templates │ └── layout.html ├── conf.py ├── detail.rst ├── docstring_tools.py ├── index.rst ├── intro_usage.rst ├── performance.rst └── tubes.rst ├── pyx ├── arrow.pxi ├── chunk.pxi ├── iter.pxi ├── ndarray.pxi ├── pyiter.pxi ├── scalar_type.pxd ├── tubes.pyx └── version.pxi ├── setup.py ├── src ├── bytes.hpp ├── convert.hpp ├── iter.hpp ├── iter_test.cpp ├── iters │ ├── chain.hpp │ ├── compare.hpp │ ├── convert.hpp │ ├── count.hpp │ ├── count_test.cpp │ ├── each.hpp │ ├── enum.hpp │ ├── filemap.hpp │ ├── fileobjread.hpp │ ├── fileread.hpp │ ├── first.hpp │ ├── first_test.cpp │ ├── get_index.hpp │ ├── get_name.hpp │ ├── get_slot.hpp │ ├── group_id.hpp │ ├── gunzip.hpp │ ├── json.hpp │ ├── multi.hpp │ ├── skip.hpp │ ├── skip_if.hpp │ ├── skip_unless.hpp │ ├── split.hpp │ ├── strlen.hpp │ ├── topy.hpp │ ├── xsv.hpp │ └── zip.hpp ├── scalar.hpp ├── slot.hpp ├── test.cpp ├── undefined.hpp └── util │ ├── array.hpp │ ├── arrow │ ├── aligned_alloc.hpp │ ├── buffer.hpp │ └── containers.hpp │ ├── atoi.hpp │ ├── backtrace.hpp │ ├── codec.hpp │ ├── codec_test.cpp │ ├── default.hpp │ ├── error.hpp │ ├── error_test.cpp │ ├── json │ ├── failsafe_parser.hpp │ ├── iter.hpp │ ├── json.hpp │ ├── json_test.cpp │ ├── optimistic_parser.hpp │ ├── string.hpp │ ├── token.hpp │ └── tokenize_test.cpp │ ├── map.hpp │ ├── mmap.hpp │ ├── mmap_posix.hpp │ ├── mmap_win.hpp │ ├── ndarray.hpp │ ├── pyarrow.hpp │ ├── pyobj.hpp │ ├── skiplist.hpp │ ├── slice.hpp │ ├── slice_test.cpp │ ├── stream_reader.hpp │ ├── stream_reader_test.cpp │ ├── valuestore.hpp │ └── xsv.hpp ├── test ├── JSONTestSuite_parse_tests │ ├── i_number_double_huge_neg_exp.json │ ├── i_number_huge_exp.json │ ├── i_number_neg_int_huge_exp.json │ ├── i_number_pos_double_huge_exp.json │ ├── i_number_real_neg_overflow.json │ ├── i_number_real_pos_overflow.json │ ├── i_number_real_underflow.json │ ├── i_number_too_big_neg_int.json │ ├── i_number_too_big_pos_int.json │ ├── i_number_very_big_negative_int.json │ ├── i_object_key_lone_2nd_surrogate.json │ ├── i_string_1st_surrogate_but_2nd_missing.json │ ├── i_string_1st_valid_surrogate_2nd_invalid.json │ ├── i_string_UTF-16LE_with_BOM.json │ ├── i_string_UTF-8_invalid_sequence.json │ ├── i_string_UTF8_surrogate_U+D800.json │ ├── i_string_incomplete_surrogate_and_escape_valid.json │ ├── i_string_incomplete_surrogate_pair.json │ ├── i_string_incomplete_surrogates_escape_valid.json │ ├── i_string_invalid_lonely_surrogate.json │ ├── i_string_invalid_surrogate.json │ ├── i_string_invalid_utf-8.json │ ├── i_string_inverted_surrogates_U+1D11E.json │ ├── i_string_iso_latin_1.json │ ├── i_string_lone_second_surrogate.json │ ├── i_string_lone_utf8_continuation_byte.json │ ├── i_string_not_in_unicode_range.json │ ├── i_string_overlong_sequence_2_bytes.json │ ├── i_string_overlong_sequence_6_bytes.json │ ├── i_string_overlong_sequence_6_bytes_null.json │ ├── i_string_truncated-utf-8.json │ ├── i_string_utf16BE_no_BOM.json │ ├── i_string_utf16LE_no_BOM.json │ ├── i_structure_500_nested_arrays.json │ ├── i_structure_UTF-8_BOM_empty_object.json │ ├── n_array_1_true_without_comma.json │ ├── n_array_a_invalid_utf8.json │ ├── n_array_colon_instead_of_comma.json │ ├── n_array_comma_after_close.json │ ├── n_array_comma_and_number.json │ ├── n_array_double_comma.json │ ├── n_array_double_extra_comma.json │ ├── n_array_extra_close.json │ ├── n_array_extra_comma.json │ ├── n_array_incomplete.json │ ├── n_array_incomplete_invalid_value.json │ ├── n_array_inner_array_no_comma.json │ ├── n_array_invalid_utf8.json │ ├── n_array_items_separated_by_semicolon.json │ ├── n_array_just_comma.json │ ├── n_array_just_minus.json │ ├── n_array_missing_value.json │ ├── n_array_newlines_unclosed.json │ ├── n_array_number_and_comma.json │ ├── n_array_number_and_several_commas.json │ ├── n_array_spaces_vertical_tab_formfeed.json │ ├── n_array_star_inside.json │ ├── n_array_unclosed.json │ ├── n_array_unclosed_trailing_comma.json │ ├── n_array_unclosed_with_new_lines.json │ ├── n_array_unclosed_with_object_inside.json │ ├── n_incomplete_false.json │ ├── n_incomplete_null.json │ ├── n_incomplete_true.json │ ├── n_multidigit_number_then_00.json │ ├── n_number_++.json │ ├── n_number_+1.json │ ├── n_number_+Inf.json │ ├── n_number_-01.json │ ├── n_number_-1.0..json │ ├── n_number_-2..json │ ├── n_number_-NaN.json │ ├── n_number_.-1.json │ ├── n_number_.2e-3.json │ ├── n_number_0.1.2.json │ ├── n_number_0.3e+.json │ ├── n_number_0.3e.json │ ├── n_number_0.e1.json │ ├── n_number_0_capital_E+.json │ ├── n_number_0_capital_E.json │ ├── n_number_0e+.json │ ├── n_number_0e.json │ ├── n_number_1.0e+.json │ ├── n_number_1.0e-.json │ ├── n_number_1.0e.json │ ├── n_number_1_000.json │ ├── n_number_1eE2.json │ ├── n_number_2.e+3.json │ ├── n_number_2.e-3.json │ ├── n_number_2.e3.json │ ├── n_number_9.e+.json │ ├── n_number_Inf.json │ ├── n_number_NaN.json │ ├── n_number_U+FF11_fullwidth_digit_one.json │ ├── n_number_expression.json │ ├── n_number_hex_1_digit.json │ ├── n_number_hex_2_digits.json │ ├── n_number_infinity.json │ ├── n_number_invalid+-.json │ ├── n_number_invalid-negative-real.json │ ├── n_number_invalid-utf-8-in-bigger-int.json │ ├── n_number_invalid-utf-8-in-exponent.json │ ├── n_number_invalid-utf-8-in-int.json │ ├── n_number_minus_infinity.json │ ├── n_number_minus_sign_with_trailing_garbage.json │ ├── n_number_minus_space_1.json │ ├── n_number_neg_int_starting_with_zero.json │ ├── n_number_neg_real_without_int_part.json │ ├── n_number_neg_with_garbage_at_end.json │ ├── n_number_real_garbage_after_e.json │ ├── n_number_real_with_invalid_utf8_after_e.json │ ├── n_number_real_without_fractional_part.json │ ├── n_number_starting_with_dot.json │ ├── n_number_with_alpha.json │ ├── n_number_with_alpha_char.json │ ├── n_number_with_leading_zero.json │ ├── n_object_bad_value.json │ ├── n_object_bracket_key.json │ ├── n_object_comma_instead_of_colon.json │ ├── n_object_double_colon.json │ ├── n_object_emoji.json │ ├── n_object_garbage_at_end.json │ ├── n_object_key_with_single_quotes.json │ ├── n_object_missing_colon.json │ ├── n_object_missing_key.json │ ├── n_object_missing_semicolon.json │ ├── n_object_missing_value.json │ ├── n_object_no-colon.json │ ├── n_object_non_string_key.json │ ├── n_object_non_string_key_but_huge_number_instead.json │ ├── n_object_pi_in_key_and_trailing_comma.json │ ├── n_object_repeated_null_null.json │ ├── n_object_several_trailing_commas.json │ ├── n_object_single_quote.json │ ├── n_object_trailing_comma.json │ ├── n_object_trailing_comment.json │ ├── n_object_trailing_comment_open.json │ ├── n_object_trailing_comment_slash_open.json │ ├── n_object_trailing_comment_slash_open_incomplete.json │ ├── n_object_two_commas_in_a_row.json │ ├── n_object_unquoted_key.json │ ├── n_object_unterminated-value.json │ ├── n_object_with_single_string.json │ ├── n_object_with_trailing_garbage.json │ ├── n_single_space.json │ ├── n_string_1_surrogate_then_escape.json │ ├── n_string_1_surrogate_then_escape_u.json │ ├── n_string_1_surrogate_then_escape_u1.json │ ├── n_string_1_surrogate_then_escape_u1x.json │ ├── n_string_accentuated_char_no_quotes.json │ ├── n_string_backslash_00.json │ ├── n_string_escape_x.json │ ├── n_string_escaped_backslash_bad.json │ ├── n_string_escaped_ctrl_char_tab.json │ ├── n_string_escaped_emoji.json │ ├── n_string_incomplete_escape.json │ ├── n_string_incomplete_escaped_character.json │ ├── n_string_incomplete_surrogate.json │ ├── n_string_incomplete_surrogate_escape_invalid.json │ ├── n_string_invalid-utf-8-in-escape.json │ ├── n_string_invalid_backslash_esc.json │ ├── n_string_invalid_unicode_escape.json │ ├── n_string_invalid_utf8_after_escape.json │ ├── n_string_leading_uescaped_thinspace.json │ ├── n_string_no_quotes_with_bad_escape.json │ ├── n_string_single_doublequote.json │ ├── n_string_single_quote.json │ ├── n_string_single_string_no_double_quotes.json │ ├── n_string_start_escape_unclosed.json │ ├── n_string_unescaped_crtl_char.json │ ├── n_string_unescaped_newline.json │ ├── n_string_unescaped_tab.json │ ├── n_string_unicode_CapitalU.json │ ├── n_string_with_trailing_garbage.json │ ├── n_structure_100000_opening_arrays.json │ ├── n_structure_U+2060_word_joined.json │ ├── n_structure_UTF8_BOM_no_data.json │ ├── n_structure_angle_bracket_..json │ ├── n_structure_angle_bracket_null.json │ ├── n_structure_array_trailing_garbage.json │ ├── n_structure_array_with_extra_array_close.json │ ├── n_structure_array_with_unclosed_string.json │ ├── n_structure_ascii-unicode-identifier.json │ ├── n_structure_capitalized_True.json │ ├── n_structure_close_unopened_array.json │ ├── n_structure_comma_instead_of_closing_brace.json │ ├── n_structure_double_array.json │ ├── n_structure_end_array.json │ ├── n_structure_incomplete_UTF8_BOM.json │ ├── n_structure_lone-invalid-utf-8.json │ ├── n_structure_lone-open-bracket.json │ ├── n_structure_no_data.json │ ├── n_structure_null-byte-outside-string.json │ ├── n_structure_number_with_trailing_garbage.json │ ├── n_structure_object_followed_by_closing_object.json │ ├── n_structure_object_unclosed_no_value.json │ ├── n_structure_object_with_comment.json │ ├── n_structure_object_with_trailing_garbage.json │ ├── n_structure_open_array_apostrophe.json │ ├── n_structure_open_array_comma.json │ ├── n_structure_open_array_object.json │ ├── n_structure_open_array_open_object.json │ ├── n_structure_open_array_open_string.json │ ├── n_structure_open_array_string.json │ ├── n_structure_open_object.json │ ├── n_structure_open_object_close_array.json │ ├── n_structure_open_object_comma.json │ ├── n_structure_open_object_open_array.json │ ├── n_structure_open_object_open_string.json │ ├── n_structure_open_object_string_with_apostrophes.json │ ├── n_structure_open_open.json │ ├── n_structure_single_eacute.json │ ├── n_structure_single_star.json │ ├── n_structure_trailing_#.json │ ├── n_structure_uescaped_LF_before_string.json │ ├── n_structure_unclosed_array.json │ ├── n_structure_unclosed_array_partial_null.json │ ├── n_structure_unclosed_array_unfinished_false.json │ ├── n_structure_unclosed_array_unfinished_true.json │ ├── n_structure_unclosed_object.json │ ├── n_structure_unicode-identifier.json │ ├── n_structure_whitespace_U+2060_word_joiner.json │ ├── n_structure_whitespace_formfeed.json │ ├── y_array_arraysWithSpaces.json │ ├── y_array_empty-string.json │ ├── y_array_empty.json │ ├── y_array_ending_with_newline.json │ ├── y_array_false.json │ ├── y_array_heterogeneous.json │ ├── y_array_null.json │ ├── y_array_with_1_and_newline.json │ ├── y_array_with_leading_space.json │ ├── y_array_with_several_null.json │ ├── y_array_with_trailing_space.json │ ├── y_number.json │ ├── y_number_0e+1.json │ ├── y_number_0e1.json │ ├── y_number_after_space.json │ ├── y_number_double_close_to_zero.json │ ├── y_number_int_with_exp.json │ ├── y_number_minus_zero.json │ ├── y_number_negative_int.json │ ├── y_number_negative_one.json │ ├── y_number_negative_zero.json │ ├── y_number_real_capital_e.json │ ├── y_number_real_capital_e_neg_exp.json │ ├── y_number_real_capital_e_pos_exp.json │ ├── y_number_real_exponent.json │ ├── y_number_real_fraction_exponent.json │ ├── y_number_real_neg_exp.json │ ├── y_number_real_pos_exponent.json │ ├── y_number_simple_int.json │ ├── y_number_simple_real.json │ ├── y_object.json │ ├── y_object_basic.json │ ├── y_object_duplicated_key.json │ ├── y_object_duplicated_key_and_value.json │ ├── y_object_empty.json │ ├── y_object_empty_key.json │ ├── y_object_escaped_null_in_key.json │ ├── y_object_extreme_numbers.json │ ├── y_object_long_strings.json │ ├── y_object_simple.json │ ├── y_object_string_unicode.json │ ├── y_object_with_newlines.json │ ├── y_string_1_2_3_bytes_UTF-8_sequences.json │ ├── y_string_accepted_surrogate_pair.json │ ├── y_string_accepted_surrogate_pairs.json │ ├── y_string_allowed_escapes.json │ ├── y_string_backslash_and_u_escaped_zero.json │ ├── y_string_backslash_doublequotes.json │ ├── y_string_comments.json │ ├── y_string_double_escape_a.json │ ├── y_string_double_escape_n.json │ ├── y_string_escaped_control_character.json │ ├── y_string_escaped_noncharacter.json │ ├── y_string_in_array.json │ ├── y_string_in_array_with_leading_space.json │ ├── y_string_last_surrogates_1_and_2.json │ ├── y_string_nbsp_uescaped.json │ ├── y_string_nonCharacterInUTF-8_U+10FFFF.json │ ├── y_string_nonCharacterInUTF-8_U+1FFFF.json │ ├── y_string_nonCharacterInUTF-8_U+FFFF.json │ ├── y_string_null_escape.json │ ├── y_string_one-byte-utf-8.json │ ├── y_string_pi.json │ ├── y_string_simple_ascii.json │ ├── y_string_space.json │ ├── y_string_surrogates_U+1D11E_MUSICAL_SYMBOL_G_CLEF.json │ ├── y_string_three-byte-utf-8.json │ ├── y_string_two-byte-utf-8.json │ ├── y_string_u+2028_line_sep.json │ ├── y_string_u+2029_par_sep.json │ ├── y_string_uEscape.json │ ├── y_string_uescaped_newline.json │ ├── y_string_unescaped_char_delete.json │ ├── y_string_unicode.json │ ├── y_string_unicodeEscapedBackslash.json │ ├── y_string_unicode_2.json │ ├── y_string_unicode_U+10FFFE_nonchar.json │ ├── y_string_unicode_U+1FFFE_nonchar.json │ ├── y_string_unicode_U+200B_ZERO_WIDTH_SPACE.json │ ├── y_string_unicode_U+2064_invisible_plus.json │ ├── y_string_unicode_U+FDD0_nonchar.json │ ├── y_string_unicode_U+FFFE_nonchar.json │ ├── y_string_unicode_escaped_double_quote.json │ ├── y_string_utf8.json │ ├── y_string_with_del_character.json │ ├── y_structure_lonely_false.json │ ├── y_structure_lonely_int.json │ ├── y_structure_lonely_negative_real.json │ ├── y_structure_lonely_null.json │ ├── y_structure_lonely_string.json │ ├── y_structure_lonely_true.json │ ├── y_structure_string_empty.json │ ├── y_structure_trailing_newline.json │ ├── y_structure_true_in_array.json │ └── y_structure_whitespace_array.json ├── test_chunk.py ├── test_compare.py ├── test_convert.py ├── test_csv.py ├── test_enumerate.py ├── test_fuzz.py ├── test_get.py ├── test_get_index.py ├── test_group_id.py ├── test_json.py ├── test_ndarray.py ├── test_pa.py ├── test_pyiter.py ├── test_read_fileobj.py ├── test_recovery.py ├── test_refcount.py ├── test_repr.py ├── test_skip_if.py ├── test_skip_unless.py ├── test_split.py ├── test_strlen.py ├── test_tsv.py └── tricky_json.json ├── tools ├── arrow.config.h ├── build_anylinux.sh ├── build_wheels.py ├── defn.tmpl ├── entrypoint.sh ├── make_cdef.py ├── perf.py ├── perf2.py ├── scripts │ ├── get-version.py │ ├── make-wheel.sh │ ├── py3.sh │ ├── test-wheel.sh │ ├── update-docs.sh │ └── update-version.py ├── version-list.py └── version.py └── vendor ├── catch2.hpp ├── citycrc.h ├── cityhash.hpp └── zlib ├── .gitignore ├── CMakeLists.txt ├── ChangeLog ├── FAQ ├── INDEX ├── Makefile.in ├── README ├── adler32.c ├── amiga ├── Makefile.pup └── Makefile.sas ├── as400 ├── bndsrc ├── compile.clp ├── readme.txt └── zlib.inc ├── compress.c ├── configure ├── contrib └── amd64 │ └── crc32-pclmul_asm.S ├── crc32.c ├── crc32.h ├── deflate.c ├── deflate.h ├── doc ├── algorithm.txt ├── rfc1950.txt ├── rfc1951.txt ├── rfc1952.txt └── txtvsbin.txt ├── examples ├── README.examples ├── enough.c ├── fitblk.c ├── gun.c ├── gzappend.c ├── gzjoin.c ├── gzlog.c ├── gzlog.h ├── zlib_how.html ├── zpipe.c └── zran.c ├── gzclose.c ├── gzguts.h ├── gzlib.c ├── gzread.c ├── gzwrite.c ├── infback.c ├── inffast.c ├── inffast.h ├── inffixed.h ├── inflate.c ├── inflate.h ├── inftrees.c ├── inftrees.h ├── make_vms.com ├── msdos ├── Makefile.bor ├── Makefile.dj2 ├── Makefile.emx ├── Makefile.msc └── Makefile.tc ├── nintendods ├── Makefile └── README ├── old ├── Makefile.emx ├── Makefile.riscos ├── README ├── descrip.mms ├── os2 │ ├── Makefile.os2 │ └── zlib.def └── visual-basic.txt ├── qnx └── package.qpg ├── test ├── example.c ├── infcover.c └── minigzip.c ├── treebuild.xml ├── trees.c ├── trees.h ├── uncompr.c ├── watcom ├── watcom_f.mak └── watcom_l.mak ├── win32 ├── DLL_FAQ.txt ├── Makefile.bor ├── Makefile.gcc ├── Makefile.msc ├── README-WIN32.txt ├── VisualC.txt ├── zlib.def └── zlib1.rc ├── zconf.h ├── zconf.h.cmakein ├── zconf.h.in ├── zlib.3 ├── zlib.3.pdf ├── zlib.h ├── zlib.map ├── zlib.pc.cmakein ├── zlib.pc.in ├── zlib2ansi ├── zutil.c └── zutil.h /.github/actions/checkpoint/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/.github/actions/checkpoint/Dockerfile -------------------------------------------------------------------------------- /.github/actions/checkpoint/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | set -ex 4 | 5 | "$@" -------------------------------------------------------------------------------- /.github/actions/sh/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/.github/actions/sh/Dockerfile -------------------------------------------------------------------------------- /.github/actions/sh/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | set -ex 4 | 5 | "$@" -------------------------------------------------------------------------------- /.github/actions/sh/requirements.txt: -------------------------------------------------------------------------------- 1 | fin -------------------------------------------------------------------------------- /.github/workflows/build_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/.github/workflows/build_test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/.gitmodules -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/docs/_static/custom.css -------------------------------------------------------------------------------- /docs/_static/perf1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/docs/_static/perf1.html -------------------------------------------------------------------------------- /docs/_static/perf2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/docs/_static/perf2.html -------------------------------------------------------------------------------- /docs/_static/perf3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/docs/_static/perf3.html -------------------------------------------------------------------------------- /docs/_static/perf4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/docs/_static/perf4.html -------------------------------------------------------------------------------- /docs/_static/perf_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/docs/_static/perf_graph.png -------------------------------------------------------------------------------- /docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/docs/_templates/layout.html -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/detail.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/docs/detail.rst -------------------------------------------------------------------------------- /docs/docstring_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/docs/docstring_tools.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/intro_usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/docs/intro_usage.rst -------------------------------------------------------------------------------- /docs/performance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/docs/performance.rst -------------------------------------------------------------------------------- /docs/tubes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/docs/tubes.rst -------------------------------------------------------------------------------- /pyx/arrow.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/pyx/arrow.pxi -------------------------------------------------------------------------------- /pyx/chunk.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/pyx/chunk.pxi -------------------------------------------------------------------------------- /pyx/iter.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/pyx/iter.pxi -------------------------------------------------------------------------------- /pyx/ndarray.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/pyx/ndarray.pxi -------------------------------------------------------------------------------- /pyx/pyiter.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/pyx/pyiter.pxi -------------------------------------------------------------------------------- /pyx/scalar_type.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/pyx/scalar_type.pxd -------------------------------------------------------------------------------- /pyx/tubes.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/pyx/tubes.pyx -------------------------------------------------------------------------------- /pyx/version.pxi: -------------------------------------------------------------------------------- 1 | __version__ = (0, 8, 1) -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/setup.py -------------------------------------------------------------------------------- /src/bytes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/bytes.hpp -------------------------------------------------------------------------------- /src/convert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/convert.hpp -------------------------------------------------------------------------------- /src/iter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/iter.hpp -------------------------------------------------------------------------------- /src/iter_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/iter_test.cpp -------------------------------------------------------------------------------- /src/iters/chain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/iters/chain.hpp -------------------------------------------------------------------------------- /src/iters/compare.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/iters/compare.hpp -------------------------------------------------------------------------------- /src/iters/convert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/iters/convert.hpp -------------------------------------------------------------------------------- /src/iters/count.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/iters/count.hpp -------------------------------------------------------------------------------- /src/iters/count_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/iters/count_test.cpp -------------------------------------------------------------------------------- /src/iters/each.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/iters/each.hpp -------------------------------------------------------------------------------- /src/iters/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/iters/enum.hpp -------------------------------------------------------------------------------- /src/iters/filemap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/iters/filemap.hpp -------------------------------------------------------------------------------- /src/iters/fileobjread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/iters/fileobjread.hpp -------------------------------------------------------------------------------- /src/iters/fileread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/iters/fileread.hpp -------------------------------------------------------------------------------- /src/iters/first.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/iters/first.hpp -------------------------------------------------------------------------------- /src/iters/first_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/iters/first_test.cpp -------------------------------------------------------------------------------- /src/iters/get_index.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/iters/get_index.hpp -------------------------------------------------------------------------------- /src/iters/get_name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/iters/get_name.hpp -------------------------------------------------------------------------------- /src/iters/get_slot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/iters/get_slot.hpp -------------------------------------------------------------------------------- /src/iters/group_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/iters/group_id.hpp -------------------------------------------------------------------------------- /src/iters/gunzip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/iters/gunzip.hpp -------------------------------------------------------------------------------- /src/iters/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/iters/json.hpp -------------------------------------------------------------------------------- /src/iters/multi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/iters/multi.hpp -------------------------------------------------------------------------------- /src/iters/skip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/iters/skip.hpp -------------------------------------------------------------------------------- /src/iters/skip_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/iters/skip_if.hpp -------------------------------------------------------------------------------- /src/iters/skip_unless.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/iters/skip_unless.hpp -------------------------------------------------------------------------------- /src/iters/split.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/iters/split.hpp -------------------------------------------------------------------------------- /src/iters/strlen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/iters/strlen.hpp -------------------------------------------------------------------------------- /src/iters/topy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/iters/topy.hpp -------------------------------------------------------------------------------- /src/iters/xsv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/iters/xsv.hpp -------------------------------------------------------------------------------- /src/iters/zip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/iters/zip.hpp -------------------------------------------------------------------------------- /src/scalar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/scalar.hpp -------------------------------------------------------------------------------- /src/slot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/slot.hpp -------------------------------------------------------------------------------- /src/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/test.cpp -------------------------------------------------------------------------------- /src/undefined.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/undefined.hpp -------------------------------------------------------------------------------- /src/util/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/util/array.hpp -------------------------------------------------------------------------------- /src/util/arrow/aligned_alloc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/util/arrow/aligned_alloc.hpp -------------------------------------------------------------------------------- /src/util/arrow/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/util/arrow/buffer.hpp -------------------------------------------------------------------------------- /src/util/arrow/containers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/util/arrow/containers.hpp -------------------------------------------------------------------------------- /src/util/atoi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/util/atoi.hpp -------------------------------------------------------------------------------- /src/util/backtrace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/util/backtrace.hpp -------------------------------------------------------------------------------- /src/util/codec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/util/codec.hpp -------------------------------------------------------------------------------- /src/util/codec_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/util/codec_test.cpp -------------------------------------------------------------------------------- /src/util/default.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/util/default.hpp -------------------------------------------------------------------------------- /src/util/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/util/error.hpp -------------------------------------------------------------------------------- /src/util/error_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/util/error_test.cpp -------------------------------------------------------------------------------- /src/util/json/failsafe_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/util/json/failsafe_parser.hpp -------------------------------------------------------------------------------- /src/util/json/iter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/util/json/iter.hpp -------------------------------------------------------------------------------- /src/util/json/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/util/json/json.hpp -------------------------------------------------------------------------------- /src/util/json/json_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/util/json/json_test.cpp -------------------------------------------------------------------------------- /src/util/json/optimistic_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/util/json/optimistic_parser.hpp -------------------------------------------------------------------------------- /src/util/json/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/util/json/string.hpp -------------------------------------------------------------------------------- /src/util/json/token.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/util/json/token.hpp -------------------------------------------------------------------------------- /src/util/json/tokenize_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/util/json/tokenize_test.cpp -------------------------------------------------------------------------------- /src/util/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/util/map.hpp -------------------------------------------------------------------------------- /src/util/mmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/util/mmap.hpp -------------------------------------------------------------------------------- /src/util/mmap_posix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/util/mmap_posix.hpp -------------------------------------------------------------------------------- /src/util/mmap_win.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/util/mmap_win.hpp -------------------------------------------------------------------------------- /src/util/ndarray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/util/ndarray.hpp -------------------------------------------------------------------------------- /src/util/pyarrow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/util/pyarrow.hpp -------------------------------------------------------------------------------- /src/util/pyobj.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/util/pyobj.hpp -------------------------------------------------------------------------------- /src/util/skiplist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/util/skiplist.hpp -------------------------------------------------------------------------------- /src/util/slice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/util/slice.hpp -------------------------------------------------------------------------------- /src/util/slice_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/util/slice_test.cpp -------------------------------------------------------------------------------- /src/util/stream_reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/util/stream_reader.hpp -------------------------------------------------------------------------------- /src/util/stream_reader_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/util/stream_reader_test.cpp -------------------------------------------------------------------------------- /src/util/valuestore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/util/valuestore.hpp -------------------------------------------------------------------------------- /src/util/xsv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/src/util/xsv.hpp -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_number_double_huge_neg_exp.json: -------------------------------------------------------------------------------- 1 | [123.456e-789] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_number_huge_exp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/i_number_huge_exp.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_number_neg_int_huge_exp.json: -------------------------------------------------------------------------------- 1 | [-1e+9999] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_number_pos_double_huge_exp.json: -------------------------------------------------------------------------------- 1 | [1.5e+9999] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_number_real_neg_overflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/i_number_real_neg_overflow.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_number_real_pos_overflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/i_number_real_pos_overflow.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_number_real_underflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/i_number_real_underflow.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_number_too_big_neg_int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/i_number_too_big_neg_int.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_number_too_big_pos_int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/i_number_too_big_pos_int.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_number_very_big_negative_int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/i_number_very_big_negative_int.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_object_key_lone_2nd_surrogate.json: -------------------------------------------------------------------------------- 1 | {"\uDFAA":0} -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_string_1st_surrogate_but_2nd_missing.json: -------------------------------------------------------------------------------- 1 | ["\uDADA"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_string_1st_valid_surrogate_2nd_invalid.json: -------------------------------------------------------------------------------- 1 | ["\uD888\u1234"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_string_UTF-16LE_with_BOM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/i_string_UTF-16LE_with_BOM.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_string_UTF-8_invalid_sequence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/i_string_UTF-8_invalid_sequence.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_string_UTF8_surrogate_U+D800.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/i_string_UTF8_surrogate_U+D800.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_string_incomplete_surrogate_and_escape_valid.json: -------------------------------------------------------------------------------- 1 | ["\uD800\n"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_string_incomplete_surrogate_pair.json: -------------------------------------------------------------------------------- 1 | ["\uDd1ea"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_string_incomplete_surrogates_escape_valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/i_string_incomplete_surrogates_escape_valid.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_string_invalid_lonely_surrogate.json: -------------------------------------------------------------------------------- 1 | ["\ud800"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_string_invalid_surrogate.json: -------------------------------------------------------------------------------- 1 | ["\ud800abc"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_string_invalid_utf-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/i_string_invalid_utf-8.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_string_inverted_surrogates_U+1D11E.json: -------------------------------------------------------------------------------- 1 | ["\uDd1e\uD834"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_string_iso_latin_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/i_string_iso_latin_1.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_string_lone_second_surrogate.json: -------------------------------------------------------------------------------- 1 | ["\uDFAA"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_string_lone_utf8_continuation_byte.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/i_string_lone_utf8_continuation_byte.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_string_not_in_unicode_range.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/i_string_not_in_unicode_range.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_string_overlong_sequence_2_bytes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/i_string_overlong_sequence_2_bytes.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_string_overlong_sequence_6_bytes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/i_string_overlong_sequence_6_bytes.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_string_overlong_sequence_6_bytes_null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/i_string_overlong_sequence_6_bytes_null.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_string_truncated-utf-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/i_string_truncated-utf-8.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_string_utf16BE_no_BOM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/i_string_utf16BE_no_BOM.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_string_utf16LE_no_BOM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/i_string_utf16LE_no_BOM.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_structure_500_nested_arrays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/i_structure_500_nested_arrays.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/i_structure_UTF-8_BOM_empty_object.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_array_1_true_without_comma.json: -------------------------------------------------------------------------------- 1 | [1 true] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_array_a_invalid_utf8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/n_array_a_invalid_utf8.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_array_colon_instead_of_comma.json: -------------------------------------------------------------------------------- 1 | ["": 1] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_array_comma_after_close.json: -------------------------------------------------------------------------------- 1 | [""], -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_array_comma_and_number.json: -------------------------------------------------------------------------------- 1 | [,1] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_array_double_comma.json: -------------------------------------------------------------------------------- 1 | [1,,2] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_array_double_extra_comma.json: -------------------------------------------------------------------------------- 1 | ["x",,] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_array_extra_close.json: -------------------------------------------------------------------------------- 1 | ["x"]] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_array_extra_comma.json: -------------------------------------------------------------------------------- 1 | ["",] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_array_incomplete.json: -------------------------------------------------------------------------------- 1 | ["x" -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_array_incomplete_invalid_value.json: -------------------------------------------------------------------------------- 1 | [x -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_array_inner_array_no_comma.json: -------------------------------------------------------------------------------- 1 | [3[4]] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_array_invalid_utf8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/n_array_invalid_utf8.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_array_items_separated_by_semicolon.json: -------------------------------------------------------------------------------- 1 | [1:2] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_array_just_comma.json: -------------------------------------------------------------------------------- 1 | [,] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_array_just_minus.json: -------------------------------------------------------------------------------- 1 | [-] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_array_missing_value.json: -------------------------------------------------------------------------------- 1 | [ , ""] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_array_newlines_unclosed.json: -------------------------------------------------------------------------------- 1 | ["a", 2 | 4 3 | ,1, -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_array_number_and_comma.json: -------------------------------------------------------------------------------- 1 | [1,] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_array_number_and_several_commas.json: -------------------------------------------------------------------------------- 1 | [1,,] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_array_spaces_vertical_tab_formfeed.json: -------------------------------------------------------------------------------- 1 | [" a"\f] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_array_star_inside.json: -------------------------------------------------------------------------------- 1 | [*] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_array_unclosed.json: -------------------------------------------------------------------------------- 1 | ["" -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_array_unclosed_trailing_comma.json: -------------------------------------------------------------------------------- 1 | [1, -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_array_unclosed_with_new_lines.json: -------------------------------------------------------------------------------- 1 | [1, 2 | 1 3 | ,1 -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_array_unclosed_with_object_inside.json: -------------------------------------------------------------------------------- 1 | [{} -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_incomplete_false.json: -------------------------------------------------------------------------------- 1 | [fals] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_incomplete_null.json: -------------------------------------------------------------------------------- 1 | [nul] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_incomplete_true.json: -------------------------------------------------------------------------------- 1 | [tru] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_multidigit_number_then_00.json: -------------------------------------------------------------------------------- 1 | 123 -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_++.json: -------------------------------------------------------------------------------- 1 | [++1234] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_+1.json: -------------------------------------------------------------------------------- 1 | [+1] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_+Inf.json: -------------------------------------------------------------------------------- 1 | [+Inf] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_-01.json: -------------------------------------------------------------------------------- 1 | [-01] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_-1.0..json: -------------------------------------------------------------------------------- 1 | [-1.0.] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_-2..json: -------------------------------------------------------------------------------- 1 | [-2.] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_-NaN.json: -------------------------------------------------------------------------------- 1 | [-NaN] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_.-1.json: -------------------------------------------------------------------------------- 1 | [.-1] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_.2e-3.json: -------------------------------------------------------------------------------- 1 | [.2e-3] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_0.1.2.json: -------------------------------------------------------------------------------- 1 | [0.1.2] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_0.3e+.json: -------------------------------------------------------------------------------- 1 | [0.3e+] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_0.3e.json: -------------------------------------------------------------------------------- 1 | [0.3e] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_0.e1.json: -------------------------------------------------------------------------------- 1 | [0.e1] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_0_capital_E+.json: -------------------------------------------------------------------------------- 1 | [0E+] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_0_capital_E.json: -------------------------------------------------------------------------------- 1 | [0E] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_0e+.json: -------------------------------------------------------------------------------- 1 | [0e+] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_0e.json: -------------------------------------------------------------------------------- 1 | [0e] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_1.0e+.json: -------------------------------------------------------------------------------- 1 | [1.0e+] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_1.0e-.json: -------------------------------------------------------------------------------- 1 | [1.0e-] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_1.0e.json: -------------------------------------------------------------------------------- 1 | [1.0e] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_1_000.json: -------------------------------------------------------------------------------- 1 | [1 000.0] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_1eE2.json: -------------------------------------------------------------------------------- 1 | [1eE2] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_2.e+3.json: -------------------------------------------------------------------------------- 1 | [2.e+3] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_2.e-3.json: -------------------------------------------------------------------------------- 1 | [2.e-3] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_2.e3.json: -------------------------------------------------------------------------------- 1 | [2.e3] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_9.e+.json: -------------------------------------------------------------------------------- 1 | [9.e+] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_Inf.json: -------------------------------------------------------------------------------- 1 | [Inf] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_NaN.json: -------------------------------------------------------------------------------- 1 | [NaN] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_U+FF11_fullwidth_digit_one.json: -------------------------------------------------------------------------------- 1 | [1] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_expression.json: -------------------------------------------------------------------------------- 1 | [1+2] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_hex_1_digit.json: -------------------------------------------------------------------------------- 1 | [0x1] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_hex_2_digits.json: -------------------------------------------------------------------------------- 1 | [0x42] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_infinity.json: -------------------------------------------------------------------------------- 1 | [Infinity] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_invalid+-.json: -------------------------------------------------------------------------------- 1 | [0e+-1] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_invalid-negative-real.json: -------------------------------------------------------------------------------- 1 | [-123.123foo] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_invalid-utf-8-in-bigger-int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/n_number_invalid-utf-8-in-bigger-int.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_invalid-utf-8-in-exponent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/n_number_invalid-utf-8-in-exponent.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_invalid-utf-8-in-int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/n_number_invalid-utf-8-in-int.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_minus_infinity.json: -------------------------------------------------------------------------------- 1 | [-Infinity] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_minus_sign_with_trailing_garbage.json: -------------------------------------------------------------------------------- 1 | [-foo] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_minus_space_1.json: -------------------------------------------------------------------------------- 1 | [- 1] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_neg_int_starting_with_zero.json: -------------------------------------------------------------------------------- 1 | [-012] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_neg_real_without_int_part.json: -------------------------------------------------------------------------------- 1 | [-.123] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_neg_with_garbage_at_end.json: -------------------------------------------------------------------------------- 1 | [-1x] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_real_garbage_after_e.json: -------------------------------------------------------------------------------- 1 | [1ea] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_real_with_invalid_utf8_after_e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/n_number_real_with_invalid_utf8_after_e.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_real_without_fractional_part.json: -------------------------------------------------------------------------------- 1 | [1.] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_starting_with_dot.json: -------------------------------------------------------------------------------- 1 | [.123] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_with_alpha.json: -------------------------------------------------------------------------------- 1 | [1.2a-3] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_with_alpha_char.json: -------------------------------------------------------------------------------- 1 | [1.8011670033376514H-308] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_number_with_leading_zero.json: -------------------------------------------------------------------------------- 1 | [012] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_object_bad_value.json: -------------------------------------------------------------------------------- 1 | ["x", truth] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_object_bracket_key.json: -------------------------------------------------------------------------------- 1 | {[: "x"} 2 | -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_object_comma_instead_of_colon.json: -------------------------------------------------------------------------------- 1 | {"x", null} -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_object_double_colon.json: -------------------------------------------------------------------------------- 1 | {"x"::"b"} -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_object_emoji.json: -------------------------------------------------------------------------------- 1 | {🇨🇭} -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_object_garbage_at_end.json: -------------------------------------------------------------------------------- 1 | {"a":"a" 123} -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_object_key_with_single_quotes.json: -------------------------------------------------------------------------------- 1 | {key: 'value'} -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_object_missing_colon.json: -------------------------------------------------------------------------------- 1 | {"a" b} -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_object_missing_key.json: -------------------------------------------------------------------------------- 1 | {:"b"} -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_object_missing_semicolon.json: -------------------------------------------------------------------------------- 1 | {"a" "b"} -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_object_missing_value.json: -------------------------------------------------------------------------------- 1 | {"a": -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_object_no-colon.json: -------------------------------------------------------------------------------- 1 | {"a" -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_object_non_string_key.json: -------------------------------------------------------------------------------- 1 | {1:1} -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_object_non_string_key_but_huge_number_instead.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/n_object_non_string_key_but_huge_number_instead.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_object_pi_in_key_and_trailing_comma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/n_object_pi_in_key_and_trailing_comma.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_object_repeated_null_null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/n_object_repeated_null_null.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_object_several_trailing_commas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/n_object_several_trailing_commas.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_object_single_quote.json: -------------------------------------------------------------------------------- 1 | {'a':0} -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_object_trailing_comma.json: -------------------------------------------------------------------------------- 1 | {"id":0,} -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_object_trailing_comment.json: -------------------------------------------------------------------------------- 1 | {"a":"b"}/**/ -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_object_trailing_comment_open.json: -------------------------------------------------------------------------------- 1 | {"a":"b"}/**// -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_object_trailing_comment_slash_open.json: -------------------------------------------------------------------------------- 1 | {"a":"b"}// -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_object_trailing_comment_slash_open_incomplete.json: -------------------------------------------------------------------------------- 1 | {"a":"b"}/ -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_object_two_commas_in_a_row.json: -------------------------------------------------------------------------------- 1 | {"a":"b",,"c":"d"} -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_object_unquoted_key.json: -------------------------------------------------------------------------------- 1 | {a: "b"} -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_object_unterminated-value.json: -------------------------------------------------------------------------------- 1 | {"a":"a -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_object_with_single_string.json: -------------------------------------------------------------------------------- 1 | { "foo" : "bar", "a" } -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_object_with_trailing_garbage.json: -------------------------------------------------------------------------------- 1 | {"a":"b"}# -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_single_space.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_string_1_surrogate_then_escape.json: -------------------------------------------------------------------------------- 1 | ["\uD800\"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_string_1_surrogate_then_escape_u.json: -------------------------------------------------------------------------------- 1 | ["\uD800\u"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_string_1_surrogate_then_escape_u1.json: -------------------------------------------------------------------------------- 1 | ["\uD800\u1"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_string_1_surrogate_then_escape_u1x.json: -------------------------------------------------------------------------------- 1 | ["\uD800\u1x"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_string_accentuated_char_no_quotes.json: -------------------------------------------------------------------------------- 1 | [é] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_string_backslash_00.json: -------------------------------------------------------------------------------- 1 | ["\"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_string_escape_x.json: -------------------------------------------------------------------------------- 1 | ["\x00"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_string_escaped_backslash_bad.json: -------------------------------------------------------------------------------- 1 | ["\\\"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_string_escaped_ctrl_char_tab.json: -------------------------------------------------------------------------------- 1 | ["\ "] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_string_escaped_emoji.json: -------------------------------------------------------------------------------- 1 | ["\🌀"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_string_incomplete_escape.json: -------------------------------------------------------------------------------- 1 | ["\"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_string_incomplete_escaped_character.json: -------------------------------------------------------------------------------- 1 | ["\u00A"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_string_incomplete_surrogate.json: -------------------------------------------------------------------------------- 1 | ["\uD834\uDd"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_string_incomplete_surrogate_escape_invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/n_string_incomplete_surrogate_escape_invalid.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_string_invalid-utf-8-in-escape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/n_string_invalid-utf-8-in-escape.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_string_invalid_backslash_esc.json: -------------------------------------------------------------------------------- 1 | ["\a"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_string_invalid_unicode_escape.json: -------------------------------------------------------------------------------- 1 | ["\uqqqq"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_string_invalid_utf8_after_escape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/n_string_invalid_utf8_after_escape.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_string_leading_uescaped_thinspace.json: -------------------------------------------------------------------------------- 1 | [\u0020"asd"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_string_no_quotes_with_bad_escape.json: -------------------------------------------------------------------------------- 1 | [\n] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_string_single_doublequote.json: -------------------------------------------------------------------------------- 1 | " -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_string_single_quote.json: -------------------------------------------------------------------------------- 1 | ['single quote'] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_string_single_string_no_double_quotes.json: -------------------------------------------------------------------------------- 1 | abc -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_string_start_escape_unclosed.json: -------------------------------------------------------------------------------- 1 | ["\ -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_string_unescaped_crtl_char.json: -------------------------------------------------------------------------------- 1 | ["aa"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_string_unescaped_newline.json: -------------------------------------------------------------------------------- 1 | ["new 2 | line"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_string_unescaped_tab.json: -------------------------------------------------------------------------------- 1 | [" "] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_string_unicode_CapitalU.json: -------------------------------------------------------------------------------- 1 | "\UA66D" -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_string_with_trailing_garbage.json: -------------------------------------------------------------------------------- 1 | ""x -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_100000_opening_arrays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/n_structure_100000_opening_arrays.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_U+2060_word_joined.json: -------------------------------------------------------------------------------- 1 | [⁠] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_UTF8_BOM_no_data.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_angle_bracket_..json: -------------------------------------------------------------------------------- 1 | <.> -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_angle_bracket_null.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_array_trailing_garbage.json: -------------------------------------------------------------------------------- 1 | [1]x -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_array_with_extra_array_close.json: -------------------------------------------------------------------------------- 1 | [1]] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_array_with_unclosed_string.json: -------------------------------------------------------------------------------- 1 | ["asd] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_ascii-unicode-identifier.json: -------------------------------------------------------------------------------- 1 | aå -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_capitalized_True.json: -------------------------------------------------------------------------------- 1 | [True] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_close_unopened_array.json: -------------------------------------------------------------------------------- 1 | 1] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_comma_instead_of_closing_brace.json: -------------------------------------------------------------------------------- 1 | {"x": true, -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_double_array.json: -------------------------------------------------------------------------------- 1 | [][] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_end_array.json: -------------------------------------------------------------------------------- 1 | ] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_incomplete_UTF8_BOM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/n_structure_incomplete_UTF8_BOM.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_lone-invalid-utf-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/n_structure_lone-invalid-utf-8.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_lone-open-bracket.json: -------------------------------------------------------------------------------- 1 | [ -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_no_data.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_null-byte-outside-string.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_number_with_trailing_garbage.json: -------------------------------------------------------------------------------- 1 | 2@ -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_object_followed_by_closing_object.json: -------------------------------------------------------------------------------- 1 | {}} -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_object_unclosed_no_value.json: -------------------------------------------------------------------------------- 1 | {"": -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_object_with_comment.json: -------------------------------------------------------------------------------- 1 | {"a":/*comment*/"b"} -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_object_with_trailing_garbage.json: -------------------------------------------------------------------------------- 1 | {"a": true} "x" -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_open_array_apostrophe.json: -------------------------------------------------------------------------------- 1 | [' -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_open_array_comma.json: -------------------------------------------------------------------------------- 1 | [, -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_open_array_object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/n_structure_open_array_object.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_open_array_open_object.json: -------------------------------------------------------------------------------- 1 | [{ -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_open_array_open_string.json: -------------------------------------------------------------------------------- 1 | ["a -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_open_array_string.json: -------------------------------------------------------------------------------- 1 | ["a" -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_open_object.json: -------------------------------------------------------------------------------- 1 | { -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_open_object_close_array.json: -------------------------------------------------------------------------------- 1 | {] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_open_object_comma.json: -------------------------------------------------------------------------------- 1 | {, -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_open_object_open_array.json: -------------------------------------------------------------------------------- 1 | {[ -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_open_object_open_string.json: -------------------------------------------------------------------------------- 1 | {"a -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_open_object_string_with_apostrophes.json: -------------------------------------------------------------------------------- 1 | {'a' -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_open_open.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/n_structure_open_open.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_single_eacute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/n_structure_single_eacute.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_single_star.json: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_trailing_#.json: -------------------------------------------------------------------------------- 1 | {"a":"b"}#{} -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_uescaped_LF_before_string.json: -------------------------------------------------------------------------------- 1 | [\u000A""] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_unclosed_array.json: -------------------------------------------------------------------------------- 1 | [1 -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_unclosed_array_partial_null.json: -------------------------------------------------------------------------------- 1 | [ false, nul -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_unclosed_array_unfinished_false.json: -------------------------------------------------------------------------------- 1 | [ true, fals -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_unclosed_array_unfinished_true.json: -------------------------------------------------------------------------------- 1 | [ false, tru -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_unclosed_object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/n_structure_unclosed_object.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_unicode-identifier.json: -------------------------------------------------------------------------------- 1 | å -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_whitespace_U+2060_word_joiner.json: -------------------------------------------------------------------------------- 1 | [⁠] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/n_structure_whitespace_formfeed.json: -------------------------------------------------------------------------------- 1 | [ ] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_array_arraysWithSpaces.json: -------------------------------------------------------------------------------- 1 | [[] ] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_array_empty-string.json: -------------------------------------------------------------------------------- 1 | [""] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_array_empty.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_array_ending_with_newline.json: -------------------------------------------------------------------------------- 1 | ["a"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_array_false.json: -------------------------------------------------------------------------------- 1 | [false] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_array_heterogeneous.json: -------------------------------------------------------------------------------- 1 | [null, 1, "1", {}] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_array_null.json: -------------------------------------------------------------------------------- 1 | [null] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_array_with_1_and_newline.json: -------------------------------------------------------------------------------- 1 | [1 2 | ] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_array_with_leading_space.json: -------------------------------------------------------------------------------- 1 | [1] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_array_with_several_null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/y_array_with_several_null.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_array_with_trailing_space.json: -------------------------------------------------------------------------------- 1 | [2] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_number.json: -------------------------------------------------------------------------------- 1 | [123e65] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_number_0e+1.json: -------------------------------------------------------------------------------- 1 | [0e+1] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_number_0e1.json: -------------------------------------------------------------------------------- 1 | [0e1] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_number_after_space.json: -------------------------------------------------------------------------------- 1 | [ 4] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_number_double_close_to_zero.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/y_number_double_close_to_zero.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_number_int_with_exp.json: -------------------------------------------------------------------------------- 1 | [20e1] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_number_minus_zero.json: -------------------------------------------------------------------------------- 1 | [-0] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_number_negative_int.json: -------------------------------------------------------------------------------- 1 | [-123] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_number_negative_one.json: -------------------------------------------------------------------------------- 1 | [-1] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_number_negative_zero.json: -------------------------------------------------------------------------------- 1 | [-0] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_number_real_capital_e.json: -------------------------------------------------------------------------------- 1 | [1E22] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_number_real_capital_e_neg_exp.json: -------------------------------------------------------------------------------- 1 | [1E-2] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_number_real_capital_e_pos_exp.json: -------------------------------------------------------------------------------- 1 | [1E+2] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_number_real_exponent.json: -------------------------------------------------------------------------------- 1 | [123e45] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_number_real_fraction_exponent.json: -------------------------------------------------------------------------------- 1 | [123.456e78] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_number_real_neg_exp.json: -------------------------------------------------------------------------------- 1 | [1e-2] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_number_real_pos_exponent.json: -------------------------------------------------------------------------------- 1 | [1e+2] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_number_simple_int.json: -------------------------------------------------------------------------------- 1 | [123] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_number_simple_real.json: -------------------------------------------------------------------------------- 1 | [123.456789] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_object.json: -------------------------------------------------------------------------------- 1 | {"asd":"sdf", "dfg":"fgh"} -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_object_basic.json: -------------------------------------------------------------------------------- 1 | {"asd":"sdf"} -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_object_duplicated_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/y_object_duplicated_key.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_object_duplicated_key_and_value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/y_object_duplicated_key_and_value.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_object_empty.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_object_empty_key.json: -------------------------------------------------------------------------------- 1 | {"":0} -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_object_escaped_null_in_key.json: -------------------------------------------------------------------------------- 1 | {"foo\u0000bar": 42} -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_object_extreme_numbers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/y_object_extreme_numbers.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_object_long_strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/y_object_long_strings.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_object_simple.json: -------------------------------------------------------------------------------- 1 | {"a":[]} -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_object_string_unicode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/y_object_string_unicode.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_object_with_newlines.json: -------------------------------------------------------------------------------- 1 | { 2 | "a": "b" 3 | } -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_1_2_3_bytes_UTF-8_sequences.json: -------------------------------------------------------------------------------- 1 | ["\u0060\u012a\u12AB"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_accepted_surrogate_pair.json: -------------------------------------------------------------------------------- 1 | ["\uD801\udc37"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_accepted_surrogate_pairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/y_string_accepted_surrogate_pairs.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_allowed_escapes.json: -------------------------------------------------------------------------------- 1 | ["\"\\\/\b\f\n\r\t"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_backslash_and_u_escaped_zero.json: -------------------------------------------------------------------------------- 1 | ["\\u0000"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_backslash_doublequotes.json: -------------------------------------------------------------------------------- 1 | ["\""] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_comments.json: -------------------------------------------------------------------------------- 1 | ["a/*b*/c/*d//e"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_double_escape_a.json: -------------------------------------------------------------------------------- 1 | ["\\a"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_double_escape_n.json: -------------------------------------------------------------------------------- 1 | ["\\n"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_escaped_control_character.json: -------------------------------------------------------------------------------- 1 | ["\u0012"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_escaped_noncharacter.json: -------------------------------------------------------------------------------- 1 | ["\uFFFF"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_in_array.json: -------------------------------------------------------------------------------- 1 | ["asd"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_in_array_with_leading_space.json: -------------------------------------------------------------------------------- 1 | [ "asd"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_last_surrogates_1_and_2.json: -------------------------------------------------------------------------------- 1 | ["\uDBFF\uDFFF"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_nbsp_uescaped.json: -------------------------------------------------------------------------------- 1 | ["new\u00A0line"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_nonCharacterInUTF-8_U+10FFFF.json: -------------------------------------------------------------------------------- 1 | ["􏿿"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_nonCharacterInUTF-8_U+1FFFF.json: -------------------------------------------------------------------------------- 1 | ["𛿿"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_nonCharacterInUTF-8_U+FFFF.json: -------------------------------------------------------------------------------- 1 | ["￿"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_null_escape.json: -------------------------------------------------------------------------------- 1 | ["\u0000"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_one-byte-utf-8.json: -------------------------------------------------------------------------------- 1 | ["\u002c"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_pi.json: -------------------------------------------------------------------------------- 1 | ["π"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_simple_ascii.json: -------------------------------------------------------------------------------- 1 | ["asd "] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_space.json: -------------------------------------------------------------------------------- 1 | " " -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_surrogates_U+1D11E_MUSICAL_SYMBOL_G_CLEF.json: -------------------------------------------------------------------------------- 1 | ["\uD834\uDd1e"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_three-byte-utf-8.json: -------------------------------------------------------------------------------- 1 | ["\u0821"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_two-byte-utf-8.json: -------------------------------------------------------------------------------- 1 | ["\u0123"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_u+2028_line_sep.json: -------------------------------------------------------------------------------- 1 | ["
"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_u+2029_par_sep.json: -------------------------------------------------------------------------------- 1 | ["
"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_uEscape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/JSONTestSuite_parse_tests/y_string_uEscape.json -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_uescaped_newline.json: -------------------------------------------------------------------------------- 1 | ["new\u000Aline"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_unescaped_char_delete.json: -------------------------------------------------------------------------------- 1 | [""] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_unicode.json: -------------------------------------------------------------------------------- 1 | ["\uA66D"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_unicodeEscapedBackslash.json: -------------------------------------------------------------------------------- 1 | ["\u005C"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_unicode_2.json: -------------------------------------------------------------------------------- 1 | ["⍂㈴⍂"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_unicode_U+10FFFE_nonchar.json: -------------------------------------------------------------------------------- 1 | ["\uDBFF\uDFFE"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_unicode_U+1FFFE_nonchar.json: -------------------------------------------------------------------------------- 1 | ["\uD83F\uDFFE"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_unicode_U+200B_ZERO_WIDTH_SPACE.json: -------------------------------------------------------------------------------- 1 | ["\u200B"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_unicode_U+2064_invisible_plus.json: -------------------------------------------------------------------------------- 1 | ["\u2064"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_unicode_U+FDD0_nonchar.json: -------------------------------------------------------------------------------- 1 | ["\uFDD0"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_unicode_U+FFFE_nonchar.json: -------------------------------------------------------------------------------- 1 | ["\uFFFE"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_unicode_escaped_double_quote.json: -------------------------------------------------------------------------------- 1 | ["\u0022"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_utf8.json: -------------------------------------------------------------------------------- 1 | ["€𝄞"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_string_with_del_character.json: -------------------------------------------------------------------------------- 1 | ["aa"] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_structure_lonely_false.json: -------------------------------------------------------------------------------- 1 | false -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_structure_lonely_int.json: -------------------------------------------------------------------------------- 1 | 42 -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_structure_lonely_negative_real.json: -------------------------------------------------------------------------------- 1 | -0.1 -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_structure_lonely_null.json: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_structure_lonely_string.json: -------------------------------------------------------------------------------- 1 | "asd" -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_structure_lonely_true.json: -------------------------------------------------------------------------------- 1 | true -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_structure_string_empty.json: -------------------------------------------------------------------------------- 1 | "" -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_structure_trailing_newline.json: -------------------------------------------------------------------------------- 1 | ["a"] 2 | -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_structure_true_in_array.json: -------------------------------------------------------------------------------- 1 | [true] -------------------------------------------------------------------------------- /test/JSONTestSuite_parse_tests/y_structure_whitespace_array.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/test_chunk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/test_chunk.py -------------------------------------------------------------------------------- /test/test_compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/test_compare.py -------------------------------------------------------------------------------- /test/test_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/test_convert.py -------------------------------------------------------------------------------- /test/test_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/test_csv.py -------------------------------------------------------------------------------- /test/test_enumerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/test_enumerate.py -------------------------------------------------------------------------------- /test/test_fuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/test_fuzz.py -------------------------------------------------------------------------------- /test/test_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/test_get.py -------------------------------------------------------------------------------- /test/test_get_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/test_get_index.py -------------------------------------------------------------------------------- /test/test_group_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/test_group_id.py -------------------------------------------------------------------------------- /test/test_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/test_json.py -------------------------------------------------------------------------------- /test/test_ndarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/test_ndarray.py -------------------------------------------------------------------------------- /test/test_pa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/test_pa.py -------------------------------------------------------------------------------- /test/test_pyiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/test_pyiter.py -------------------------------------------------------------------------------- /test/test_read_fileobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/test_read_fileobj.py -------------------------------------------------------------------------------- /test/test_recovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/test_recovery.py -------------------------------------------------------------------------------- /test/test_refcount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/test_refcount.py -------------------------------------------------------------------------------- /test/test_repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/test_repr.py -------------------------------------------------------------------------------- /test/test_skip_if.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/test_skip_if.py -------------------------------------------------------------------------------- /test/test_skip_unless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/test_skip_unless.py -------------------------------------------------------------------------------- /test/test_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/test_split.py -------------------------------------------------------------------------------- /test/test_strlen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/test_strlen.py -------------------------------------------------------------------------------- /test/test_tsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/test_tsv.py -------------------------------------------------------------------------------- /test/tricky_json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/test/tricky_json.json -------------------------------------------------------------------------------- /tools/arrow.config.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/build_anylinux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/tools/build_anylinux.sh -------------------------------------------------------------------------------- /tools/build_wheels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/tools/build_wheels.py -------------------------------------------------------------------------------- /tools/defn.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/tools/defn.tmpl -------------------------------------------------------------------------------- /tools/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/tools/entrypoint.sh -------------------------------------------------------------------------------- /tools/make_cdef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/tools/make_cdef.py -------------------------------------------------------------------------------- /tools/perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/tools/perf.py -------------------------------------------------------------------------------- /tools/perf2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/tools/perf2.py -------------------------------------------------------------------------------- /tools/scripts/get-version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/tools/scripts/get-version.py -------------------------------------------------------------------------------- /tools/scripts/make-wheel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/tools/scripts/make-wheel.sh -------------------------------------------------------------------------------- /tools/scripts/py3.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -ex 4 | 5 | . /opt/rh/rh-python35/enable 6 | 7 | "$@" -------------------------------------------------------------------------------- /tools/scripts/test-wheel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/tools/scripts/test-wheel.sh -------------------------------------------------------------------------------- /tools/scripts/update-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/tools/scripts/update-docs.sh -------------------------------------------------------------------------------- /tools/scripts/update-version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/tools/scripts/update-version.py -------------------------------------------------------------------------------- /tools/version-list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/tools/version-list.py -------------------------------------------------------------------------------- /tools/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/tools/version.py -------------------------------------------------------------------------------- /vendor/catch2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/catch2.hpp -------------------------------------------------------------------------------- /vendor/citycrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/citycrc.h -------------------------------------------------------------------------------- /vendor/cityhash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/cityhash.hpp -------------------------------------------------------------------------------- /vendor/zlib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/.gitignore -------------------------------------------------------------------------------- /vendor/zlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/ChangeLog -------------------------------------------------------------------------------- /vendor/zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/FAQ -------------------------------------------------------------------------------- /vendor/zlib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/INDEX -------------------------------------------------------------------------------- /vendor/zlib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/Makefile.in -------------------------------------------------------------------------------- /vendor/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/README -------------------------------------------------------------------------------- /vendor/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/adler32.c -------------------------------------------------------------------------------- /vendor/zlib/amiga/Makefile.pup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/amiga/Makefile.pup -------------------------------------------------------------------------------- /vendor/zlib/amiga/Makefile.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/amiga/Makefile.sas -------------------------------------------------------------------------------- /vendor/zlib/as400/bndsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/as400/bndsrc -------------------------------------------------------------------------------- /vendor/zlib/as400/compile.clp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/as400/compile.clp -------------------------------------------------------------------------------- /vendor/zlib/as400/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/as400/readme.txt -------------------------------------------------------------------------------- /vendor/zlib/as400/zlib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/as400/zlib.inc -------------------------------------------------------------------------------- /vendor/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/compress.c -------------------------------------------------------------------------------- /vendor/zlib/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/configure -------------------------------------------------------------------------------- /vendor/zlib/contrib/amd64/crc32-pclmul_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/contrib/amd64/crc32-pclmul_asm.S -------------------------------------------------------------------------------- /vendor/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/crc32.c -------------------------------------------------------------------------------- /vendor/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/crc32.h -------------------------------------------------------------------------------- /vendor/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/deflate.c -------------------------------------------------------------------------------- /vendor/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/deflate.h -------------------------------------------------------------------------------- /vendor/zlib/doc/algorithm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/doc/algorithm.txt -------------------------------------------------------------------------------- /vendor/zlib/doc/rfc1950.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/doc/rfc1950.txt -------------------------------------------------------------------------------- /vendor/zlib/doc/rfc1951.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/doc/rfc1951.txt -------------------------------------------------------------------------------- /vendor/zlib/doc/rfc1952.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/doc/rfc1952.txt -------------------------------------------------------------------------------- /vendor/zlib/doc/txtvsbin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/doc/txtvsbin.txt -------------------------------------------------------------------------------- /vendor/zlib/examples/README.examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/examples/README.examples -------------------------------------------------------------------------------- /vendor/zlib/examples/enough.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/examples/enough.c -------------------------------------------------------------------------------- /vendor/zlib/examples/fitblk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/examples/fitblk.c -------------------------------------------------------------------------------- /vendor/zlib/examples/gun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/examples/gun.c -------------------------------------------------------------------------------- /vendor/zlib/examples/gzappend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/examples/gzappend.c -------------------------------------------------------------------------------- /vendor/zlib/examples/gzjoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/examples/gzjoin.c -------------------------------------------------------------------------------- /vendor/zlib/examples/gzlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/examples/gzlog.c -------------------------------------------------------------------------------- /vendor/zlib/examples/gzlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/examples/gzlog.h -------------------------------------------------------------------------------- /vendor/zlib/examples/zlib_how.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/examples/zlib_how.html -------------------------------------------------------------------------------- /vendor/zlib/examples/zpipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/examples/zpipe.c -------------------------------------------------------------------------------- /vendor/zlib/examples/zran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/examples/zran.c -------------------------------------------------------------------------------- /vendor/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/gzclose.c -------------------------------------------------------------------------------- /vendor/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/gzguts.h -------------------------------------------------------------------------------- /vendor/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/gzlib.c -------------------------------------------------------------------------------- /vendor/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/gzread.c -------------------------------------------------------------------------------- /vendor/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/gzwrite.c -------------------------------------------------------------------------------- /vendor/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/infback.c -------------------------------------------------------------------------------- /vendor/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/inffast.c -------------------------------------------------------------------------------- /vendor/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/inffast.h -------------------------------------------------------------------------------- /vendor/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/inffixed.h -------------------------------------------------------------------------------- /vendor/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/inflate.c -------------------------------------------------------------------------------- /vendor/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/inflate.h -------------------------------------------------------------------------------- /vendor/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/inftrees.c -------------------------------------------------------------------------------- /vendor/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/inftrees.h -------------------------------------------------------------------------------- /vendor/zlib/make_vms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/make_vms.com -------------------------------------------------------------------------------- /vendor/zlib/msdos/Makefile.bor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/msdos/Makefile.bor -------------------------------------------------------------------------------- /vendor/zlib/msdos/Makefile.dj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/msdos/Makefile.dj2 -------------------------------------------------------------------------------- /vendor/zlib/msdos/Makefile.emx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/msdos/Makefile.emx -------------------------------------------------------------------------------- /vendor/zlib/msdos/Makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/msdos/Makefile.msc -------------------------------------------------------------------------------- /vendor/zlib/msdos/Makefile.tc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/msdos/Makefile.tc -------------------------------------------------------------------------------- /vendor/zlib/nintendods/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/nintendods/Makefile -------------------------------------------------------------------------------- /vendor/zlib/nintendods/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/nintendods/README -------------------------------------------------------------------------------- /vendor/zlib/old/Makefile.emx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/old/Makefile.emx -------------------------------------------------------------------------------- /vendor/zlib/old/Makefile.riscos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/old/Makefile.riscos -------------------------------------------------------------------------------- /vendor/zlib/old/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/old/README -------------------------------------------------------------------------------- /vendor/zlib/old/descrip.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/old/descrip.mms -------------------------------------------------------------------------------- /vendor/zlib/old/os2/Makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/old/os2/Makefile.os2 -------------------------------------------------------------------------------- /vendor/zlib/old/os2/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/old/os2/zlib.def -------------------------------------------------------------------------------- /vendor/zlib/old/visual-basic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/old/visual-basic.txt -------------------------------------------------------------------------------- /vendor/zlib/qnx/package.qpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/qnx/package.qpg -------------------------------------------------------------------------------- /vendor/zlib/test/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/test/example.c -------------------------------------------------------------------------------- /vendor/zlib/test/infcover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/test/infcover.c -------------------------------------------------------------------------------- /vendor/zlib/test/minigzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/test/minigzip.c -------------------------------------------------------------------------------- /vendor/zlib/treebuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/treebuild.xml -------------------------------------------------------------------------------- /vendor/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/trees.c -------------------------------------------------------------------------------- /vendor/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/trees.h -------------------------------------------------------------------------------- /vendor/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/uncompr.c -------------------------------------------------------------------------------- /vendor/zlib/watcom/watcom_f.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/watcom/watcom_f.mak -------------------------------------------------------------------------------- /vendor/zlib/watcom/watcom_l.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/watcom/watcom_l.mak -------------------------------------------------------------------------------- /vendor/zlib/win32/DLL_FAQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/win32/DLL_FAQ.txt -------------------------------------------------------------------------------- /vendor/zlib/win32/Makefile.bor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/win32/Makefile.bor -------------------------------------------------------------------------------- /vendor/zlib/win32/Makefile.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/win32/Makefile.gcc -------------------------------------------------------------------------------- /vendor/zlib/win32/Makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/win32/Makefile.msc -------------------------------------------------------------------------------- /vendor/zlib/win32/README-WIN32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/win32/README-WIN32.txt -------------------------------------------------------------------------------- /vendor/zlib/win32/VisualC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/win32/VisualC.txt -------------------------------------------------------------------------------- /vendor/zlib/win32/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/win32/zlib.def -------------------------------------------------------------------------------- /vendor/zlib/win32/zlib1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/win32/zlib1.rc -------------------------------------------------------------------------------- /vendor/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/zconf.h -------------------------------------------------------------------------------- /vendor/zlib/zconf.h.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/zconf.h.cmakein -------------------------------------------------------------------------------- /vendor/zlib/zconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/zconf.h.in -------------------------------------------------------------------------------- /vendor/zlib/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/zlib.3 -------------------------------------------------------------------------------- /vendor/zlib/zlib.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/zlib.3.pdf -------------------------------------------------------------------------------- /vendor/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/zlib.h -------------------------------------------------------------------------------- /vendor/zlib/zlib.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/zlib.map -------------------------------------------------------------------------------- /vendor/zlib/zlib.pc.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/zlib.pc.cmakein -------------------------------------------------------------------------------- /vendor/zlib/zlib.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/zlib.pc.in -------------------------------------------------------------------------------- /vendor/zlib/zlib2ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/zlib2ansi -------------------------------------------------------------------------------- /vendor/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/zutil.c -------------------------------------------------------------------------------- /vendor/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stestagg/pytubes/HEAD/vendor/zlib/zutil.h --------------------------------------------------------------------------------