├── .github ├── FUNDING.yml ├── release-drafter.yml └── workflows │ ├── constraints.txt │ ├── release.yml │ └── tests.yml ├── .gitignore ├── Jupyter to Medium Initial Post.ipynb ├── LICENSE ├── README.md ├── docs ├── css │ └── style.css ├── images │ ├── covid.gif │ ├── covid19.gif │ ├── form.png │ ├── integration_token.png │ ├── menu_option.png │ ├── post.png │ ├── social_share.png │ ├── social_share_small.png │ ├── success.png │ └── table_conversion.png ├── index.md ├── overrides │ └── main.html ├── requirements.txt └── whats_new.md ├── jupyter-config └── nbconfig │ └── notebook.d │ └── jupyter_to_medium.json ├── mkdocs.yml ├── noxfile.py ├── poetry.lock ├── poetry.toml ├── pyproject.toml ├── src └── jupyter_to_medium │ ├── __init__.py │ ├── _bundler.py │ ├── _command_line.py │ ├── _latex.py │ ├── _matplotlib_table.py │ ├── _postprocessors.py │ ├── _preprocesors.py │ ├── _publish_to_medium.py │ ├── _screenshot.py │ └── static │ ├── fail.html │ ├── form.html │ ├── style.css │ ├── success.html │ └── waiting.html └── tests ├── __init__.py ├── notebooks ├── Latex Support.ipynb ├── Test Empty Matplotlib Screenshot.ipynb ├── Test Gistify Markdown.ipynb ├── Test Image Creation.ipynb ├── Test Latex.ipynb ├── Test Medium Blog Post.ipynb ├── data │ └── covid19.csv └── media │ ├── covid19.gif │ ├── large.png │ └── ss.png └── test_post.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ['https://www.dunderdata.com'] 2 | -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/constraints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/.github/workflows/constraints.txt -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/.gitignore -------------------------------------------------------------------------------- /Jupyter to Medium Initial Post.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/Jupyter to Medium Initial Post.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/README.md -------------------------------------------------------------------------------- /docs/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/docs/css/style.css -------------------------------------------------------------------------------- /docs/images/covid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/docs/images/covid.gif -------------------------------------------------------------------------------- /docs/images/covid19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/docs/images/covid19.gif -------------------------------------------------------------------------------- /docs/images/form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/docs/images/form.png -------------------------------------------------------------------------------- /docs/images/integration_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/docs/images/integration_token.png -------------------------------------------------------------------------------- /docs/images/menu_option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/docs/images/menu_option.png -------------------------------------------------------------------------------- /docs/images/post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/docs/images/post.png -------------------------------------------------------------------------------- /docs/images/social_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/docs/images/social_share.png -------------------------------------------------------------------------------- /docs/images/social_share_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/docs/images/social_share_small.png -------------------------------------------------------------------------------- /docs/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/docs/images/success.png -------------------------------------------------------------------------------- /docs/images/table_conversion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/docs/images/table_conversion.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/overrides/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/docs/overrides/main.html -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/whats_new.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/docs/whats_new.md -------------------------------------------------------------------------------- /jupyter-config/nbconfig/notebook.d/jupyter_to_medium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/jupyter-config/nbconfig/notebook.d/jupyter_to_medium.json -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/noxfile.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/poetry.lock -------------------------------------------------------------------------------- /poetry.toml: -------------------------------------------------------------------------------- 1 | [virtualenvs] 2 | in-project = true 3 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/jupyter_to_medium/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/src/jupyter_to_medium/__init__.py -------------------------------------------------------------------------------- /src/jupyter_to_medium/_bundler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/src/jupyter_to_medium/_bundler.py -------------------------------------------------------------------------------- /src/jupyter_to_medium/_command_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/src/jupyter_to_medium/_command_line.py -------------------------------------------------------------------------------- /src/jupyter_to_medium/_latex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/src/jupyter_to_medium/_latex.py -------------------------------------------------------------------------------- /src/jupyter_to_medium/_matplotlib_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/src/jupyter_to_medium/_matplotlib_table.py -------------------------------------------------------------------------------- /src/jupyter_to_medium/_postprocessors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/src/jupyter_to_medium/_postprocessors.py -------------------------------------------------------------------------------- /src/jupyter_to_medium/_preprocesors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/src/jupyter_to_medium/_preprocesors.py -------------------------------------------------------------------------------- /src/jupyter_to_medium/_publish_to_medium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/src/jupyter_to_medium/_publish_to_medium.py -------------------------------------------------------------------------------- /src/jupyter_to_medium/_screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/src/jupyter_to_medium/_screenshot.py -------------------------------------------------------------------------------- /src/jupyter_to_medium/static/fail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/src/jupyter_to_medium/static/fail.html -------------------------------------------------------------------------------- /src/jupyter_to_medium/static/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/src/jupyter_to_medium/static/form.html -------------------------------------------------------------------------------- /src/jupyter_to_medium/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/src/jupyter_to_medium/static/style.css -------------------------------------------------------------------------------- /src/jupyter_to_medium/static/success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/src/jupyter_to_medium/static/success.html -------------------------------------------------------------------------------- /src/jupyter_to_medium/static/waiting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/src/jupyter_to_medium/static/waiting.html -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for jupyter_to_medium""" 2 | -------------------------------------------------------------------------------- /tests/notebooks/Latex Support.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/tests/notebooks/Latex Support.ipynb -------------------------------------------------------------------------------- /tests/notebooks/Test Empty Matplotlib Screenshot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/tests/notebooks/Test Empty Matplotlib Screenshot.ipynb -------------------------------------------------------------------------------- /tests/notebooks/Test Gistify Markdown.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/tests/notebooks/Test Gistify Markdown.ipynb -------------------------------------------------------------------------------- /tests/notebooks/Test Image Creation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/tests/notebooks/Test Image Creation.ipynb -------------------------------------------------------------------------------- /tests/notebooks/Test Latex.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/tests/notebooks/Test Latex.ipynb -------------------------------------------------------------------------------- /tests/notebooks/Test Medium Blog Post.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/tests/notebooks/Test Medium Blog Post.ipynb -------------------------------------------------------------------------------- /tests/notebooks/data/covid19.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/tests/notebooks/data/covid19.csv -------------------------------------------------------------------------------- /tests/notebooks/media/covid19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/tests/notebooks/media/covid19.gif -------------------------------------------------------------------------------- /tests/notebooks/media/large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/tests/notebooks/media/large.png -------------------------------------------------------------------------------- /tests/notebooks/media/ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/tests/notebooks/media/ss.png -------------------------------------------------------------------------------- /tests/test_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexplo/jupyter_to_medium/HEAD/tests/test_post.py --------------------------------------------------------------------------------