Skip to main content

Static file management for everyone.

Project description

More and more, we find ourselves storing our static website files - CSS, Javascript, images and more - on Amazon S3. Some of us do it because we use services like Heroku and don’t want to force the static files through our web dynos. Others of us do it to avoid huge bandwidth costs associated with hosting these on our own servers. Still others do it to take advantage of the scale and distributed nature of S3.

However, managing our S3 files can be a pain. Each time we change them we have to minify and reupload them. We also need to set all the metadata we want: things like Cache-Control headers. This can be boring and error-prone. collectr aims to help with that.

Using collectr

collectr is a collection of functions built on top of the boto library. This allows you to plug collectr into any of your Python code however you see fit. For those who want a ‘just works’ solution, however, collectr also comes with an example script that is perfect for using with any Django project.

If you want simple, you can use collectr like this:

import collectr
collectr.update('path/to/static/files', 'bucket-name')

collectr will scan the directory, minify anything that can be minified using whatever tools you have on your system, and upload all your files to the specified S3 bucket. Anything that already existed on S3 will have all of its metadata persisted.

Of course, you can have quite a bit more control than that.

import collectr
statics = collectr.StaticDir('path/to/static/files')
statics.input_directory = 'path/to/other/dir'
statics.minifier = 'yuicompressor -o {out_name} {in_name}'
statics.force_update = True
statics.ignore = ['*.jpg', '*.json']
statics.metadata = {'Cache-Control': 'max-age=3600'}
statics.update('bucket-name')

Before you do anything, though, make sure you have your environment variables set up. You’ll need AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY set to the correct values.

Features

  • Static file minification.

  • Ignore filters.

  • Multiple directory management.

  • Metadata management.

  • Fire-and-forget configuration.

Installation

To install collectr:

$ pip install collectr

If you don’t have pip and can’t install it, you should complain to your sysadmin, and then do:

$ easy_install collectr

Contributing

collectr welcomes contributions, both bug fixes and new features. Any feature request should strongly consider the implications for the API. API clarity is valued above new features, so any feature that complicates the API must add significant value to the library to be accepted.

If you want to contribute, do the following:

  1. Check that your idea hasn’t already been proposed. Check both open and closed issues on GitHub.

  2. Fork the repository on GitHub and make your changes.

  3. Where possible, write a test that can reproduce the bug, or that will test the new feature.

  4. Send a Pull Request. Don’t forget to add yourself to the AUTHORS 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

collectr-0.0.3.tar.gz (6.9 kB view details)

Uploaded Source

File details

Details for the file collectr-0.0.3.tar.gz.

File metadata

  • Download URL: collectr-0.0.3.tar.gz
  • Upload date:
  • Size: 6.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for collectr-0.0.3.tar.gz
Algorithm Hash digest
SHA256 d7cce394d3bbd006a61bb9b660f79f59fa7301b9bf0318d31cee76b11120ba90
MD5 43b610859e1ca603f601339be89beba0
BLAKE2b-256 ebb53e8f20c461e7c414558619d507707b44913d3c48d863910970ffb5c199c0

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