{ "info": { "author": "Internet Initiative Japan Inc.", "author_email": "yosinobu@iij.ad.jp", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Plugins", "License :: OSI Approved :: BSD License", "Programming Language :: Python", "Topic :: Internet :: WWW/HTTP", "Topic :: Utilities" ], "description": "==========================================================\r\nHTTPie Plugin for IIJ GIO Storage & Analysis Service (DAG)\r\n==========================================================\r\n\r\nHTTPie_ \u306b `IIJ GIO Storage & Analysis Service (DAG)`_ REST API \u8a8d\u8a3c\u306e\u30b7\u30b0\u30cd\u30c1\u30e3\u751f\u6210\u6a5f\u80fd\u3092\u4ed8\u52a0\u3059\u308b\u30d7\u30e9\u30b0\u30a4\u30f3\r\n\r\n.. _HTTPie: https://httpie.org/\r\n.. _`IIJ GIO Storage & Analysis Service (DAG)`: http://www.iij.ad.jp/biz/storage/\r\n\r\n\r\n\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\r\n----------------\r\n\r\n* pip \u3067\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u5834\u5408::\r\n\r\n pip install httpie-dag\r\n\r\n\r\n\u4f7f\u3044\u65b9\r\n------\r\n\r\n\u4ee5\u4e0b\u306e auth-type \u304c\u8ffd\u52a0\u3055\u308c\u3066\u3044\u307e\u3059\u306e\u3067 `-a (--auth) ACCESS_KEY_ID:SECRET_ACCESS_KEY` \u3068\u5408\u305b\u3066\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002\r\n\r\n=========== ========================================================\r\nauth-type \u8aac\u660e\r\n=========== ========================================================\r\ndag DAG Authentication (Signature Version 2)\r\ndag:v4 DAG Authentication (Signature Version 4)\r\naws Amazon AWS Authentication (Signature Version 2)\r\naws:v4 Amazon AWS Authentication (Signature Version 4)\r\n=========== ========================================================\r\n\r\n* GET Service::\r\n\r\n $ http -v --auth-type dag -a AKID0000000000000000:XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX GET https://storage-dag.iijgio.com\r\n\r\n GET / HTTP/1.1\r\n Accept: */*\r\n Accept-Encoding: gzip, deflate\r\n Authorization: IIJGIO EALI0XQJWQCBASHAKJYV:ksJtxARuojOhG1M7UX4P92LOJ9g=\r\n Connection: keep-alive\r\n Date: Fri, 28 Nov 2014 14:27:18 GMT\r\n Host: storage-dag.iijgio.com\r\n User-Agent: HTTPie/0.8.0\r\n \r\n \r\n \r\n HTTP/1.1 200 OK\r\n Connection: close\r\n Content-Length: 772\r\n Content-Type: application/xml\r\n Date: Fri, 28 Nov 2014 14:27:18 GMT\r\n Server: dag.iijgio.com\r\n x-iijgio-id-2: 41E589A2E62A4221AF4F3511ECB65E21\r\n x-iijgio-request-id: 41E589A2E62A4221AF4F3511ECB65E21\r\n \r\n \r\n \r\n \r\n test-account-16333850@iij.ad.jp\r\n a9711b60d80dcd5951c0443a7a46b2649e95dabbb192410d4efa0104f2166a53\r\n \r\n \r\n \r\n safari8\r\n 2014-11-27T01:41:54.000Z\r\n \r\n \r\n chrome39\r\n 2014-11-26T14:01:19.000Z\r\n \r\n \r\n firefox33\r\n 2014-11-26T14:00:42.000Z\r\n \r\n \r\n yosinobu4\r\n 2014-11-26T10:57:48.000Z\r\n \r\n \r\n yosinobu3\r\n 2014-11-23T10:37:48.000Z\r\n \r\n \r\n \r\n\r\n* PUT Bucket::\r\n\r\n $ http -v --auth-type dag -a AKID0000000000000000:XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX PUT https://storage-dag.iijgio.com/mybucket\r\n\r\n PUT /mybucket HTTP/1.1\r\n Accept: */*\r\n Accept-Encoding: gzip, deflate\r\n Authorization: IIJGIO AKID0000000000000000:kf6umAzob1rvpWG0mWXCmCtCU/I=\r\n Connection: keep-alive\r\n Content-Length: 0\r\n Date: Fri, 28 Nov 2014 14:36:58 GMT\r\n Host: storage-dag.iijgio.com\r\n User-Agent: HTTPie/0.8.0\r\n \r\n \r\n \r\n HTTP/1.1 200 OK\r\n Connection: close\r\n Content-Length: 0\r\n Content-Type: text/plain\r\n Date: Fri, 28 Nov 2014 14:36:58 GMT\r\n Location: https://storage-dag.iijgio.com/mybucket\r\n Server: dag.iijgio.com\r\n x-iijgio-id-2: 37374CC4182D4B1384D5EBDA6D166BDC\r\n x-iijgio-request-id: 37374CC4182D4B1384D5EBDA6D166BDC\r\n x-iijgio-version-id: null\r\n\r\n* PUT Object::\r\n\r\n $ echo \"this is test.\" | http -v --auth-type dag -a AKID0000000000000000:XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX PUT https://mybucket.storage-dag.iijgio.com/foo.txt\r\n \r\n PUT /foo.txt HTTP/1.1\r\n Accept: application/json\r\n Accept-Encoding: gzip, deflate\r\n Authorization: IIJGIO AKID0000000000000000:R939NI+H9u0BkD1s0qZXgFPV5U8=\r\n Connection: keep-alive\r\n Content-Length: 14\r\n Content-Type: application/json; charset=utf-8\r\n Date: Fri, 28 Nov 2014 14:38:16 GMT\r\n Host: mybucket.storage-dag.iijgio.com\r\n User-Agent: HTTPie/0.8.0\r\n \r\n this is test.\r\n \r\n HTTP/1.1 200 OK\r\n Connection: close\r\n Content-Length: 0\r\n Content-Type: text/plain\r\n Date: Fri, 28 Nov 2014 14:38:16 GMT\r\n ETag: \"477cbe70ead82460e7669d1162ac4122\"\r\n Server: dag.iijgio.com\r\n x-iijgio-id-2: 52899B29B3924D58A5AE173C6802353D\r\n x-iijgio-request-id: 52899B29B3924D58A5AE173C6802353D\r\n x-iijgio-version-id: null\r\n\r\n* GET Object::\r\n\r\n $ http -v --auth-type dag -a AKID0000000000000000:XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX GET http://mybucket.storage-dag.iijgio.com/foo.txt\r\n \r\n GET /foo.txt HTTP/1.1\r\n Accept: */*\r\n Accept-Encoding: gzip, deflate\r\n Authorization: IIJGIO AKID0000000000000000:OrdmgRC4tWUvyYdekSU4l4OqO54=\r\n Connection: keep-alive\r\n Date: Fri, 28 Nov 2014 14:38:45 GMT\r\n Host: mybucket.storage-dag.iijgio.com\r\n User-Agent: HTTPie/0.8.0\r\n \r\n \r\n \r\n HTTP/1.1 200 OK\r\n Connection: close\r\n Content-Length: 14\r\n Content-Type: application/json; charset=utf-8\r\n Date: Fri, 28 Nov 2014 14:38:46 GMT\r\n ETag: \"477cbe70ead82460e7669d1162ac4122\"\r\n Last-Modified: Fri, 28 Nov 2014 14:38:16 GMT\r\n Server: dag.iijgio.com\r\n x-iijgio-id-2: 0BB4EE2AD3D94686B9741B2BBE6635B0\r\n x-iijgio-request-id: 0BB4EE2AD3D94686B9741B2BBE6635B0\r\n x-iijgio-version-id: null\r\n \r\n this is test.", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/iij/httpie-dag", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "httpie-dag", "package_url": "https://pypi.org/project/httpie-dag/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/httpie-dag/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/iij/httpie-dag" }, "release_url": "https://pypi.org/project/httpie-dag/0.1.0/", "requires_dist": null, "requires_python": null, "summary": "HTTPie plugin for IIJ GIO Storage & Analysis Service(DAG).", "version": "0.1.0" }, "last_serial": 2367953, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "1722fb356d81b4e83b7a09606b20c9cf", "sha256": "53a5e340b07f94743c9622734b1a8dfdb1908b3b84e95eba38f9079827ddb6fd" }, "downloads": -1, "filename": "httpie-dag-0.1.0.tar.gz", "has_sig": false, "md5_digest": "1722fb356d81b4e83b7a09606b20c9cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6014, "upload_time": "2016-09-28T06:47:20", "url": "https://files.pythonhosted.org/packages/0a/86/eab17701120c36fceaf0972011f1d99f4be20b9c8f6c9aaaaf3f43a273e4/httpie-dag-0.1.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "1722fb356d81b4e83b7a09606b20c9cf", "sha256": "53a5e340b07f94743c9622734b1a8dfdb1908b3b84e95eba38f9079827ddb6fd" }, "downloads": -1, "filename": "httpie-dag-0.1.0.tar.gz", "has_sig": false, "md5_digest": "1722fb356d81b4e83b7a09606b20c9cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6014, "upload_time": "2016-09-28T06:47:20", "url": "https://files.pythonhosted.org/packages/0a/86/eab17701120c36fceaf0972011f1d99f4be20b9c8f6c9aaaaf3f43a273e4/httpie-dag-0.1.0.tar.gz" } ] }