Skip to main content

Easily Polish Structured Data

Project description

Function: polish_file(input_file, output_file, exceptions='')

This function takes in an input file and an output file, both with supported file extensions (.csv, .json, or .txt), and an optional list of exceptions.

Parameters

  • input_file (str): The path to the input file to be polished.
  • output_file (str): The path to the output file to be written with the polished data.
  • exceptions (str, optional): An optional string of characters to be excluded from the polishing process.

Returns

  • None

Raises

  • Exception: If the input and output files do not have the same supported file extension.
  • Exception: If the file format is not supported.

Supported file extensions

  • .csv: Comma-separated values file
  • .json: JavaScript Object Notation file
  • .txt: Text file

Description

This function cleans the input file by removing impurities, such as special characters, except for those included in the optional exceptions list. The cleaned data is then written to the output file with the same format as the input file.

Note: This function does not check if the input file exists or if the output file can be written to. It is the responsibility of the calling code to ensure that the necessary file permissions and file paths are valid.

# Import the function
from pypolish import polish

# Define the input and output files
input_file = "data/input.json"
output_file = "data/output.json"

# Define any exceptions to the cleaning process
exceptions = ['(', '.', '@']


polish.polish_file(input_file, output_file, exceptions)

# Check the output file to see if the cleaning process was successful
with open(output_file, 'r') as f:
    print(f.read())

##Github Repo https://github.com/huntert1004/pypolish

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

pypolish-0.0.7.tar.gz (3.9 kB view details)

Uploaded Source

File details

Details for the file pypolish-0.0.7.tar.gz.

File metadata

  • Download URL: pypolish-0.0.7.tar.gz
  • Upload date:
  • Size: 3.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.9

File hashes

Hashes for pypolish-0.0.7.tar.gz
Algorithm Hash digest
SHA256 e10c11437e8133fa6c6bf945074344fc81ba183f13646e1b5b6029fd48835e1d
MD5 8b599d91e206f2f29008572679c96855
BLAKE2b-256 09fb1023d80031ae28a76711778d55d51e5e3df1eafd68692bc5aefe12392753

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