https://github.com/yo-mah-ya/file_creator
create files which formats are like "orc", "parquet", "xlsx", "json" and so on with Python
https://github.com/yo-mah-ya/file_creator
orcfile pandas parquet parquet-files python3
Last synced: 7 months ago
JSON representation
create files which formats are like "orc", "parquet", "xlsx", "json" and so on with Python
- Host: GitHub
- URL: https://github.com/yo-mah-ya/file_creator
- Owner: Yo-mah-Ya
- Created: 2021-12-25T08:21:28.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2023-10-04T19:48:02.000Z (about 2 years ago)
- Last Synced: 2025-01-21T14:25:34.827Z (9 months ago)
- Topics: orcfile, pandas, parquet, parquet-files, python3
- Language: Python
- Homepage:
- Size: 25.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# create a specified format file by a specified file
### set up poetry
1. first
Create virtual environment which means that you create .venv folder under the project directory.
```shell
poetry config --local --list
poetry config --local virtualenvs.in-project true
```check virtual environment is activated
```shell
poetry env list
```2. second
create `pyproject.toml`
```
poetry init
```3. third
add packages
```shell
poetry add --dev pytest autopep8 flake8
poetry add pandas
```4. test
```shell
# run with coverage
poetry run pytest -v --cov=tests --cov-branch
# run withou coverage
poetry run pytest -vv
```