Skip to main content

A lightweight Qiniu Python SDK. github: https://github.com/fy0/qiniu-lite

Project description

# coding:utf-8

import tornado.ioloop
import tornado.web
from qiniu_lite import Cow

cow = Cow('access key', 'secret key')
policy = cow.get_put_policy('bucket name')

class MainHandler(tornado.web.RequestHandler):
def get(self):
self.write('''
<html><body>
<form method="post" action="http://upload.qiniu.com/" enctype="multipart/form-data">
<input name="token" type="hidden" value="%s">
<input name="file" type="file" />
<input name="accept" type="hidden" />
<input type="submit" value="涓婁紶" />
</form>
</body></html>''' % policy.token())


if __name__ == "__main__":
application = tornado.web.Application([
(r"/", MainHandler),
])
application.listen(8888)
tornado.ioloop.IOLoop.instance().start()


Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

qiniu_lite-1.0.1-py3-none-any.whl (7.2 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