pyfilehandling


Namepyfilehandling JSON
Version 3.2.0 PyPI version JSON
download
home_pagehttps://jeeldobariya38.github.io/PyFileHandling/
SummaryA Python package for file manipulation operations.
upload_time2023-11-11 14:40:44
maintainer
docs_urlNone
authorJeel Dobariya
requires_python>=3.9,<4.0
licenseMIT
keywords file handling file manipulation file operation utility
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # PyFileHandling - Streamlining Pythonic File Operations
[![Run-Tests](https://github.com/JeelDobariya38/PyFileHandling/actions/workflows/Run-Tests.yaml/badge.svg)](https://github.com/JeelDobariya38/PyFileHandling/actions/workflows/Run-Tests.yaml) [![Publish Package To PyPi](https://github.com/JeelDobariya38/PyFileHandling/actions/workflows/publish.yaml/badge.svg?branch=main)](https://github.com/JeelDobariya38/PyFileHandling/actions/workflows/publish.yaml)

## Overview
PyFileHandling is a Python package designed to simplify file handling operations. Whether you need to create, modify, or read files, this package offers an array of convenient functions to streamline your file manipulation tasks.

## Features
- **File Creation**: Easily create files at specified paths.
- **Directory Manipulation**: Create, remove directories, and manage file structures.
- **File Writing**: Write data to files with options for overwriting or appending.
- **File Reading**: Read file contents, individual lines, or use generators to efficiently handle large files.
- **Tested and Reliable**: Thoroughly tested with a focus on robustness and reliability.

## Installation
You can install PyFileHandling using pip:

```shell
pip install pyfilehandling
```

## Getting Started
For detailed usage instructions, consult the [PyFileHandling Documentation](https://jeeldobariya38.github.io/PyFileHandling/).

Here's a quick start with some common use cases:

```python
import pyfilehandling

# Create a directory
pyfilehandling.fileio.create_dir("my_directory")

# Write data to a file
pyfilehandling.write("my_file.txt", "Hello, PyFileHandling!")

# Read file content
content = pyfilehandling.read("my_file.txt")
print(content)
```

## Contributing
Contributions are welcome! To contribute to PyFileHandling, please read the [Contribution Guidelines](CONTRIBUTING.md). We appreciate your help in making this package even better.

## Code of Conduct
We strive to maintain a positive and inclusive community. We encourage everyone participating in PyFileHandling to read and adhere to the [Code of Conduct](CODE_OF_CONDUCT.md). It's essential for creating a welcoming and collaborative environment.

## License
By contributing to `PyFileHandling`, you agree that your contributions will be licensed under the [MIT License](LICENSE.txt). Make sure you understand and agree with this before submitting your contributions.

            

Raw data

            {
    "_id": null,
    "home_page": "https://jeeldobariya38.github.io/PyFileHandling/",
    "name": "pyfilehandling",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.9,<4.0",
    "maintainer_email": "",
    "keywords": "file handling,file manipulation,file operation,utility",
    "author": "Jeel Dobariya",
    "author_email": "dobariyaj34@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/d9/46/df3193012f3ab08441ecdfc01a638a13897bee9ef0f74ffcbde7073cb709/pyfilehandling-3.2.0.tar.gz",
    "platform": null,
    "description": "# PyFileHandling - Streamlining Pythonic File Operations\n[![Run-Tests](https://github.com/JeelDobariya38/PyFileHandling/actions/workflows/Run-Tests.yaml/badge.svg)](https://github.com/JeelDobariya38/PyFileHandling/actions/workflows/Run-Tests.yaml) [![Publish Package To PyPi](https://github.com/JeelDobariya38/PyFileHandling/actions/workflows/publish.yaml/badge.svg?branch=main)](https://github.com/JeelDobariya38/PyFileHandling/actions/workflows/publish.yaml)\n\n## Overview\nPyFileHandling is a Python package designed to simplify file handling operations. Whether you need to create, modify, or read files, this package offers an array of convenient functions to streamline your file manipulation tasks.\n\n## Features\n- **File Creation**: Easily create files at specified paths.\n- **Directory Manipulation**: Create, remove directories, and manage file structures.\n- **File Writing**: Write data to files with options for overwriting or appending.\n- **File Reading**: Read file contents, individual lines, or use generators to efficiently handle large files.\n- **Tested and Reliable**: Thoroughly tested with a focus on robustness and reliability.\n\n## Installation\nYou can install PyFileHandling using pip:\n\n```shell\npip install pyfilehandling\n```\n\n## Getting Started\nFor detailed usage instructions, consult the [PyFileHandling Documentation](https://jeeldobariya38.github.io/PyFileHandling/).\n\nHere's a quick start with some common use cases:\n\n```python\nimport pyfilehandling\n\n# Create a directory\npyfilehandling.fileio.create_dir(\"my_directory\")\n\n# Write data to a file\npyfilehandling.write(\"my_file.txt\", \"Hello, PyFileHandling!\")\n\n# Read file content\ncontent = pyfilehandling.read(\"my_file.txt\")\nprint(content)\n```\n\n## Contributing\nContributions are welcome! To contribute to PyFileHandling, please read the [Contribution Guidelines](CONTRIBUTING.md). We appreciate your help in making this package even better.\n\n## Code of Conduct\nWe strive to maintain a positive and inclusive community. We encourage everyone participating in PyFileHandling to read and adhere to the [Code of Conduct](CODE_OF_CONDUCT.md). It's essential for creating a welcoming and collaborative environment.\n\n## License\nBy contributing to `PyFileHandling`, you agree that your contributions will be licensed under the [MIT License](LICENSE.txt). Make sure you understand and agree with this before submitting your contributions.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A Python package for file manipulation operations.",
    "version": "3.2.0",
    "project_urls": {
        "Bug Tracker": "https://github.com/JeelDobariya38/PyFileHandling/issues",
        "Documentation": "https://jeeldobariya38.github.io/PyFileHandling/pyfilehandling.html",
        "Homepage": "https://jeeldobariya38.github.io/PyFileHandling/",
        "Repository": "https://github.com/JeelDobariya38/PyFileHandling"
    },
    "split_keywords": [
        "file handling",
        "file manipulation",
        "file operation",
        "utility"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2cfca6bb955d622bf9cf24aed0213cb20dd737a2be2b65ac790fabc8d8b179ca",
                "md5": "15fbdcaaf094a1d2dd3c59b280887ad0",
                "sha256": "677d6ac48cb9557faf8c382d026d094ecf2416367fa956f59c937a075c0ddf2b"
            },
            "downloads": -1,
            "filename": "pyfilehandling-3.2.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "15fbdcaaf094a1d2dd3c59b280887ad0",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9,<4.0",
            "size": 5319,
            "upload_time": "2023-11-11T14:40:42",
            "upload_time_iso_8601": "2023-11-11T14:40:42.951397Z",
            "url": "https://files.pythonhosted.org/packages/2c/fc/a6bb955d622bf9cf24aed0213cb20dd737a2be2b65ac790fabc8d8b179ca/pyfilehandling-3.2.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d946df3193012f3ab08441ecdfc01a638a13897bee9ef0f74ffcbde7073cb709",
                "md5": "f1f123500dc651e5435735c06ad8da3f",
                "sha256": "e2a199e4ef8ddc4a040c405bd6e9fc8dc42849168c1fa21f68a010f3799ba2d3"
            },
            "downloads": -1,
            "filename": "pyfilehandling-3.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "f1f123500dc651e5435735c06ad8da3f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9,<4.0",
            "size": 4349,
            "upload_time": "2023-11-11T14:40:44",
            "upload_time_iso_8601": "2023-11-11T14:40:44.856316Z",
            "url": "https://files.pythonhosted.org/packages/d9/46/df3193012f3ab08441ecdfc01a638a13897bee9ef0f74ffcbde7073cb709/pyfilehandling-3.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-11 14:40:44",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "JeelDobariya38",
    "github_project": "PyFileHandling",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pyfilehandling"
}
        
Elapsed time: 0.13767s