Skip to main content

A simple wrapper class for easy reading from/iterating through, writing, and appending to files.

Project description

This package can be found at https://github.com/aescwork/filework.

In the github repository there is sphinx-generated documentation: the main page is docs/index.html. Included in the documentation is a Usage file (docs/usage.html) which provides a simple and hopefully helpful explanation about how the methods work and how to call them.

FileWork is a class for simplifying work with files.

Most of the tedious code for working with a file is contained in the class, so the calling code doesn’t need to bother with it.

A FileWork object can:

  1. Create a file

  2. Write to a File

  3. Append content to a File

  4. Read the entire contents of a File

  5. Read a file one line at a time

  6. Open or Close the Connection to a File

  7. Delete a File

This module was originally created for the waxtablet application.

After installation of this package is complete, trying to use the module might result in the following error: “ImportError: No module named filework” or some other error message.

This probably indicates that the Python interpreter may not be able to locate the module. In this case, the following is recommended:

On Linux:

Locate where the package was installed. In the terminal, navigate to the root directory and execute the following command:

sudo find . -name filework.py

This should give a path to the filework.py file. Create a file called “local_python.sh” and put the following text in it:

PYTHONPATH=”/usr/local/lib/python*.*/dist-packages/filework/”:”${PYTHONPATH}” export PYTHONPATH

To make the module available to all users, place this file in /etc/profile.d. Then place a line to execute this file somewhere in .bashrc or one of the other bash configuration files in the individual (non-root) user’s terminal:

. /etc/profile.d/local_python.sh

This should cause the python interpreter to locate the filework.py file in the module.

On MS Windows:

The following was tested on a machine running Windows 10.

(This assumes that Python is installed on the machine.)

Locate where the package was installed. On Windows 10, Look for the Python folder. Its usually right under the C: drive. The name of the folder probably has the version number in it as well, like “Python27”. Look for the filework folder: it should be in “Lib" and then “site-packages" folder.

Open up the System Properties Panel. (You can find this by clicking on the “Settings” icon and entering “Environment Variables” in the search bar. When the panel comes up, Click the “Environment Variables” button. Under “System variables”, click “New” and type in the full path to the filework folder.

Test this by opening the command line application and starting the Python interpreter (type the command “python” and press enter). Now try to import the module and instantiate a filework object. Type the following:

>>> import filework
>>> sg = filework.SQLiteMgr()
>>> sg.result

If everything went well, ‘None’ should print out on the screen. If there was an “ImportError” or any other error, try importing the module again and test as follows:

>>> import filework.filework as filework
>>> sg = filework.FileWork()
>>> sg.result

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

filework-1.1.2.tar.gz (6.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

filework-1.1.2-py2.py3-none-any.whl (8.2 kB view details)

Uploaded Python 2Python 3

File details

Details for the file filework-1.1.2.tar.gz.

File metadata

  • Download URL: filework-1.1.2.tar.gz
  • Upload date:
  • Size: 6.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for filework-1.1.2.tar.gz
Algorithm Hash digest
SHA256 6c6b841fa84c95ac5c1342f5742a4b53db7e482aea5c5e2bd645a542a1bdb449
MD5 51b6aff46bf12fdaf2a2d7e367311b86
BLAKE2b-256 dbb102ef41f887ae9ffd7ae42fdfdd041f5b13700a30583d1de20d622670c6c1

See more details on using hashes here.

File details

Details for the file filework-1.1.2-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for filework-1.1.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 cc572595dbee173f7c32fc311d13aa756fd858e3246e8a90ebf7afd89cf83882
MD5 ff2f8b656af0d3e781fa4733f278bbd9
BLAKE2b-256 dfff56e661dfac841e6d80fa5667947a1070013b9b3a7d86f98bcae4ca6772d5

See more details on using hashes here.

Supported by

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