convert guided form excel to text data by template base
Project description
What’s This?
Pycgettb is convert guided form excel files to text data. No special programming is required.
First, prepare the same xlsx format of the data and the template, to define the text data using the jinja2-based template.
This command/library is currently alpha version
Recommended to use it in virtual environment.
Dependencies
Install
Using pip
# Example, Using Python3 venv module. $ python3 -m venv env $ source env/bin/activate (env)$ pip install pycgettb
Using by Github
$ git clone https://github.com/hrsano645/pycgettb.git $ cd pycgettb # Example, Using Python3 venv module. $ python3 -m venv env $ source env/bin/activate (env)$ pip install -r requirements.txt
Command Usage
(env)$ pycgettbcli --help Usage: pycgettbcli [OPTIONS] SRC_TEMPLATE SRC_DATA EXPORT_TEMPLATE Options: --export_filename TEXT Set export filename --help Show this message and exit.
–export_filename: If not specified, create a file named exported_data.txt.
How To Use
When using pycgettb, prepare three files. The sample file is ./tests/testfiles/.
Source Data: An xlsx file containing the data.
Source Template: An xlsx file with embedded template variables. Make the same worksheet and cell layout of the source data file.
Export Template: The jinja2 template file (html, json, csv, etc…)
※:The jinja2 template currently supports variables only.
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="UTF-8"> <title>{{ title }}</title> </head> <body> <h1>{{ title }}</h1> <table> <tr> <td>date</td> <td>name</td> <td>note</td> </tr> <tr> <td>{{ date_1 }}</td> <td>{{ name_1 }}</td> <td>{{ note_1 }}</td> </tr> <tr> <td>{{ date_2 }}</td> <td>{{ name_2 }}</td> <td>{{ note_2 }}</td> </tr> </table> </body> </html>
Template files(source template, export template) must be the same template variable name. Based on that convert to text data using jinja2.
(env)$ pycgettbcli ./tests/testfiles/template.xlsx ./tests/testfiles/data.xlsx ./tests/testfiles/export_template.html
Converted result. Default file name is exported_data.txt
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="UTF-8"> <title>Example Title</title> </head> <body> <h1>Example Title</h1> <table> <tr> <td>date</td> <td>name</td> <td>note</td> </tr> <tr> <td>2017-01-01 00:00:00</td> <td>suzuki</td> <td>日本語テスト</td> </tr> <tr> <td>2017-01-02 00:00:00</td> <td>sato</td> <td>None</td> </tr> </table> </body> </html>
Using as a Library
pycgettb can also be used as a library.
from pycgettb import Source from pycgettb import TextRender # set file path src_template = "[source template file path]" src_data = "[source data file path]" export_template = "[export template file path]" # define export filename export_filename = "exported_file.txt" source = Source(src_template, src_data) source_data_map = source.parse() textrender = TextRender(export_template, source_data_map) # write rendreing textdata with open(export_filename, "w") as export_file: export_file.write(textrender.render())
Future Work
Building a command binary for Windows, macOS, Linux.
Add list type to source template variable
GUI Frontend
API Document
License
MIT License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pycgettb-0.1.2.tar.gz
.
File metadata
- Download URL: pycgettb-0.1.2.tar.gz
- Upload date:
- Size: 85.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1c9ed848c1e9650e97aacb752efe2819f7a82f015d081dac6abfa0408ed8c41a |
|
MD5 | 9f4740636d4acc56062392654d8fdfae |
|
BLAKE2b-256 | d8954e40a2af57a83aff7a6517114e59137f1bb1770f51d97abb3307a905fdf6 |
File details
Details for the file pycgettb-0.1.2-py2.py3-none-any.whl
.
File metadata
- Download URL: pycgettb-0.1.2-py2.py3-none-any.whl
- Upload date:
- Size: 9.5 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 48e7dc1006372fb632a4ade68e273619d2b3f22c082e02312d023b8097b332f5 |
|
MD5 | ce783936719cd677d0f5fecc7fcf7cac |
|
BLAKE2b-256 | 5aaff8784e9ba4508f18fae6c0dae72b442ad7f05793ca2990a47c859d57940c |