Skip to main content

XIUXIU

Project description

A package encapsulating a few frequently used functions for faster Python programming.

Install

python3 -m pip install codefast

Or, update to latest version with:

python3 -m pip install codefast --upgrade

Usage

1. Manipulate JSON Files

import codefast as cf
# read file
json_content = jsn.read('json_file.json')
# write file
json.write(json_content, '/tmp/json_file.json)

2. Manipulate CSV Files

import codefast as cf
# read file
content = cf.csv.read('somefile.csv')
# write file
cf.csv.write(content, 'somefile.csv')

3. Manipulate normal Files

import codefast as cf
# read file
content = io.read('somefile.txt')
# or content = cf.file.read

# write file
io.write(content, 'somefile.txt')

4. Logging

import codefast as cf
cf.info("Here we go")
cf.warn("Not good, something went wrong")
cf.error("Unexpected result")

5. Others

import codefast as cf
cf.post('www.abcde.com', json={}) # encapsulate requests.post
cf.get('wwww.example.com') # encapsulate requests.get
cf.shell('ls -lt') # run system command

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

xiu-0.0.3.tar.gz (2.2 kB view hashes)

Uploaded Source

Built Distribution

xiu-0.0.3-py3-none-any.whl (2.4 kB view hashes)

Uploaded Python 3

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