Skip to main content

Write to redis as if it was a file

Project description

RedisFile
===============

This is a simple hack to allow the writing to redis as if it was
just file object in python.

Usage
-----

# Import and open up a ne "file"
from redisfile import RedisFile
f = RedisFile("myrediskey")
# Write some lines to the "file"
f.write('hello')
f.writelines('world')
f.writelines('Your
Awesome')
# Read the whole file
print f.read()
# Reading a file from the end shows no data
print f.read()
# seek to the start of the file
f.seek(0)
# Read a single line
print f.readline()
# Read the rest
print f.read()
# "close" will delete all the data
f.close()

Installation
------------

Installation is simple too::

$ pip install redis-file

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

redis-file-0.0.1.tar.gz (2.0 kB view hashes)

Uploaded Source

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