Skip to content

Commit

Permalink
Change project name
Browse files Browse the repository at this point in the history
  • Loading branch information
duydq12 committed Jun 3, 2024
1 parent 2638da9 commit 35003f2
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 20 deletions.
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
# Python File Helper
# Python Data Helper

[![Testing](https://github.com/rabiloo/python-file-helper/actions/workflows/test.yml/badge.svg)](https://github.com/rabiloo/python-file-helper/actions/workflows/test.yml)
[![Latest Version](https://img.shields.io/pypi/v/file-helper.svg)](https://pypi.org/project/file-helper)
[![Downloads](https://img.shields.io/pypi/dm/file-helper.svg)](https://pypi.org/project/file-helper)
[![Pypi Status](https://img.shields.io/pypi/status/file-helper.svg)](https://pypi.org/project/file-helper)
[![Python Versions](https://img.shields.io/pypi/pyversions/file-helper.svg)](https://pypi.org/project/file-helper)
[![Testing](https://github.com/rabiloo/python-data-helper/actions/workflows/test.yml/badge.svg)](https://github.com/rabiloo/python-data-helper/actions/workflows/test.yml)
[![Latest Version](https://img.shields.io/pypi/v/data-helper.svg)](https://pypi.org/project/data-helper)
[![Downloads](https://img.shields.io/pypi/dm/data-helper.svg)](https://pypi.org/project/data-helper)
[![Pypi Status](https://img.shields.io/pypi/status/data-helper.svg)](https://pypi.org/project/data-helper)
[![Python Versions](https://img.shields.io/pypi/pyversions/data-helper.svg)](https://pypi.org/project/data-helper)

## About File Helper
## About Data Helper

[File Helper](https://github.com/rabiloo/python-file-helper) is a set of support functions when dealing with files
[Data Helper](https://github.com/rabiloo/python-data-helper) is a set of support functions when dealing with files

## Install

```
$ pip install file-helper
$ pip install data-helper
```

## Usage

```
from file_helper import file
from file_helper import path
from file_helper import image
from file_helper import compare_content
from data_helper import file
from data_helper import path
from data_helper import image
from data_helper import compare_content
print(compare_content.compare_file(src_file, dest_file))
Expand Down
11 changes: 5 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ build-backend = "setuptools.build_meta"


[project]
name = "file-helper"
name = "datas-helper"
version = "0.0.1"
description = "Set of support functions when working with some data files"
readme = "README.md"
keywords = [ "file-helper", "json", "csv", "tar", "gzip","opencv", "Pillow" ]
keywords = [ "data-helper", "json", "csv", "tar", "gzip", "opencv", "Pillow" ]
authors = [
{ name = "Dao Quang Duy", email = "[email protected]" },
]
Expand All @@ -24,7 +24,6 @@ classifiers = [
"Development Status :: 2 - Pre-Alpha",
]
dependencies = [
"tqdm",
]

[project.optional-dependencies]
Expand All @@ -43,9 +42,9 @@ image = [
]

[project.urls]
"Homepage" = "https://github.com/rabiloo/python-file-helper"
"Repository" = "https://github.com/rabiloo/python-file-helper"
"Bug Tracker" = "https://github.com/rabiloo/python-file-helper/issues"
"Homepage" = "https://github.com/rabiloo/python-data-helper"
"Repository" = "https://github.com/rabiloo/python-data-helper"
"Bug Tracker" = "https://github.com/rabiloo/python-data-helper/issues"


[tool.flake8]
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/test_path.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import pytest

from file_helper import path
from data_helper import path


@pytest.mark.parametrize(
Expand Down

0 comments on commit 35003f2

Please sign in to comment.