Skip to content

create files which formats are like "orc", "parquet", "xlsx", "json" and so on with Python

Notifications You must be signed in to change notification settings

Yo-mah-Ya/File_Creator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

poetry config --local --list
poetry config --local virtualenvs.in-project true

check virtual environment is activated

poetry env list
  1. second

create pyproject.toml

poetry init
  1. third

add packages

poetry add --dev pytest autopep8 flake8
poetry add pandas
  1. test
# run with coverage
poetry run pytest -v --cov=tests --cov-branch
# run withou coverage
poetry run pytest -vv

About

create files which formats are like "orc", "parquet", "xlsx", "json" and so on with Python

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published