{ "info": { "author": "Noah, Teba, Ddeerreekk", "author_email": "noah@arkc.org", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Internet :: Proxy Servers" ], "description": "ArkC-Client V0.3\n================\n\nArkC is a lightweight proxy designed to be proof to IP blocking measures\nand offer high proxy speed via multi-connection transmission and\nswapping connections.\n\nArkC-Client is the client-side utility. In a LAN environment, it either\nworks with UPnP-enabled routers or requires NAT configuration if the\nclient is behind a router.\n\nNote: ArkC 0.3 is not compatible with 0.2 or earlier versions.\n\n`(\u4e2d\u6587)\u5feb\u901f\u5165\u95e8\u6559\u7a0b `__\n\nWhat is ArkC?\n-------------\n\nArkC enables VPS owners to share their VPS to people around them, or share online, the proxy hosted on their VPS, without worrying about IP blacklists.\n\nFor a more detailed description, please visit our website and read our page `Understand ArkC `__. \u4e2d\u6587\u7248\u672c\u7684\u4ecb\u7ecd\u5728\u8fd9\u4e00\u9875\u9762 `ArkC\u7684\u539f\u7406 `__\u3002\n\nThis is what it tries to do by default:\n\n.. image:: https://arkc.org/wp-content/uploads/2016/02/ArkC.png\n :height: 300px\n\nAnd making it a little bit more complicated, e.g. set obfs_level to 3 or use a socks proxy:\n\n.. image:: https://arkc.org/wp-content/uploads/2016/02/ArkCProxy-1.png\n :height: 400px\n\nNote, \"anonymous_proxy\" can be anything you set!\n\nSetup and Requirement\n---------------------\n\nFor a probably more detailed guide: `Deployment and Installation `__. \u5bf9\u4e8e\u5b89\u88c5\u4e0e\u90e8\u7f72\u7684\u4e2d\u6587\u8bf4\u660e\u5728 `\u90e8\u7f72\u4e0e\u5b89\u88c5ArkC `__\n\u8fd9\u4e00\u9875\u9762\u3002\n\nFor Windows users, you are recommended to use our Windows GUI, installer along with latest ArkC client binary executable, in the Github `release page `__. Just pick your .Net Framework version and download.\n\nFor users with python3 pip development environment (Note: We don't\nrecommend using python 2):\n\n::\n\n sudo pip3 install arkcclient\n\nTo install python3 and pip3 with python.h:\n\nDebian/Ubuntu users\n\n::\n\n sudo apt-get install python3 python3-pip python3-dev\n\nFedora users\n\n::\n\n yum install python3 python3-devel python3-pip\n\nYou may also install ArkC via source.\n\nTo get ArkC Client work, you must satisfy ONE OF the following\nconditions (unless you are the expert): 1) connect to public Internet\ndirectly 2) connect to the Internet via a UPnP-enabled router, in a\nsingle-layer LAN 3) router(s) on your route to the public Internet are\nproperly configured with NAT to allow your server to connect to your\nclient's \"remote\\_port\" directly.\n\nIf you need to use portable proxy function, like MEEK (required to integrate with GAE) or obfs4proxy, please follow the above link to arkc.org.\n\nUsage\n-----\n\nFor detailed documentation, please visit our `Documentation page `__.\n\n\u4e2d\u6587\u7248\u672c\u7684\u4f7f\u7528\u6587\u6863\uff0c\u8bf7\u53c2\u89c1 `\u5982\u4f55\u4f7f\u7528ArkC `__\u3002\n\nRun\n\n::\n\n arkcclient [-h] [-v|-vv] [-pn] -c \n\n[-pn] is used to disable UPnP.\n\nIn this version, any private certificate should be in the form of PEM\nwithout encryption, while any public certificate should be in the form\nof ssh-rsa.\n\nWe could generate a keypair with\n\n::\n\n arkcclient -kg [--kg-path Key_Generated_Path]\n\nAnd the keys can be sent to an email address used by the server provider with this command \n\n::\n\n arkcclient -reg Email_Address_to_send\n\nAutomatically the server should add the key to its key storage.\n\nFor the configuration file, you can find an example here:\n\n::\n\n {\n \"local_cert\":\"client.pem\",\n \"remote_cert\":\"server.pub\",\n \"local_cert_pub\":\"client.pub\",\n \"control_domain\":\"testing.arkc.org\",\n \"dns_servers\": [\n [\"8.8.8.8\", 53],\n [\"127.0.0.1\", 9000]\n ]\n }\n\nNOTE: NO COMMENTS ARE ALLOWED IN JSON FORMAT.\n\nFor a full list of settings:\n\n+--------------------+---------------------------------------------------+----------------------------------+\n| Index name | Value Type & Description | Required / Default |\n+====================+===================================================+==================================+\n| local\\_host | string, proxy listening addr | \"127.0.0.1\" |\n+--------------------+---------------------------------------------------+----------------------------------+\n| local\\_port | integer, proxy port | 8001 |\n+--------------------+---------------------------------------------------+----------------------------------+\n| remote\\_host | string, listening host | \"0.0.0.0\" |\n+--------------------+---------------------------------------------------+----------------------------------+\n| remote\\_port | integer, listening port | random between 20000 and 60000 |\n+--------------------+---------------------------------------------------+----------------------------------+\n| number | integer, how many conn. (max. 100) | 3 |\n+--------------------+---------------------------------------------------+----------------------------------+\n| local\\_cert | string, path of client pri | REQUIRED |\n+--------------------+---------------------------------------------------+----------------------------------+\n| local\\_cert\\_pub | string, path of client pub | REQUIRED |\n+--------------------+---------------------------------------------------+----------------------------------+\n| remote\\_cert | string, path of server pub | REQUIRED |\n+--------------------+---------------------------------------------------+----------------------------------+\n| control\\_domain | string, standard domain | REQUIRED |\n+--------------------+---------------------------------------------------+----------------------------------+\n| dns\\_servers | list, servers to send dns query to | [] (use system resolver) |\n+--------------------+---------------------------------------------------+----------------------------------+\n| debug\\_ip | string, address of the client (only for debug use)| None |\n+--------------------+---------------------------------------------------+----------------------------------+\n| pt\\_exec | string, command line of PT executable | \"obfs4proxy\" |\n+--------------------+---------------------------------------------------+----------------------------------+\n| obfs\\_level | integer, obfs leve 0~3, the same as server side | 0 |\n+--------------------+---------------------------------------------------+----------------------------------+\n\nNote: if obfs\\_level is set, pt\\_exec must be appropriate set. It is set\nto use obfs4 or MEEK, both Tor pluggable transport (abbr: PT). MEEK is\nlike GoAgent, and obfs4 is used to obfuscate all the traffic.\n\nIf set to 1 or 2, Obfs4 will use an IAT mode of (obfs\\_level + 1), which\nmeans if obfs\\_level is set to 1 or 2, the connection speed may be\naffected.\n\nIf obfs\\_level is set to 3, MEEK will be used to transmit all data via a\npre-configured MEEK service at the server side. By default it passes\nthrough Google App Engine.\n\nBuild on Windows into executable\n--------------------------------\n\n::\n\n pip install pyinstaller\n pyinstaller [--onefile] main.py\n\nQuestions | \u4f7f\u7528\u6216\u5b89\u88c5\u65f6\u9047\u5230\u95ee\u9898\n----------------------------------------------\n\nGo to our `FAQ page `__.\n\n\u5e38\u89c1\u95ee\u9898\u8bf7\u53c2\u8003 `FAQ `__\u3002\n\nAcknowledgements\n----------------\n\nThe client-end software adapted part of the pyotp library created by\nMark Percival m@mdp.im. His code is reused under Python Port copyright,\nlicense attached.\n\nFile arkcclient/ptclient.py is based on ptproxy by Dingyuan Wang.\nCode reused and edited under MIT license, attached in file.\n\nLicense\n-------\n\nCopyright 2015 ArkC Technology.\n\nThe ArkC-client and ArkC-server utilities are licensed under GNU GPLv2.\nYou should obtain a copy of the license with the software.\n\nArkC is free software: you can redistribute it and/or modify it under\nthe terms of the GNU General Public License as published by the Free\nSoftware Foundation, either version 2 of the License, or (at your\noption) any later version.\n\nArkC is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\n\nYou should have received a copy of the GNU General Public License along\nwith ArkC. If not, see http://www.gnu.org/licenses/.", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://arkc.org", "keywords": null, "license": "https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt", "maintainer": null, "maintainer_email": null, "name": "arkcclient", "package_url": "https://pypi.org/project/arkcclient/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/arkcclient/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://arkc.org" }, "release_url": "https://pypi.org/project/arkcclient/0.3.1/", "requires_dist": null, "requires_python": null, "summary": "A lightweight proxy designed to be proof to IP blocking measures", "version": "0.3.1" }, "last_serial": 2072375, "releases": { "0.2-beta4": [], "0.2-beta4.post1": [ { "comment_text": "", "digests": { "md5": "a56a5223a9f264598b9c4fbb6557ffc6", "sha256": "dceb0cdbc9f6873d9216d2b475cb7fde880fbf95fe1bfd38c4dbea3df83a7939" }, "downloads": -1, "filename": "arkcclient-0.2_beta4.post1-py3.4.egg", "has_sig": false, "md5_digest": "a56a5223a9f264598b9c4fbb6557ffc6", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 175919, "upload_time": "2016-02-10T10:21:03", "url": "https://files.pythonhosted.org/packages/61/7a/166a6ff7f3b41519a82d1a7c32d720da4628026eacbfc0a114ccf435d75a/arkcclient-0.2_beta4.post1-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "cadff5113a47257038274b0418c5d957", "sha256": "9eba642af25e7132960f8cd8ad4731157c8fb3cfbdeeaa97f0b0e9554d3985af" }, "downloads": -1, "filename": "arkcclient-0.2_beta4.post1-py3-none-any.whl", "has_sig": false, "md5_digest": "cadff5113a47257038274b0418c5d957", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 89305, "upload_time": "2016-02-10T10:21:21", "url": "https://files.pythonhosted.org/packages/ea/17/2e06cbf6e0a41f6aa8f7c9482e09ec8c3dd864ce36193c65360c5f37aedd/arkcclient-0.2_beta4.post1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f33ded8426cd5bc02f15e4e8b160acc7", "sha256": "b62a568288147c6cf6b28a2ae4d501dd5282759cdd296a629bcee3a8bd52d708" }, "downloads": -1, "filename": "arkcclient-0.2-beta4.post1.tar.gz", "has_sig": false, "md5_digest": "f33ded8426cd5bc02f15e4e8b160acc7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33833, "upload_time": "2016-02-10T10:20:40", "url": "https://files.pythonhosted.org/packages/0f/4b/5d2dc651f858ec9fa86ba99d2d45afd87ddab8944304f15c8242d65aee52/arkcclient-0.2-beta4.post1.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "0560a442ad5be660c22c0ad7a3412528", "sha256": "e152f749b327b614934c8e490adfb25f136d6c8227e7d1a5f7ef83d45e793ae2" }, "downloads": -1, "filename": "arkcclient-0.2.0-py3.4.egg", "has_sig": false, "md5_digest": "0560a442ad5be660c22c0ad7a3412528", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 68986, "upload_time": "2016-02-11T10:58:14", "url": "https://files.pythonhosted.org/packages/40/d1/d363ba501e7b5781fe791556d3645421478af1b6eff4c6bbcd745d310f08/arkcclient-0.2.0-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "bcc23958672a24d0a3f2368c1b1f4c11", "sha256": "761a8ff107d9d6eeca5346e5188245135336ddcf8313de663a9f347bd0e88678" }, "downloads": -1, "filename": "arkcclient-0.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "bcc23958672a24d0a3f2368c1b1f4c11", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 35348, "upload_time": "2016-02-11T10:58:34", "url": "https://files.pythonhosted.org/packages/9e/de/708de8269ef5922dc1bbf2ddf53aa7f3dea7de4f062d10edac052ead6008/arkcclient-0.2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "deab1dc0ee5e1ec74805ec8e8ed78d54", "sha256": "5462722642f4aa14763c55df68b5ee8f0127a0df38da1172fa214948c00cc982" }, "downloads": -1, "filename": "arkcclient-0.2.0.tar.gz", "has_sig": false, "md5_digest": "deab1dc0ee5e1ec74805ec8e8ed78d54", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29836, "upload_time": "2016-02-11T10:58:52", "url": "https://files.pythonhosted.org/packages/35/4e/6f99104ae0d1f2e71a63ba1ad45d4f07e780b1866190dfa3a0ccb524527d/arkcclient-0.2.0.tar.gz" } ], "0.2.0.post1": [ { "comment_text": "", "digests": { "md5": "424f528c0f62539016cd6859719f6fd6", "sha256": "7b5b2e1e9ea3082dc0ea4edfd596d6f52a047754ac16559148ce803ea82cd3b2" }, "downloads": -1, "filename": "arkcclient-0.2.0.post1-py3.4.egg", "has_sig": false, "md5_digest": "424f528c0f62539016cd6859719f6fd6", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 69076, "upload_time": "2016-02-11T11:21:09", "url": "https://files.pythonhosted.org/packages/e0/a0/11f6d449e30372e1aa478d3561c9493b55f657c46ce3d4abe8ac260fc6a6/arkcclient-0.2.0.post1-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "bc54a5dd00f7e0d421362f16c57c3a59", "sha256": "cb20988013e5f9b7f04cfae9220cdffaf9fdd647c3ffa90fd5852540d8696961" }, "downloads": -1, "filename": "arkcclient-0.2.0.post1-py3-none-any.whl", "has_sig": false, "md5_digest": "bc54a5dd00f7e0d421362f16c57c3a59", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 35481, "upload_time": "2016-02-11T11:21:35", "url": "https://files.pythonhosted.org/packages/b4/ce/ce2bb2da9aaa9998ffa15cf6ea10842b2f8207f08d529a0f80353544018c/arkcclient-0.2.0.post1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "06e4f287e3f860edfb89881a7f9aa1bb", "sha256": "446ac86d9880feef292f5b00822535bc7946df218c6250ea2da410b3dd8c7a51" }, "downloads": -1, "filename": "arkcclient-0.2.0.post1.tar.gz", "has_sig": false, "md5_digest": "06e4f287e3f860edfb89881a7f9aa1bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29889, "upload_time": "2016-02-11T11:20:40", "url": "https://files.pythonhosted.org/packages/93/ea/cf4534a45b6e336cd2f6f60fc12551ff36368beebf1bc8127348cf711ed5/arkcclient-0.2.0.post1.tar.gz" } ], "0.2.0.post2": [ { "comment_text": "", "digests": { "md5": "7d538eae543bf1958464df838fbfbaa7", "sha256": "10d004b17f01020524b09f698c0051622c6f4a95a3d9a7c3c9b02203c4cd2e9d" }, "downloads": -1, "filename": "arkcclient-0.2.0.post2-py3.4.egg", "has_sig": false, "md5_digest": "7d538eae543bf1958464df838fbfbaa7", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 69074, "upload_time": "2016-02-11T11:50:14", "url": "https://files.pythonhosted.org/packages/c1/86/bdfb39c73aa5fa782e26cc3864e2abf0dca7e8435ab4a072fa997d16b4c2/arkcclient-0.2.0.post2-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "abcd940c90f2ce3ea15e4234dcbb0602", "sha256": "ed6349eae40357bff6bd28af4685a814960c90de5a73d6a4e8bc2ee1af46d4a0" }, "downloads": -1, "filename": "arkcclient-0.2.0.post2-py3-none-any.whl", "has_sig": false, "md5_digest": "abcd940c90f2ce3ea15e4234dcbb0602", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 35483, "upload_time": "2016-02-11T11:50:23", "url": "https://files.pythonhosted.org/packages/06/be/ca9728a178f786dcae6ea020b2efa1fdb730eed786b80f210944d86f6efc/arkcclient-0.2.0.post2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "795a8e1081793370a68f86d3dcbd0a80", "sha256": "b9df7b3095263f535a4e8c00c01060b550878b315dfff2f81c2b4209a1663913" }, "downloads": -1, "filename": "arkcclient-0.2.0.post2.tar.gz", "has_sig": false, "md5_digest": "795a8e1081793370a68f86d3dcbd0a80", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29893, "upload_time": "2016-02-11T11:49:00", "url": "https://files.pythonhosted.org/packages/c5/43/fc40325494461501f23c11d682eb93ef6deb8462ff8c7fdf3f27bc8698fe/arkcclient-0.2.0.post2.tar.gz" }, { "comment_text": "", "digests": { "md5": "858d41dc22a336028112fbc134eb80d2", "sha256": "7458aeb6cb466b04e78f005328a32fd3e811333c599ed23c098f57cdb2c12bd9" }, "downloads": -1, "filename": "arkcclient-0.2.0.post2.win32.exe", "has_sig": false, "md5_digest": "858d41dc22a336028112fbc134eb80d2", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 206012, "upload_time": "2016-02-11T12:05:12", "url": "https://files.pythonhosted.org/packages/9a/22/b5d71c57576ce97427848c98ad5f71fedb369c662c8341558d12ed522636/arkcclient-0.2.0.post2.win32.exe" } ], "0.2.0.post3": [ { "comment_text": "", "digests": { "md5": "bc2bee1f870b1765033915ab3be2066a", "sha256": "12157ae7b633946b5dd42f15dde093fe870ef9b80601eb30d7fe716f7e12b6a2" }, "downloads": -1, "filename": "arkcclient-0.2.0.post3-py3-none-any.whl", "has_sig": false, "md5_digest": "bc2bee1f870b1765033915ab3be2066a", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 35503, "upload_time": "2016-02-16T14:09:15", "url": "https://files.pythonhosted.org/packages/30/04/d5cb3d50997c1e77577c0c27075ea76c444f047686025a7e06e660135ed8/arkcclient-0.2.0.post3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "25c39a2d936883a8f7ada0ac114ea7f4", "sha256": "1bade506ae268950ca95fb37d11517a7965e7d32e77fa8e5b0544125de38122e" }, "downloads": -1, "filename": "arkcclient-0.2.0.post3.tar.gz", "has_sig": false, "md5_digest": "25c39a2d936883a8f7ada0ac114ea7f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26925, "upload_time": "2016-02-16T14:09:03", "url": "https://files.pythonhosted.org/packages/29/55/9338465f68527d54110be907aef250f6211ff784916e493724af698ca9df/arkcclient-0.2.0.post3.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "04930b087b23f6c6176c76f61206df28", "sha256": "59f782ced1a30e06105ad5e9bb4828f83c3e2337e241693ba6d4f2b870f10405" }, "downloads": -1, "filename": "arkcclient-0.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "04930b087b23f6c6176c76f61206df28", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 38052, "upload_time": "2016-02-17T09:32:59", "url": "https://files.pythonhosted.org/packages/8f/b3/b1c3130e4fa589dc307614e4845081afa31dcf529c9b2d6ac09840530df4/arkcclient-0.2.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e6aa2b30260dbc76797c0756b55b44fd", "sha256": "2f2b01e4ef3a80cb1558ddcdc0f6606419b017c3362293d75c88ee907c182bcc" }, "downloads": -1, "filename": "arkcclient-0.2.1.tar.gz", "has_sig": false, "md5_digest": "e6aa2b30260dbc76797c0756b55b44fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32439, "upload_time": "2016-02-17T09:32:51", "url": "https://files.pythonhosted.org/packages/01/23/565d8fcda6bd0a7db26adb2aa79d12c8ac6402815172b54fb58da6fa3d87/arkcclient-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "c2c6af1143610bc49ae389242984fec5", "sha256": "141334149c9cb85dc41f9e4e9a391a90b0eaa0637d39d91dc001af8af33a5db8" }, "downloads": -1, "filename": "arkcclient-0.2.2-py3-none-any.whl", "has_sig": false, "md5_digest": "c2c6af1143610bc49ae389242984fec5", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 39045, "upload_time": "2016-03-04T02:27:15", "url": "https://files.pythonhosted.org/packages/b1/ed/c53c3461bd8113bb20d791cbc64726b66193d6ca5989fde831cca9e68484/arkcclient-0.2.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "364dfeb03601f667a5c1325532ec1b86", "sha256": "7b465cf73f8a267013db241f71b856c776902e7edc29bdc1e607143178210128" }, "downloads": -1, "filename": "arkcclient-0.2.2.tar.gz", "has_sig": false, "md5_digest": "364dfeb03601f667a5c1325532ec1b86", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29766, "upload_time": "2016-03-04T02:27:09", "url": "https://files.pythonhosted.org/packages/99/00/97434541927cd7f9cd46286fce5375c32cbb3066406a4dfaf4f70c594efc/arkcclient-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "8aea8f5a94f92e91829d5bd632970d39", "sha256": "a89ca7e60d079c3142310dcae68d53d26f0117f8a10fcd73bbaba72fdc314b16" }, "downloads": -1, "filename": "arkcclient-0.2.3-py3-none-any.whl", "has_sig": false, "md5_digest": "8aea8f5a94f92e91829d5bd632970d39", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 39868, "upload_time": "2016-03-12T18:33:01", "url": "https://files.pythonhosted.org/packages/18/c7/9624a9dfdbadba2152bd25031b0715bf7b742546e2eef8ad39f7671e23cc/arkcclient-0.2.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c74d5d0222c3241bfd0c2eef247c02f4", "sha256": "61d20db37e7dcece2c61e37e4cc4742ae8ea22bc84e30fea1259a425e4ba34f2" }, "downloads": -1, "filename": "arkcclient-0.2.3.tar.gz", "has_sig": false, "md5_digest": "c74d5d0222c3241bfd0c2eef247c02f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34071, "upload_time": "2016-03-12T18:33:10", "url": "https://files.pythonhosted.org/packages/9b/d7/2642b18d382511678dcaf68998ab19ad16b5f062d9466e139aa361b8dc70/arkcclient-0.2.3.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "b32cb1bb777226af6720081fcbccfd5e", "sha256": "85678b178538c13f05b798a84d2c80802fa466e1508b711ec35eac4e52a13bb3" }, "downloads": -1, "filename": "arkcclient-0.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "b32cb1bb777226af6720081fcbccfd5e", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 39816, "upload_time": "2016-03-15T12:30:41", "url": "https://files.pythonhosted.org/packages/63/63/41a57e27ee8b95bc3a07f0f3afae1eb24535ea7b040023589042484abedc/arkcclient-0.3.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6d6bac2123879e94b01599e61160c72f", "sha256": "adb01c33b39e06b28b969362041112418a1f89b59aa6e3e6a25fb87830852de7" }, "downloads": -1, "filename": "arkcclient-0.3.0.tar.gz", "has_sig": false, "md5_digest": "6d6bac2123879e94b01599e61160c72f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34009, "upload_time": "2016-03-15T12:30:49", "url": "https://files.pythonhosted.org/packages/1b/c5/f35e407bfbd7132af888c60c0332be5d93cefd1084fd3b5c43b88238e30c/arkcclient-0.3.0.tar.gz" } ], "0.3.0.post1": [ { "comment_text": "", "digests": { "md5": "0c35f128dd692712f0da5ac1e794c976", "sha256": "6001754db86bf32f73d9a0827bc926535f8e104622f6b981e449ed1c8f332d18" }, "downloads": -1, "filename": "arkcclient-0.3.0.post1-py3-none-any.whl", "has_sig": false, "md5_digest": "0c35f128dd692712f0da5ac1e794c976", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 40191, "upload_time": "2016-03-15T12:41:53", "url": "https://files.pythonhosted.org/packages/ed/50/383d987205a3c216ed7e70722da130915c19217ec593abde4fd003f83684/arkcclient-0.3.0.post1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "57a0d9f3af9b693305c801a93f6d2f11", "sha256": "8dac3289a7cb1c00b6bf006adf9ca12884fc2ca740e35f3df1a2d0e131488d1e" }, "downloads": -1, "filename": "arkcclient-0.3.0.post1.tar.gz", "has_sig": false, "md5_digest": "57a0d9f3af9b693305c801a93f6d2f11", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34274, "upload_time": "2016-03-15T12:42:00", "url": "https://files.pythonhosted.org/packages/53/f8/c3ee008ef18ba84b2e609b182ab09fd001ca2abff690e94b20fd1cf98976/arkcclient-0.3.0.post1.tar.gz" } ], "0.3.0.post2": [ { "comment_text": "", "digests": { "md5": "caf4385f1b7f314014995ef71e70b460", "sha256": "bbe2e1dbf13799b83be7b61fe19261537025691492d7871121d559d16e0fc0b5" }, "downloads": -1, "filename": "arkcclient-0.3.0.post2-py3-none-any.whl", "has_sig": false, "md5_digest": "caf4385f1b7f314014995ef71e70b460", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 40286, "upload_time": "2016-03-16T10:16:08", "url": "https://files.pythonhosted.org/packages/00/e4/d1bfb94791f4059972d87aff633c8643d450c3269e0c02aae9f1c36668f7/arkcclient-0.3.0.post2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d551b4c7b8cbae1f68e181dc783e3141", "sha256": "0faf02c8ac1a252804aa71dfb3083e8c20b06a1a2d00c8f0807f6bea64e0bf4e" }, "downloads": -1, "filename": "arkcclient-0.3.0.post2.tar.gz", "has_sig": false, "md5_digest": "d551b4c7b8cbae1f68e181dc783e3141", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30503, "upload_time": "2016-03-16T10:16:34", "url": "https://files.pythonhosted.org/packages/d4/58/52d9fad182b5fe26d867b92dd78bf13f668d5fc0021644c9de1b94fb6a27/arkcclient-0.3.0.post2.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "bf176bc78cb8397a72ec4e08dde6d07b", "sha256": "0835faf0d8eb9b3195ec3e9563489eb703639cf5780627780bbf152d4cb2ec99" }, "downloads": -1, "filename": "arkcclient-0.3.1-py3.4.egg", "has_sig": false, "md5_digest": "bf176bc78cb8397a72ec4e08dde6d07b", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 35167, "upload_time": "2016-03-19T16:07:25", "url": "https://files.pythonhosted.org/packages/57/77/5513fad39da6dadc72bfd91952b987d03cd1690cf0851da1c4ae173ed18f/arkcclient-0.3.1-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "ae0d11a0d38cc834c5d021aef685239a", "sha256": "e268e238a86a02f8b88cc4621f01856d2bf5283cbf7c5994e670d2271574d537" }, "downloads": -1, "filename": "arkcclient-0.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "ae0d11a0d38cc834c5d021aef685239a", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 40111, "upload_time": "2016-03-19T16:07:18", "url": "https://files.pythonhosted.org/packages/55/26/f1e5f8a7033be67f7f2e79071ef2d94c14258bf4fed5451a252ca74be73c/arkcclient-0.3.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a0bc6c5ee38fe885c0cbe1a2f757be9a", "sha256": "adf81d5080529c6079461cf20b5d5c0b6fb274186011e747ac4d8b6cb7b1c8ac" }, "downloads": -1, "filename": "arkcclient-0.3.1.tar.gz", "has_sig": false, "md5_digest": "a0bc6c5ee38fe885c0cbe1a2f757be9a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30445, "upload_time": "2016-03-19T16:07:33", "url": "https://files.pythonhosted.org/packages/c4/19/cdff38ec6a9651509f576b460bbdb89e1c99ee213376e5c52bbb63af66e4/arkcclient-0.3.1.tar.gz" } ], "0.4.0.alpha1": [ { "comment_text": "", "digests": { "md5": "3a5728c6bed6c7247fe6a64022f1af73", "sha256": "b8640bbf7ec58a115bc00e14bb6c273544aaba5711f6e6295ce26633ae8ca9ba" }, "downloads": -1, "filename": "arkcclient-0.4.0.alpha1-py3-none-any.whl", "has_sig": false, "md5_digest": "3a5728c6bed6c7247fe6a64022f1af73", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 41545, "upload_time": "2016-04-19T20:25:27", "url": "https://files.pythonhosted.org/packages/ad/f9/ba2fbf303af6273788381b97fc88b13c65e087de69823997c87166c506a1/arkcclient-0.4.0.alpha1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "69f2679c5585d0d9c8cc85cfde404379", "sha256": "c964d8449caedc9528119329376c56ce638a6267e9ffba128d74c801c3649f5d" }, "downloads": -1, "filename": "arkcclient-0.4.0.alpha1.tar.gz", "has_sig": false, "md5_digest": "69f2679c5585d0d9c8cc85cfde404379", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35480, "upload_time": "2016-04-19T20:24:59", "url": "https://files.pythonhosted.org/packages/67/c5/da7b094fb7872f08019c04dc19f2dbf02a13b5a75750094aa1a25a069b0f/arkcclient-0.4.0.alpha1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "bf176bc78cb8397a72ec4e08dde6d07b", "sha256": "0835faf0d8eb9b3195ec3e9563489eb703639cf5780627780bbf152d4cb2ec99" }, "downloads": -1, "filename": "arkcclient-0.3.1-py3.4.egg", "has_sig": false, "md5_digest": "bf176bc78cb8397a72ec4e08dde6d07b", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 35167, "upload_time": "2016-03-19T16:07:25", "url": "https://files.pythonhosted.org/packages/57/77/5513fad39da6dadc72bfd91952b987d03cd1690cf0851da1c4ae173ed18f/arkcclient-0.3.1-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "ae0d11a0d38cc834c5d021aef685239a", "sha256": "e268e238a86a02f8b88cc4621f01856d2bf5283cbf7c5994e670d2271574d537" }, "downloads": -1, "filename": "arkcclient-0.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "ae0d11a0d38cc834c5d021aef685239a", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 40111, "upload_time": "2016-03-19T16:07:18", "url": "https://files.pythonhosted.org/packages/55/26/f1e5f8a7033be67f7f2e79071ef2d94c14258bf4fed5451a252ca74be73c/arkcclient-0.3.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a0bc6c5ee38fe885c0cbe1a2f757be9a", "sha256": "adf81d5080529c6079461cf20b5d5c0b6fb274186011e747ac4d8b6cb7b1c8ac" }, "downloads": -1, "filename": "arkcclient-0.3.1.tar.gz", "has_sig": false, "md5_digest": "a0bc6c5ee38fe885c0cbe1a2f757be9a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30445, "upload_time": "2016-03-19T16:07:33", "url": "https://files.pythonhosted.org/packages/c4/19/cdff38ec6a9651509f576b460bbdb89e1c99ee213376e5c52bbb63af66e4/arkcclient-0.3.1.tar.gz" } ] }