Metadata-Version: 2.1
Name: exmc
Version: 0.0.3
Summary: Excel Markdown Converter
Home-page: https://github.com/idlewith/exmc
License: MIT
Author: idlewith
Author-email: newellzhou@163.com
Requires-Python: >=3.7,<4.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Dist: clipboard (>=0.0.4,<0.0.5)
Project-URL: Changelog, https://github.com/idlewith/exmc/releases
Project-URL: Documentation, https://exmc.readthedocs.io
Project-URL: Repository, https://github.com/idlewith/exmc
Description-Content-Type: text/markdown

# Excel Markdown Converter

[![PyPI](https://img.shields.io/pypi/v/exmc.svg)][pypi status]
[![Status](https://img.shields.io/pypi/status/exmc.svg)][pypi status]
[![Python Version](https://img.shields.io/pypi/pyversions/exmc)][pypi status]
[![License](https://img.shields.io/pypi/l/exmc)][license]

[![Read the documentation at https://exmc.readthedocs.io/](https://img.shields.io/readthedocs/exmc/latest.svg?label=Read%20the%20Docs)][read the docs]
[![Tests](https://github.com/idlewith/exmc/workflows/Tests/badge.svg)][tests]

[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)][pre-commit]
[![Black](https://img.shields.io/badge/code%20style-black-000000.svg)][black]

[pypi status]: https://pypi.org/project/exmc/
[read the docs]: https://exmc.readthedocs.io/
[tests]: https://github.com/idlewith/exmc/actions?workflow=Tests
[codecov]: https://app.codecov.io/gh/idlewith/exmc
[pre-commit]: https://github.com/pre-commit/pre-commit
[black]: https://github.com/psf/black

## Features

- copy excel content from clipboard, so you need paste excel content to clipboard
- type `exmc` to convert excel string to markdown table string
- type `exmc -r` convert markdown table string to excel string

## Requirements

- `clipboard`

## Installation

You can install _Excel Markdown Converter_ via [pip] from [PyPI]:

```console
$ pip install exmc
```

## Usage

demo video below

https://user-images.githubusercontent.com/61551277/215328281-79cb339f-8d92-4c11-91a3-a6ba54642c24.mp4

the details below

- `exmc`

copy content from excel sheet

type `exmc` in terminal/cmd,

then markdown table string will copy to clipboard automatically

so you can paste in markdown file

- `exmc -r`

-r stands for reverse

use `-r` flag convert markdown table string to excel string

so, you need copy raw markdown table string

then paste to excel file

## Contributing

Contributions are very welcome.
To learn more, see the [Contributor Guide].

## License

Distributed under the terms of the [MIT license][license],
_Excel Markdown Converter_ is free and open source software.

## Issues

If you encounter any problems,
please [file an issue] along with a detailed description.

## Credits

This project was generated from [@cjolowicz]'s [Hypermodern Python Cookiecutter] template.

[@cjolowicz]: https://github.com/cjolowicz
[pypi]: https://pypi.org/
[hypermodern python cookiecutter]: https://github.com/cjolowicz/cookiecutter-hypermodern-python
[file an issue]: https://github.com/idlewith/exmc/issues
[pip]: https://pip.pypa.io/

<!-- github-only -->

[license]: https://github.com/idlewith/exmc/blob/main/LICENSE
[contributor guide]: https://github.com/idlewith/exmc/blob/main/CONTRIBUTING.md
[command-line reference]: https://exmc.readthedocs.io/en/latest/usage.html

