Python tool for importing and validating data from xlsx/xls/csv files.
Project description
import me
Python tool for importing and validating data from xlsx/xls/csv files.
Example
from import_me import BaseXLSXParser, Column
>>> class XLSXParser(BaseXLSXParser):
... columns = [
... Column('first_name', index=0, header='First Name'),
... Column('last_name', index=1, header='Last Name'),
... ]
>>> parser = XLSXParser(file_path=xlsx_filepath)
>>> parser()
>>> print(parser.has_errors) # False
>>> pprint(parser.cleaned_data)
[
{
'first_name': 'Ivan',
'last_name': 'Ivanov',
'row_index': 1,
},
{
'first_name': 'Petr',
'last_name': 'Petrov',
'row_index': 2,
},
]
Installation
pip install import_me
Contributing
We would love you to contribute to our project. It's simple:
- Create an issue with bug you found or proposal you have. Wait for approve from maintainer.
- Create a pull request. Make sure all checks are green.
- Fix review comments if any.
- Be awesome.
Here are useful tips:
- You can run all checks and tests with
make check
. Please do it before TravisCI does. - We use BestDoctor python styleguide.
- We respect Django CoC. Make soft, not bullshit.
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
import_me-0.0.2.tar.gz
(10.7 kB
view details)
File details
Details for the file import_me-0.0.2.tar.gz
.
File metadata
- Download URL: import_me-0.0.2.tar.gz
- Upload date:
- Size: 10.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
7fbc84158305e384ee46bafaabe2f5264f1896f974be324e3cbbc15abea4195c
|
|
MD5 |
d003cdb4360094bf2bff30637826e154
|
|
BLAKE2b-256 |
a7852988f20b9cc97b678c3f4bdeed671fa122529c98beaefc3910284dc1607f
|