├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_template.yml │ └── feature_request.yml └── workflows │ ├── clear_cache.yml │ ├── release_brew.yml │ ├── release_containers.yml │ ├── release_github.yml │ ├── release_pypi.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .versionrc.js ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── enex2notion.spec ├── enex2notion ├── __init__.py ├── __main__.py ├── cli.py ├── cli_args.py ├── cli_logging.py ├── cli_notion.py ├── cli_upload.py ├── cli_wkhtmltopdf.py ├── enex_parser.py ├── enex_parser_xml.py ├── enex_types.py ├── enex_uploader.py ├── enex_uploader_block.py ├── enex_uploader_modes.py ├── note_parser │ ├── __init__.py │ ├── blocks.py │ ├── blocks_helpers.py │ ├── blocks_indented.py │ ├── elements │ │ ├── __init__.py │ │ ├── div.py │ │ ├── encrypt.py │ │ ├── header.py │ │ ├── list.py │ │ ├── media.py │ │ └── table.py │ ├── note.py │ ├── note_post_process_condense.py │ ├── note_post_process_resources.py │ ├── note_type_based.py │ ├── string_extractor.py │ ├── string_extractor_properties.py │ ├── string_extractor_split_tag.py │ ├── webclip.py │ ├── webclip_pdf.py │ ├── webclip_stages_cleanup.py │ ├── webclip_stages_common.py │ ├── webclip_stages_convert.py │ ├── webclip_stages_flatten.py │ └── webclip_stages_preparation.py ├── notion_blocks │ ├── __init__.py │ ├── base.py │ ├── container.py │ ├── embeddable.py │ ├── header.py │ ├── list.py │ ├── minor.py │ ├── table.py │ ├── text.py │ └── uploadable.py ├── utils_colors.py ├── utils_exceptions.py ├── utils_notion_filetypes.py ├── utils_rand_id.py ├── utils_static.py └── version.py ├── poetry.lock ├── pyproject.toml └── tests ├── __init__.py ├── cassettes ├── test_bad_token.yaml ├── test_color_text.uuid4.json ├── test_color_text.yaml ├── test_embedded_link.uuid4.json ├── test_embedded_link.yaml ├── test_empty_database_cleanup.uuid4.json ├── test_empty_database_cleanup.yaml ├── test_file_upload.uuid4.json ├── test_file_upload.yaml ├── test_import_root.uuid4.json ├── test_import_root.yaml ├── test_import_root_new.uuid4.json ├── test_import_root_new.yaml ├── test_indented.uuid4.json ├── test_indented.yaml ├── test_notebook_database.uuid4.json ├── test_notebook_database.yaml ├── test_notebook_database_existing.uuid4.json ├── test_notebook_database_existing.yaml ├── test_notebook_database_existing_no_options.uuid4.json ├── test_notebook_database_existing_no_options.yaml ├── test_notebook_database_fail.uuid4.json ├── test_notebook_database_fail.yaml ├── test_notebook_page.uuid4.json ├── test_notebook_page.yaml ├── test_notebook_page_existing.uuid4.json ├── test_notebook_page_existing.yaml ├── test_notebook_page_fail.uuid4.json ├── test_notebook_page_fail.yaml ├── test_resized_image.uuid4.json ├── test_resized_image.yaml ├── test_resized_image_only_width.uuid4.json ├── test_resized_image_only_width.yaml ├── test_table.uuid4.json ├── test_table.yaml ├── test_upload_note.uuid4.json ├── test_upload_note.yaml ├── test_upload_note_db.uuid4.json ├── test_upload_note_db.yaml ├── test_upload_note_fail.uuid4.json ├── test_upload_note_fail.yaml ├── test_upload_note_fail_db.uuid4.json ├── test_upload_note_fail_db.yaml ├── test_upload_note_fail_keep.uuid4.json ├── test_upload_note_fail_keep.yaml ├── test_upload_note_with_file.uuid4.json ├── test_upload_note_with_file.yaml ├── test_upload_note_with_number.uuid4.json └── test_upload_note_with_number.yaml ├── conftest.py ├── test_cli.py ├── test_enex_parser.py ├── test_enex_uploader.py ├── test_note_parser.py ├── test_note_uploader.py ├── test_string_extractor.py ├── test_webclip_parser.py └── test_webclip_parser_pdf.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/.github/ISSUE_TEMPLATE/bug_template.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/clear_cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/.github/workflows/clear_cache.yml -------------------------------------------------------------------------------- /.github/workflows/release_brew.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/.github/workflows/release_brew.yml -------------------------------------------------------------------------------- /.github/workflows/release_containers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/.github/workflows/release_containers.yml -------------------------------------------------------------------------------- /.github/workflows/release_github.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/.github/workflows/release_github.yml -------------------------------------------------------------------------------- /.github/workflows/release_pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/.github/workflows/release_pypi.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.versionrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/.versionrc.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/README.md -------------------------------------------------------------------------------- /enex2notion.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion.spec -------------------------------------------------------------------------------- /enex2notion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /enex2notion/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/__main__.py -------------------------------------------------------------------------------- /enex2notion/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/cli.py -------------------------------------------------------------------------------- /enex2notion/cli_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/cli_args.py -------------------------------------------------------------------------------- /enex2notion/cli_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/cli_logging.py -------------------------------------------------------------------------------- /enex2notion/cli_notion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/cli_notion.py -------------------------------------------------------------------------------- /enex2notion/cli_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/cli_upload.py -------------------------------------------------------------------------------- /enex2notion/cli_wkhtmltopdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/cli_wkhtmltopdf.py -------------------------------------------------------------------------------- /enex2notion/enex_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/enex_parser.py -------------------------------------------------------------------------------- /enex2notion/enex_parser_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/enex_parser_xml.py -------------------------------------------------------------------------------- /enex2notion/enex_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/enex_types.py -------------------------------------------------------------------------------- /enex2notion/enex_uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/enex_uploader.py -------------------------------------------------------------------------------- /enex2notion/enex_uploader_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/enex_uploader_block.py -------------------------------------------------------------------------------- /enex2notion/enex_uploader_modes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/enex_uploader_modes.py -------------------------------------------------------------------------------- /enex2notion/note_parser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /enex2notion/note_parser/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/note_parser/blocks.py -------------------------------------------------------------------------------- /enex2notion/note_parser/blocks_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/note_parser/blocks_helpers.py -------------------------------------------------------------------------------- /enex2notion/note_parser/blocks_indented.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/note_parser/blocks_indented.py -------------------------------------------------------------------------------- /enex2notion/note_parser/elements/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /enex2notion/note_parser/elements/div.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/note_parser/elements/div.py -------------------------------------------------------------------------------- /enex2notion/note_parser/elements/encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/note_parser/elements/encrypt.py -------------------------------------------------------------------------------- /enex2notion/note_parser/elements/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/note_parser/elements/header.py -------------------------------------------------------------------------------- /enex2notion/note_parser/elements/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/note_parser/elements/list.py -------------------------------------------------------------------------------- /enex2notion/note_parser/elements/media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/note_parser/elements/media.py -------------------------------------------------------------------------------- /enex2notion/note_parser/elements/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/note_parser/elements/table.py -------------------------------------------------------------------------------- /enex2notion/note_parser/note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/note_parser/note.py -------------------------------------------------------------------------------- /enex2notion/note_parser/note_post_process_condense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/note_parser/note_post_process_condense.py -------------------------------------------------------------------------------- /enex2notion/note_parser/note_post_process_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/note_parser/note_post_process_resources.py -------------------------------------------------------------------------------- /enex2notion/note_parser/note_type_based.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/note_parser/note_type_based.py -------------------------------------------------------------------------------- /enex2notion/note_parser/string_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/note_parser/string_extractor.py -------------------------------------------------------------------------------- /enex2notion/note_parser/string_extractor_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/note_parser/string_extractor_properties.py -------------------------------------------------------------------------------- /enex2notion/note_parser/string_extractor_split_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/note_parser/string_extractor_split_tag.py -------------------------------------------------------------------------------- /enex2notion/note_parser/webclip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/note_parser/webclip.py -------------------------------------------------------------------------------- /enex2notion/note_parser/webclip_pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/note_parser/webclip_pdf.py -------------------------------------------------------------------------------- /enex2notion/note_parser/webclip_stages_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/note_parser/webclip_stages_cleanup.py -------------------------------------------------------------------------------- /enex2notion/note_parser/webclip_stages_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/note_parser/webclip_stages_common.py -------------------------------------------------------------------------------- /enex2notion/note_parser/webclip_stages_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/note_parser/webclip_stages_convert.py -------------------------------------------------------------------------------- /enex2notion/note_parser/webclip_stages_flatten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/note_parser/webclip_stages_flatten.py -------------------------------------------------------------------------------- /enex2notion/note_parser/webclip_stages_preparation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/note_parser/webclip_stages_preparation.py -------------------------------------------------------------------------------- /enex2notion/notion_blocks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /enex2notion/notion_blocks/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/notion_blocks/base.py -------------------------------------------------------------------------------- /enex2notion/notion_blocks/container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/notion_blocks/container.py -------------------------------------------------------------------------------- /enex2notion/notion_blocks/embeddable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/notion_blocks/embeddable.py -------------------------------------------------------------------------------- /enex2notion/notion_blocks/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/notion_blocks/header.py -------------------------------------------------------------------------------- /enex2notion/notion_blocks/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/notion_blocks/list.py -------------------------------------------------------------------------------- /enex2notion/notion_blocks/minor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/notion_blocks/minor.py -------------------------------------------------------------------------------- /enex2notion/notion_blocks/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/notion_blocks/table.py -------------------------------------------------------------------------------- /enex2notion/notion_blocks/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/notion_blocks/text.py -------------------------------------------------------------------------------- /enex2notion/notion_blocks/uploadable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/notion_blocks/uploadable.py -------------------------------------------------------------------------------- /enex2notion/utils_colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/utils_colors.py -------------------------------------------------------------------------------- /enex2notion/utils_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/utils_exceptions.py -------------------------------------------------------------------------------- /enex2notion/utils_notion_filetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/utils_notion_filetypes.py -------------------------------------------------------------------------------- /enex2notion/utils_rand_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/utils_rand_id.py -------------------------------------------------------------------------------- /enex2notion/utils_static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/enex2notion/utils_static.py -------------------------------------------------------------------------------- /enex2notion/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.3.1" 2 | -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cassettes/test_bad_token.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_bad_token.yaml -------------------------------------------------------------------------------- /tests/cassettes/test_color_text.uuid4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_color_text.uuid4.json -------------------------------------------------------------------------------- /tests/cassettes/test_color_text.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_color_text.yaml -------------------------------------------------------------------------------- /tests/cassettes/test_embedded_link.uuid4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_embedded_link.uuid4.json -------------------------------------------------------------------------------- /tests/cassettes/test_embedded_link.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_embedded_link.yaml -------------------------------------------------------------------------------- /tests/cassettes/test_empty_database_cleanup.uuid4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_empty_database_cleanup.uuid4.json -------------------------------------------------------------------------------- /tests/cassettes/test_empty_database_cleanup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_empty_database_cleanup.yaml -------------------------------------------------------------------------------- /tests/cassettes/test_file_upload.uuid4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_file_upload.uuid4.json -------------------------------------------------------------------------------- /tests/cassettes/test_file_upload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_file_upload.yaml -------------------------------------------------------------------------------- /tests/cassettes/test_import_root.uuid4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_import_root.uuid4.json -------------------------------------------------------------------------------- /tests/cassettes/test_import_root.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_import_root.yaml -------------------------------------------------------------------------------- /tests/cassettes/test_import_root_new.uuid4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_import_root_new.uuid4.json -------------------------------------------------------------------------------- /tests/cassettes/test_import_root_new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_import_root_new.yaml -------------------------------------------------------------------------------- /tests/cassettes/test_indented.uuid4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_indented.uuid4.json -------------------------------------------------------------------------------- /tests/cassettes/test_indented.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_indented.yaml -------------------------------------------------------------------------------- /tests/cassettes/test_notebook_database.uuid4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_notebook_database.uuid4.json -------------------------------------------------------------------------------- /tests/cassettes/test_notebook_database.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_notebook_database.yaml -------------------------------------------------------------------------------- /tests/cassettes/test_notebook_database_existing.uuid4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_notebook_database_existing.uuid4.json -------------------------------------------------------------------------------- /tests/cassettes/test_notebook_database_existing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_notebook_database_existing.yaml -------------------------------------------------------------------------------- /tests/cassettes/test_notebook_database_existing_no_options.uuid4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_notebook_database_existing_no_options.uuid4.json -------------------------------------------------------------------------------- /tests/cassettes/test_notebook_database_existing_no_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_notebook_database_existing_no_options.yaml -------------------------------------------------------------------------------- /tests/cassettes/test_notebook_database_fail.uuid4.json: -------------------------------------------------------------------------------- 1 | ["d985ce90-074c-4dd1-8269-69e24ebb2e77"] 2 | -------------------------------------------------------------------------------- /tests/cassettes/test_notebook_database_fail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_notebook_database_fail.yaml -------------------------------------------------------------------------------- /tests/cassettes/test_notebook_page.uuid4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_notebook_page.uuid4.json -------------------------------------------------------------------------------- /tests/cassettes/test_notebook_page.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_notebook_page.yaml -------------------------------------------------------------------------------- /tests/cassettes/test_notebook_page_existing.uuid4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_notebook_page_existing.uuid4.json -------------------------------------------------------------------------------- /tests/cassettes/test_notebook_page_existing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_notebook_page_existing.yaml -------------------------------------------------------------------------------- /tests/cassettes/test_notebook_page_fail.uuid4.json: -------------------------------------------------------------------------------- 1 | ["52985497-0015-4781-801b-53d7032030f4"] 2 | -------------------------------------------------------------------------------- /tests/cassettes/test_notebook_page_fail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_notebook_page_fail.yaml -------------------------------------------------------------------------------- /tests/cassettes/test_resized_image.uuid4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_resized_image.uuid4.json -------------------------------------------------------------------------------- /tests/cassettes/test_resized_image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_resized_image.yaml -------------------------------------------------------------------------------- /tests/cassettes/test_resized_image_only_width.uuid4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_resized_image_only_width.uuid4.json -------------------------------------------------------------------------------- /tests/cassettes/test_resized_image_only_width.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_resized_image_only_width.yaml -------------------------------------------------------------------------------- /tests/cassettes/test_table.uuid4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_table.uuid4.json -------------------------------------------------------------------------------- /tests/cassettes/test_table.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_table.yaml -------------------------------------------------------------------------------- /tests/cassettes/test_upload_note.uuid4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_upload_note.uuid4.json -------------------------------------------------------------------------------- /tests/cassettes/test_upload_note.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_upload_note.yaml -------------------------------------------------------------------------------- /tests/cassettes/test_upload_note_db.uuid4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_upload_note_db.uuid4.json -------------------------------------------------------------------------------- /tests/cassettes/test_upload_note_db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_upload_note_db.yaml -------------------------------------------------------------------------------- /tests/cassettes/test_upload_note_fail.uuid4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_upload_note_fail.uuid4.json -------------------------------------------------------------------------------- /tests/cassettes/test_upload_note_fail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_upload_note_fail.yaml -------------------------------------------------------------------------------- /tests/cassettes/test_upload_note_fail_db.uuid4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_upload_note_fail_db.uuid4.json -------------------------------------------------------------------------------- /tests/cassettes/test_upload_note_fail_db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_upload_note_fail_db.yaml -------------------------------------------------------------------------------- /tests/cassettes/test_upload_note_fail_keep.uuid4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_upload_note_fail_keep.uuid4.json -------------------------------------------------------------------------------- /tests/cassettes/test_upload_note_fail_keep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_upload_note_fail_keep.yaml -------------------------------------------------------------------------------- /tests/cassettes/test_upload_note_with_file.uuid4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_upload_note_with_file.uuid4.json -------------------------------------------------------------------------------- /tests/cassettes/test_upload_note_with_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_upload_note_with_file.yaml -------------------------------------------------------------------------------- /tests/cassettes/test_upload_note_with_number.uuid4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_upload_note_with_number.uuid4.json -------------------------------------------------------------------------------- /tests/cassettes/test_upload_note_with_number.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/cassettes/test_upload_note_with_number.yaml -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_enex_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/test_enex_parser.py -------------------------------------------------------------------------------- /tests/test_enex_uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/test_enex_uploader.py -------------------------------------------------------------------------------- /tests/test_note_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/test_note_parser.py -------------------------------------------------------------------------------- /tests/test_note_uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/test_note_uploader.py -------------------------------------------------------------------------------- /tests/test_string_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/test_string_extractor.py -------------------------------------------------------------------------------- /tests/test_webclip_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/test_webclip_parser.py -------------------------------------------------------------------------------- /tests/test_webclip_parser_pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vzhd1701/enex2notion/HEAD/tests/test_webclip_parser_pdf.py --------------------------------------------------------------------------------