Skip to main content

Easytexts: Simplified text management for quick projects

Project description

Easytexts: A Simple File Handler for Python

Install Easytexts using pip:

pip install Easytexts

Usage:

Import the easytexts module:

from Easytexts import *

Writing and Appending:

append(file, text, newline=True, log=False): Appends text to a file, optionally adding a newline and logging the action. Example:

append(“my_file.txt”, “This is a new line.”) # Optional: Log the action append(“my_file.txt”, “Another line!”, log=True)

clear(file, text, replacement, log=False): Overwrites the entire content of a file with new text (replacement), optionally logging the action. Example:

clear(“my_file.txt”, “This is the new content.n”)

cide(file, text, log=False): Creates a new file and writes text to it, handling existing files gracefully, optionally logging the action. Example:

cide(“new_file.txt”, “Hello, world!n”)

Reading:

read(file, log=False): Reads the entire content of a file and returns it as a string, optionally logging the action. Example:

content = read(“my_file.txt”) print(content)

Checking:

is_empty(file, log=False): Checks if a file is empty, returning True if empty, False otherwise, optionally logging the result. Example:

if is_empty(“my_file.txt”):

print(“The file is empty.”)

Deleting:

delete(file, log=False): Deletes a file. Example:

delete(“my_file.txt”)

Checking Existence:

does_exist(file, log=False): Checks if a file exists, returning True if exists, False otherwise. Example:

if does_exist(“my_file.txt”):

print(“The file exists.”)

Disclaimer

While Easytext handles common errors and is suitable for learning and small projects, it’s not intended for critical or demanding projects due to its limited scope and testing.

Additional Notes

The log parameter allows you to control if certain actions are logged (printed) for debugging or tracking purposes. The newline parameter in append allows you to control whether a newline character is added before the appended text.

if you find any errors please let me know by making a poll on the github page ☺

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Easytexts-0.5.1.tar.gz (2.9 kB view details)

Uploaded Source

Built Distribution

Easytexts-0.5.1-py3-none-any.whl (2.8 kB view details)

Uploaded Python 3

File details

Details for the file Easytexts-0.5.1.tar.gz.

File metadata

  • Download URL: Easytexts-0.5.1.tar.gz
  • Upload date:
  • Size: 2.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for Easytexts-0.5.1.tar.gz
Algorithm Hash digest
SHA256 d316eebf4a1eb8ad48e91644098dc92636dfd3cd5d16ac30c06755f5af97f59b
MD5 bd7d39859c528af603c321a2759417a4
BLAKE2b-256 bc88a0be9f65a728a7ed9046ef46b900f609f659465414b6df0ac89807b76e30

See more details on using hashes here.

File details

Details for the file Easytexts-0.5.1-py3-none-any.whl.

File metadata

  • Download URL: Easytexts-0.5.1-py3-none-any.whl
  • Upload date:
  • Size: 2.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for Easytexts-0.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 a01728221834b579e90e11dd0a73f3413e462edc64616aa0d4baf1e2f2c557e7
MD5 f644185d00519f10bd37b7c7d3952895
BLAKE2b-256 f53d3bc2d30a9219338b324b899261a2eb77b5f307aab83ceb55c8354a0d3f32

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page