{ "info": { "author": "Zsolt Nagy", "author_email": "Z.Nagy@t-systems.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 6 - Mature", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Programming Language :: Python", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "OTCclient\r\n==========\r\n\r\n[![Downloads](https://pypip.in/download/otcclient/badge.svg)](https://pypi.python.org/pypi/otcclient/)\r\n[![License](https://pypip.in/license/otcclient/badge.svg)](https://pypi.python.org/pypi/otcclient/)\r\n\r\n\r\nOpen Telekom Cloud API tool\r\n-----------------------------------------------\r\n\r\n**#OTC #cloud #devops #IAAS #PAAS #DBAAS #BDAAS #container-services**\r\n\r\nThe purpose of the OTC Tool is to manage OTC cloud environments via the command line in a similar way to AWS CLI.\r\nThe OTC CLI provides a common interface to operation and DEVOPS teams to manage their cloud services.\r\nOn top of that, the language implementations (Python at the moment) are secure and relatively fast.\r\n\r\nMore at [OTC site](https://console.otc.t-systems.com/console/#/home)\r\n\r\nOTC makes it easy to use the cloud environment. It exposes Native OpenStack APIs which are enhanced with extra\r\nservices and APIs from Huawei FusionSphere.\r\n\r\n\r\nDocumentation\r\n-------------\r\n\r\n[OTCclient Reference](https://docs.otc.t-systems.com/?locale=en-us)\r\n\r\nCommand line usage\r\n-----\r\n\r\n`````sh\r\n$ sudo pip install python-otcclient\r\n`````\r\nor\r\n`````sh\r\n$ git clone https://github.com/OpenTelekomCloud/python-otcclient.git\r\n`````\r\n\r\nUsage\r\n----------------\r\n\r\n`````sh\r\nOTC Tool Configuration Commands:\r\notc configure Configuring OTC client tool (mandatory in first use)\r\notc configure-proxy Configureing proxy settings ( ONLY https )\r\notc version Print OTC Client tool version\r\nS3 Commands:\r\notc s3 ls List Buckets\r\notc s3 ls mybucket List Bucket files\r\notc s3api create-bucket --bucket mybucket Create New Bucket\r\notc.bat s3 cp s3://bucketname/filename.txt /localdir/filename.txt Download from bucket to local\r\notc.bat s3 cp /localdir/filename.txt s3://bucketname/filename.txt Upload file / directory to bucket\r\nECS Flavor & Image Commands:\r\notc ecs describe-flavors List avaliable flavors (VM templates)\r\notc ecs describe-images List image templates\r\nVPC Commands:\r\notc ecs create-vpc --vpc-name myvpc --cidr 10.0.0.0/8 Crete new VPC\r\notc ecs describe-vpcs List VPCs\r\nSubnet Commands:\r\notc ecs create-subnet --subnet-name subnettest --cidr 192.168.1.0/16 --gateway-ip 192.168.1.2 --primary-dns 8.8.8.8 --secondary-dns 8.8.4.4 --availability-zone eu-de-01 --vpc-name default-vpc Create new subnet for VPC\r\notc ecs describe-subnets --output json\r\nSecurity Group Commands:\r\notc ecs create-security-group --group-name test2 --vpc-name default-vpc Create new security group\r\notc ecs describe-security-groups List existing security-groups\r\notc ecs authorize-security-group-ingress --group-name test2 --vpc-name default-vpc --protocol tcp --ethertype IPv4 --portmin 22 --portmax 25 Add new incomming rule to security-group\r\notc ecs authorize-security-group-egress --group-name test2 --vpc-name default-vpc --protocol tcp --ethertype IPv4 --portmin 7000 --portmax 7001 Add new outcomming rule to security-group\r\nKeypair Commands:\r\notc ecs describe-key-pairs List key pairs\r\notc ecs create-key-pair --key-name mykeypair \"ssh-rsa AA...\" Create key pair\r\nInstance Commands:\r\notc ecs describe-instances List VM instances\r\notc ecs describe-instances --instance-ids 097da903-ab95-44f3-bb5d-5fc08dfb6cc3 --output json Detailed information of specific VM instance (JSON)\r\notc ecs run-instances --count 1 --admin-pass yourpass123! --instance-type c1.medium --instance-name instancename --image-name Standard_CentOS_6.7_latest --subnet-name testsubnet --vpc-name testvpc --group-name testsecgroup Create new VM instance and START\r\notc ecs run-instances --count 1 --admin-pass yourpass123! --instance-type c1.medium --instance-name instancename --image-name Standard_CentOS_6.7_latest --subnet-name testsubnet --vpc-name testvpc --group-name testsecgroup --key-name testsshkeypair --file1 /otc/a=/otc/a\r\n--associate-public-ip-address --wait-instance-running Create new VM instance with injected SSH keypair, with public ip, additional file injection, wait instance created and running\r\notc ecs describe-instances List VM instances\r\notc ecs stop-instances --instance-ids b6c602b1-06d0-4bdb-b764-5d43b47abc14 Stop VM instance\r\notc ecs start-instances --instance-ids b6c602b1-06d0-4bdb-b764-5d43b47abc14 Start VM instance\r\notc ecs reboot-instances --instance-ids b6c602b1-06d0-4bdb-b764-5d43b47abc14 Reboot VM instance\r\notc ecs delete-instances --instance-ids b6c602b1-06d0-4bdb-b764-5d43b47abc14 Delete VM instance (public ip + EVS also)\r\nBackup Commands:\r\notc ecs create-snapshot --volume-id b197b8af-fe63-465f-97b6-5e5b89exxxx Create snapshot of volume\r\notc ecs describe-snapshots List backup volumes\r\notc ecs delete-snapshot --snapshot-id 0c942ff7-454e-xxxx Delete volume backup\r\nVolume Commands:\r\notc ecs describe-volumes List volumes\r\notc ecs create-volume --volume-id b197b8af-fe63-465f-97b6-5e5b89exxx --snapshot-id 0c942ff7-454e-xxxx Create volume from snapshot\r\notc ecs create-volume --count 1 --volume-name myvolume --size 100 --volume-type SATA Create new Volume [type: SSD,SAS,SATA]\r\notc ecs attach-volume --instance-ids f344b625-6f73-44f8-ad56-9fcb05a523c4 --volume-id 8c0de9a7-9f61-4613-a68a-21f456cb7298 Attach volume to instance\r\notc ecs detach-volume --instance-ids f344b625-6f73-44f8-ad56-9fcb05a523c4 --volume-id 8c0de9a7-9f61-4613-a68a-21f456cb7298 Detach volume from instance\r\notc ecs delete-volume --volume-id 8c0de9a7-9f61-4613-a68a-21f456cb7298 Delete volume\r\nPublic Ip Commands:\r\notc otc ecs describe-addresses List public ip adresses\r\notc ecs allocate-address Allocate public ip address from public ip pool\r\notc ecs associate-address --public-ip 46.29.96.246 --network-interface-id b197b8af-fe63-465f-97b6-5e5b89exxx Assodicate public ip with Network Interface Id\r\n`````\r\n\r\nLicense\r\n-------\r\n\r\n**MIT**\r\n\r\nThe MIT License (MIT)\r\n\r\nCopyright (c) 2016 OpenTelekomCloud\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n\r\nDownload\r\n********\r\n\r\n\r\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/OpenTelekomCloud/python-otcclient", "keywords": "otc,openstack,huawei,cloud,devops,t-systems,s3,obs,containers,docker,rds", "license": "MIT License", "maintainer": "", "maintainer_email": "", "name": "python-otcclient", "package_url": "https://pypi.org/project/python-otcclient/", "platform": "", "project_url": "https://pypi.org/project/python-otcclient/", "project_urls": { "Homepage": "https://github.com/OpenTelekomCloud/python-otcclient" }, "release_url": "https://pypi.org/project/python-otcclient/0.3.65/", "requires_dist": [ "boto3>=1.3.0", "prettytable>=0.7.0", "requests>=2.10.0", "jmespath>=0.7.1,<1.0.0", "Jinja2>=2.7" ], "requires_python": "", "summary": "Open Telecom Client Tool", "version": "0.3.65" }, "last_serial": 4351946, "releases": { "0.2.6": [ { "comment_text": "", "digests": { "md5": "3e5beb2eab408bcf8c7205e5eeca98f8", "sha256": "a4e10419fd4ae56c9a644bddfc9d6dcdadad7de20c6756e4a65578196de03070" }, "downloads": -1, "filename": "python_otcclient-0.2.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3e5beb2eab408bcf8c7205e5eeca98f8", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 55724, "upload_time": "2016-06-27T19:44:13", "url": "https://files.pythonhosted.org/packages/be/35/0064b1429bf76e682c06f3c8318f96f72a0fc7166275f9ec0ed9c047b7ac/python_otcclient-0.2.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "99101bbd5ba1c81a8a67c4296c723df8", "sha256": "f3e35db6071c06e4d8d9a033b5ee5535a51168d26df58ba2e25dcb9677b9e2d7" }, "downloads": -1, "filename": "python-otcclient-0.2.6.zip", "has_sig": false, "md5_digest": "99101bbd5ba1c81a8a67c4296c723df8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 60252, "upload_time": "2016-06-27T19:44:07", "url": "https://files.pythonhosted.org/packages/c8/0f/247b4d9672b97c453a30f41b12762cb965a64cb83f65979ddd0c7380a051/python-otcclient-0.2.6.zip" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "3c6d9551053c9e001653576d8a1868ef", "sha256": "9659bf3e0fd13b9ea8cc67e8e6d48b6472e9a642527e6fec5a2d0d0e5886c5ab" }, "downloads": -1, "filename": "python_otcclient-0.2.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3c6d9551053c9e001653576d8a1868ef", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 57618, "upload_time": "2016-06-30T21:44:56", "url": "https://files.pythonhosted.org/packages/9b/17/c69ebba79d4f052323ed6bf6619fb0916e8367144c1633dddc3b1cc3743a/python_otcclient-0.2.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fe98af5bfa5ea3d093b9f4bc9953425f", "sha256": "9740df4a41577e8f09b79f71231990d48456f05fdb27612721e9131f472140eb" }, "downloads": -1, "filename": "python-otcclient-0.2.7.zip", "has_sig": false, "md5_digest": "fe98af5bfa5ea3d093b9f4bc9953425f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62159, "upload_time": "2016-06-30T21:44:51", "url": "https://files.pythonhosted.org/packages/5d/03/a48e01778b49d967f5e55dfe9e43bd2eb7586282fb27aad927022fc2a549/python-otcclient-0.2.7.zip" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "f5ef1aaf4c498a0dc1b3bd2dfdf61324", "sha256": "87ab339b18181384c297846f19dee25fdfa99fc1684254910b87458a4734ee27" }, "downloads": -1, "filename": "python_otcclient-0.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f5ef1aaf4c498a0dc1b3bd2dfdf61324", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 49855, "upload_time": "2016-09-13T10:32:14", "url": "https://files.pythonhosted.org/packages/05/38/ccb09aadf30c1927a8f42b805aa1432cb0dc73497ebf4bb0740df160fc02/python_otcclient-0.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4e5a325d85956b2c0c5396f2849c5358", "sha256": "c85876cc9a3f46fee94a34fc88259cfeef74d51173ea8f97271a28d10b6436e9" }, "downloads": -1, "filename": "python-otcclient-0.3.1.zip", "has_sig": false, "md5_digest": "4e5a325d85956b2c0c5396f2849c5358", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54046, "upload_time": "2016-09-13T10:32:11", "url": "https://files.pythonhosted.org/packages/5b/c5/6a3defa42eb5261c10b3028a98b2cd7fed635224f0f003354eb2c6945bed/python-otcclient-0.3.1.zip" } ], "0.3.11": [ { "comment_text": "", "digests": { "md5": "6741f924692d9a11713a11645e522f59", "sha256": "7c9a323e372eda4d0cc23e568f1d7c510b9ae2301cbece19246a8d8bc77207ba" }, "downloads": -1, "filename": "python_otcclient-0.3.11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6741f924692d9a11713a11645e522f59", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 71452, "upload_time": "2016-10-05T08:31:10", "url": "https://files.pythonhosted.org/packages/02/b9/c389c520e0fbc522753283a9b4b39cb700a79a1624aad70e27c212d3776b/python_otcclient-0.3.11-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dd3d29c4f369685b13edd8043caedb72", "sha256": "fba90e33829dcb214d289d9acd08334f70677bb4ab8e0dd0c9a628e09a6e70af" }, "downloads": -1, "filename": "python-otcclient-0.3.11.zip", "has_sig": false, "md5_digest": "dd3d29c4f369685b13edd8043caedb72", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 76235, "upload_time": "2016-10-05T08:31:07", "url": "https://files.pythonhosted.org/packages/2a/eb/034918f24b3eeaa08f71f067d8e13158312e795b5301ff6cea79f2b63c1e/python-otcclient-0.3.11.zip" } ], "0.3.12": [ { "comment_text": "", "digests": { "md5": "5519f341698693aacd73c91e73193f02", "sha256": "9ffd8855bf92a81616053c3d6601d1187151f1cf79c013a3b478eec24e2a4516" }, "downloads": -1, "filename": "python_otcclient-0.3.12-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5519f341698693aacd73c91e73193f02", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 71263, "upload_time": "2016-10-05T08:45:54", "url": "https://files.pythonhosted.org/packages/95/02/609f8422a7e34e3a2591e2a9d34a4ba3ef44a3eeca094c81a0b8c031ac0e/python_otcclient-0.3.12-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1f6f0890d16b2d5416cd9a5350c88a4f", "sha256": "f9ff4b74849a80179bfa4b07a81311094ec0cc9f10901fcfc7e0ed5529cc3db0" }, "downloads": -1, "filename": "python-otcclient-0.3.12.zip", "has_sig": false, "md5_digest": "1f6f0890d16b2d5416cd9a5350c88a4f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 76013, "upload_time": "2016-10-05T08:45:51", "url": "https://files.pythonhosted.org/packages/ae/5c/57be3067c41970c7f03f6885c5c4408b0d804c430bcb09e3f493e55fc4c5/python-otcclient-0.3.12.zip" } ], "0.3.13": [ { "comment_text": "", "digests": { "md5": "c75abfb82da39d758f882e1e5395e8dc", "sha256": "4e0c22f35feca7a3c06d534f20bf95a4e5394fd46b0ebb6cb5a9d75098a3f6a7" }, "downloads": -1, "filename": "python_otcclient-0.3.13-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c75abfb82da39d758f882e1e5395e8dc", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 74451, "upload_time": "2016-10-05T11:57:32", "url": "https://files.pythonhosted.org/packages/96/f7/ebe4693ef47dba151e35be28d7624a8820eeb4820303d639bc351c2c29b2/python_otcclient-0.3.13-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2609d270de8e104750be223cc0a5c39d", "sha256": "d45013253b0e67929669f5cea75bbcffc69bf4259f021c3eaa77276252bfef60" }, "downloads": -1, "filename": "python-otcclient-0.3.13.zip", "has_sig": false, "md5_digest": "2609d270de8e104750be223cc0a5c39d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 79176, "upload_time": "2016-10-05T11:57:28", "url": "https://files.pythonhosted.org/packages/db/97/de1c240f65f101a5abc82d98fc56b6e8856de198a415e2b5136e624d9e9d/python-otcclient-0.3.13.zip" } ], "0.3.14": [ { "comment_text": "", "digests": { "md5": "dad7b79e83205549bb521939264096ca", "sha256": "a21289a177ce558aedce59308ad67928366a8586e48f206772ba6a0724ce72d5" }, "downloads": -1, "filename": "python_otcclient-0.3.14-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "dad7b79e83205549bb521939264096ca", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 80699, "upload_time": "2016-10-16T15:24:14", "url": "https://files.pythonhosted.org/packages/bc/93/8c3e3d7ce39066155638dbec81f73b8c6117faac29eb1931c00b5273e461/python_otcclient-0.3.14-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c806aeac39191743835a08421e2d295a", "sha256": "3b874588883bb06fc36a6079977e8ac3905a439dd056bcfdddf6a6a7a5357fbc" }, "downloads": -1, "filename": "python-otcclient-0.3.14.zip", "has_sig": false, "md5_digest": "c806aeac39191743835a08421e2d295a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 85496, "upload_time": "2016-10-16T15:24:11", "url": "https://files.pythonhosted.org/packages/ba/2b/057bfbd1d6310c806f6c2c237dc4641878d4557d718738ac1ad22c1996f0/python-otcclient-0.3.14.zip" } ], "0.3.15": [ { "comment_text": "", "digests": { "md5": "9fbe1c7e0042880e0269a1019413f109", "sha256": "96d16ef65a4d787ef4324be5a25bb7eaafb5a5607d5caf54438761ccb84d1004" }, "downloads": -1, "filename": "python_otcclient-0.3.15-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9fbe1c7e0042880e0269a1019413f109", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 81582, "upload_time": "2016-10-17T13:40:33", "url": "https://files.pythonhosted.org/packages/fe/95/d0f1efbece6d75dcdf659ac3d251f7067a491329034062d146f7de7c4c4b/python_otcclient-0.3.15-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d61edf13b908fc1030329f00308f8269", "sha256": "be64b3445255282c20a7449d4b551110b7db5896f101ed4569a2cbc8cc364034" }, "downloads": -1, "filename": "python-otcclient-0.3.15.zip", "has_sig": false, "md5_digest": "d61edf13b908fc1030329f00308f8269", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 86381, "upload_time": "2016-10-17T13:40:30", "url": "https://files.pythonhosted.org/packages/48/83/351276b918a7dc62e49926dcf09bf43093e7384b7d8606fa01fc67a550e1/python-otcclient-0.3.15.zip" } ], "0.3.18": [ { "comment_text": "", "digests": { "md5": "6adf1be938edff7a0f8506146c6ec3c1", "sha256": "abd042b2a4aec3b633b741dda12b3e64906b3904b383d687a1f7d4d836fd1482" }, "downloads": -1, "filename": "python_otcclient-0.3.18-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6adf1be938edff7a0f8506146c6ec3c1", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 85600, "upload_time": "2016-12-15T22:26:50", "url": "https://files.pythonhosted.org/packages/f3/6b/231fc2536cc39d2af82de9c4072c05b8f026b8d1a61b8b88cce383591d51/python_otcclient-0.3.18-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "385b232c84e44372d0e51c0a9ee0a54c", "sha256": "f4f586d9474347a3f7ee1869751974a32efb20da06214e7348f60bf16a7105ef" }, "downloads": -1, "filename": "python-otcclient-0.3.18.zip", "has_sig": false, "md5_digest": "385b232c84e44372d0e51c0a9ee0a54c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90435, "upload_time": "2016-12-15T22:26:47", "url": "https://files.pythonhosted.org/packages/45/9e/f1c412fca9b24aebf1528f9e3aab7d8efb3d66f61cd93c5b31bab1976757/python-otcclient-0.3.18.zip" } ], "0.3.19": [ { "comment_text": "", "digests": { "md5": "261f19f903b532061dd60d39fd35f612", "sha256": "b673d6ac6b758e8682e2aed79a311cd613b17999700286bd253a4ac59173ed93" }, "downloads": -1, "filename": "python_otcclient-0.3.19-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "261f19f903b532061dd60d39fd35f612", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 85606, "upload_time": "2016-12-15T22:37:05", "url": "https://files.pythonhosted.org/packages/7b/6a/6b91df98a3ac5e90429fbd9a7db4617e782d26d8239aae6a3ccaf24d3794/python_otcclient-0.3.19-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e1c65f41ed0bcb42fcd6d13096d5f8f0", "sha256": "cfd2ae00cebcc05e144778d28c303cbd3abcd01541562b767f8be26a727319a9" }, "downloads": -1, "filename": "python-otcclient-0.3.19.zip", "has_sig": false, "md5_digest": "e1c65f41ed0bcb42fcd6d13096d5f8f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90445, "upload_time": "2016-12-15T22:37:02", "url": "https://files.pythonhosted.org/packages/dc/9b/ed75b8ee70608edcfff3247df72db2b4d9c986e1c78fbc54ff2977d7ab1f/python-otcclient-0.3.19.zip" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "b906562bacd89f679c1eb926bb943abd", "sha256": "ef1827ad187c777c77ae663e442ea106dfc7491403fb9dfa0542a3c73189533a" }, "downloads": -1, "filename": "python_otcclient-0.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b906562bacd89f679c1eb926bb943abd", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 51683, "upload_time": "2016-09-13T10:59:14", "url": "https://files.pythonhosted.org/packages/91/41/b98d627d7caf5ac37c857ef5561131ace58c6635677611820ee64b37993a/python_otcclient-0.3.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a73acfdc0148abbf5d711b1362be77d4", "sha256": "2f131e7b38cf86433d31910b6e76a6ccf855154b2b1fec61a1c586785a5420b6" }, "downloads": -1, "filename": "python-otcclient-0.3.2.zip", "has_sig": false, "md5_digest": "a73acfdc0148abbf5d711b1362be77d4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55921, "upload_time": "2016-09-13T10:59:12", "url": "https://files.pythonhosted.org/packages/29/78/555c095d90654b7fc41fa8bb7496adabdd4519594bb251f68b67d5714ceb/python-otcclient-0.3.2.zip" } ], "0.3.20": [ { "comment_text": "", "digests": { "md5": "3929cc8a7006fddff0ba37b3e6e2e968", "sha256": "5e5da5f26fdfd68bf4b966d21447498d0d4bcc31ebeb2c188f4757094221cf53" }, "downloads": -1, "filename": "python_otcclient-0.3.20-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3929cc8a7006fddff0ba37b3e6e2e968", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 86178, "upload_time": "2017-01-12T08:13:12", "url": "https://files.pythonhosted.org/packages/19/8d/26e39b617fccd8697861d1e3ed7de517e392b43f2c28c36d988a9ff4c38f/python_otcclient-0.3.20-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "efa46444afd7b7cdb307e12d23fc21ec", "sha256": "801cd444b1cbabe58d4eafc18aa7bb41eeb9060a1b2c060a502d8a3719519bc7" }, "downloads": -1, "filename": "python-otcclient-0.3.20.zip", "has_sig": false, "md5_digest": "efa46444afd7b7cdb307e12d23fc21ec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 91027, "upload_time": "2017-01-12T08:13:09", "url": "https://files.pythonhosted.org/packages/a9/70/8145b5d46dd52e1eec360dbc4bcf5f5585daa17a03a30247cbf8f2e1e6e5/python-otcclient-0.3.20.zip" } ], "0.3.21": [ { "comment_text": "", "digests": { "md5": "686407f84be2e5f3ea865a98693a48da", "sha256": "0cd618f0072d13faa9e34510b19689b8fe3f9cc78584ca0babc959d0702e01b9" }, "downloads": -1, "filename": "python_otcclient-0.3.21-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "686407f84be2e5f3ea865a98693a48da", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 86190, "upload_time": "2017-01-13T10:37:30", "url": "https://files.pythonhosted.org/packages/14/09/64907b639bb8c901782e73b6bf426c4ff0187cbbdba2680e8ca4a481b58f/python_otcclient-0.3.21-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "79a222092447493fb060b564d5e38a20", "sha256": "0dd2a039a85d98b2f4bed00e8de754a4b86344f2f7bcf837f198ef1e73342b98" }, "downloads": -1, "filename": "python-otcclient-0.3.21.zip", "has_sig": false, "md5_digest": "79a222092447493fb060b564d5e38a20", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 91035, "upload_time": "2017-01-13T10:37:27", "url": "https://files.pythonhosted.org/packages/34/a7/ce282f4d2f759f5a7ae384fe17c3e3dcfaab8ee2169869ab3a2986ce58f4/python-otcclient-0.3.21.zip" } ], "0.3.22": [ { "comment_text": "", "digests": { "md5": "e512c4347a97b6260413dc0172281372", "sha256": "2a0218dd302dbc4dc82d07e52481fb94857a9baa7924e45cc15b4c4c331269f3" }, "downloads": -1, "filename": "python_otcclient-0.3.22-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e512c4347a97b6260413dc0172281372", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 86217, "upload_time": "2017-01-22T09:15:26", "url": "https://files.pythonhosted.org/packages/1b/52/b002cbaf3a656cdd6c3c036bdf81fa428719df12b8e941dc14976f33fdfd/python_otcclient-0.3.22-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7199bca215ee5cadde06cbf5fbf2344c", "sha256": "b4875706827a286ec46d0d796f7488b4acaa6e5c66567ae597c783a8b814e5f8" }, "downloads": -1, "filename": "python-otcclient-0.3.22.zip", "has_sig": false, "md5_digest": "7199bca215ee5cadde06cbf5fbf2344c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 91067, "upload_time": "2017-01-22T09:15:23", "url": "https://files.pythonhosted.org/packages/bd/7b/5f769eba954cd4a1ec3dea1bc6da5b4c17759e9b9fed06218d124188d647/python-otcclient-0.3.22.zip" } ], "0.3.23": [ { "comment_text": "", "digests": { "md5": "b75a70a777a1ed61d8536dd98c1e6e99", "sha256": "42a2c3cbb709a241e8eb260e0eb70191edc72eba498e6283863fdcb7af6b8f16" }, "downloads": -1, "filename": "python_otcclient-0.3.23-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b75a70a777a1ed61d8536dd98c1e6e99", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 87714, "upload_time": "2017-02-13T10:01:58", "url": "https://files.pythonhosted.org/packages/00/55/12e357d3fd14463ff80aa9653334f9e5bddf7c07252ad3c1cba55dd8edd7/python_otcclient-0.3.23-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d11236fe198330a854f18905e921df42", "sha256": "aa3c0b1ed8e5e45cef0ad6e5a252c28a945451dbc73ab73dbf1e5e1b69f98930" }, "downloads": -1, "filename": "python-otcclient-0.3.23.zip", "has_sig": false, "md5_digest": "d11236fe198330a854f18905e921df42", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 92568, "upload_time": "2017-02-13T10:01:56", "url": "https://files.pythonhosted.org/packages/c7/3d/98018469a688a6819e98cdf0efdc63e30698b27ded8d7d571571b1edafc2/python-otcclient-0.3.23.zip" } ], "0.3.25": [ { "comment_text": "", "digests": { "md5": "5416f2a674bec661b91dc96b67f588a4", "sha256": "9dd4247cdecc1cc4aea25326a06a0739077c50458183d69f8a581b441150ebc1" }, "downloads": -1, "filename": "python_otcclient-0.3.25-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5416f2a674bec661b91dc96b67f588a4", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 95160, "upload_time": "2017-03-02T18:38:27", "url": "https://files.pythonhosted.org/packages/1e/0c/57b8745dff5b4f9426843b8c3cb640b4b85c4428590c6bee7b33be3ec876/python_otcclient-0.3.25-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d2764e41639f96bd27d6d2a4554bc09d", "sha256": "13b44d614df934301de88a5f5caa2241b22ceabaa0545f9463cd628b8efaffe1" }, "downloads": -1, "filename": "python-otcclient-0.3.25.zip", "has_sig": false, "md5_digest": "d2764e41639f96bd27d6d2a4554bc09d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73399, "upload_time": "2017-03-02T18:38:18", "url": "https://files.pythonhosted.org/packages/8f/2b/61920bdad4c93d760d9a5b540a96975b072c58a7e10b9d6f29d9a97e7aad/python-otcclient-0.3.25.zip" } ], "0.3.26": [ { "comment_text": "", "digests": { "md5": "e93b0627d91decb7e31a212e50c32177", "sha256": "d274f796a22e613a6a6d2ab78284fa7f4f13e3efebe3140e54ace4675f22af3a" }, "downloads": -1, "filename": "python_otcclient-0.3.26-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e93b0627d91decb7e31a212e50c32177", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 95207, "upload_time": "2017-03-03T12:11:24", "url": "https://files.pythonhosted.org/packages/c8/c1/a7242f1a6e990d0c18a95a7300ad653b788e9812c3a9b61b8964443f84d4/python_otcclient-0.3.26-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e57fe932fe017ab446514eff37904ffc", "sha256": "0f9615f362e5a2eb39e35e0e279f7d0d1effd4c3edc985a85edec9e7ca83d777" }, "downloads": -1, "filename": "python-otcclient-0.3.26.zip", "has_sig": false, "md5_digest": "e57fe932fe017ab446514eff37904ffc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73446, "upload_time": "2017-03-03T12:11:22", "url": "https://files.pythonhosted.org/packages/cc/6e/8a2f9278c716d18a689d35247dcea450475055b06925a114faae5fc279fa/python-otcclient-0.3.26.zip" } ], "0.3.28": [ { "comment_text": "", "digests": { "md5": "80ad2b0390071f609672a843ac9bb84a", "sha256": "5733da28424af85c4e62c5304c12e0afae4cbc9ac434dacd2109864b795123fd" }, "downloads": -1, "filename": "python_otcclient-0.3.28-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "80ad2b0390071f609672a843ac9bb84a", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 95980, "upload_time": "2017-04-12T05:38:43", "url": "https://files.pythonhosted.org/packages/4f/6c/58464547f391f305c783ba60feb6f0c09b869f92e5fc32e568533ffc70f4/python_otcclient-0.3.28-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "25455d3b708eb6106a081030c3795047", "sha256": "ad9a74cc81e464f5dc90e66dcd468ff25cf9bb3350f76d2759fce1d693383909" }, "downloads": -1, "filename": "python-otcclient-0.3.28.zip", "has_sig": false, "md5_digest": "25455d3b708eb6106a081030c3795047", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73511, "upload_time": "2017-04-12T05:38:40", "url": "https://files.pythonhosted.org/packages/17/ba/97ae4070729edfef3c87cf34a712e619a42fea666dc84a3df4c221381f0e/python-otcclient-0.3.28.zip" } ], "0.3.29": [ { "comment_text": "", "digests": { "md5": "4d96419835b8647a2bf60cfca6a63436", "sha256": "321d1ba17231f0fab14ad96bc7d689b37805dbd2c7c510f64415cd26193306a9" }, "downloads": -1, "filename": "python_otcclient-0.3.29-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4d96419835b8647a2bf60cfca6a63436", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 95982, "upload_time": "2017-04-12T11:45:57", "url": "https://files.pythonhosted.org/packages/f9/36/229764eb296d0e276d4be5d4ada4d0092f1873399302e7d1f7b2b5364cd1/python_otcclient-0.3.29-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2ea1f8311a6e21f580cffa42bc1e5482", "sha256": "fd20293b6b5552c88e01da876650a007f6ea472f9382fabe5557bc0d6a5c6019" }, "downloads": -1, "filename": "python-otcclient-0.3.29.zip", "has_sig": false, "md5_digest": "2ea1f8311a6e21f580cffa42bc1e5482", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73514, "upload_time": "2017-04-12T11:45:54", "url": "https://files.pythonhosted.org/packages/4b/ef/ee63bd3ab34f9e5d68487e0000709c6046c1b1a879ac8c3521b2f5b99d44/python-otcclient-0.3.29.zip" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "b2047f882e4c50c905444b4a5d699d7d", "sha256": "8ef3ca1e22e1ee9cf849711d5d99ce66138b99a47c26afc7acfd36e65c60fdf1" }, "downloads": -1, "filename": "python_otcclient-0.3.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b2047f882e4c50c905444b4a5d699d7d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 51683, "upload_time": "2016-09-13T12:09:28", "url": "https://files.pythonhosted.org/packages/fd/6e/ff34ca82a8ba642a201a7206ac9b846a041d0ad2178cda5035d01da6eb84/python_otcclient-0.3.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "889d25bb0e08bdfc33189860bac915c0", "sha256": "60928406ee60a8185e47a4c950ee2fd454d61f8f11853404b30dc662190c47a4" }, "downloads": -1, "filename": "python-otcclient-0.3.3.zip", "has_sig": false, "md5_digest": "889d25bb0e08bdfc33189860bac915c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55924, "upload_time": "2016-09-13T12:09:26", "url": "https://files.pythonhosted.org/packages/84/d5/11085775710a2e5c5c399b5ce5b69b2459cf9106a1b6b3cf0e54860bc6e1/python-otcclient-0.3.3.zip" } ], "0.3.30": [ { "comment_text": "", "digests": { "md5": "cd7db1af03fdd916e15009413f5c92fa", "sha256": "f8b17cd184641596017ac1ae7543b7cb8b1ef23bde78d70e81e184cd73727332" }, "downloads": -1, "filename": "python_otcclient-0.3.30-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cd7db1af03fdd916e15009413f5c92fa", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 98780, "upload_time": "2017-05-04T08:43:45", "url": "https://files.pythonhosted.org/packages/b0/7b/b335972b0225b3c8afc815c6bb85e125332fea1a34a56d70d9264b73623f/python_otcclient-0.3.30-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d14ccf557d20a994b82e85e0c32bac79", "sha256": "a0beb9fa825ae926aa716809c86e50b69b9e02f8c7af4b51eb0c35b5883c031c" }, "downloads": -1, "filename": "python-otcclient-0.3.30.zip", "has_sig": false, "md5_digest": "d14ccf557d20a994b82e85e0c32bac79", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74329, "upload_time": "2017-05-04T08:43:43", "url": "https://files.pythonhosted.org/packages/25/a8/606659897c2883a4eede82bdb312a6120496dcbf0c64c3fcb95ac3f2ac76/python-otcclient-0.3.30.zip" } ], "0.3.31": [ { "comment_text": "", "digests": { "md5": "413459a1be446eacd9be271e477292ed", "sha256": "bd7c6611cec4aa781ca845c359ce2faa5118e6613e8ad35560780738671cfa95" }, "downloads": -1, "filename": "python_otcclient-0.3.31-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "413459a1be446eacd9be271e477292ed", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 110845, "upload_time": "2017-06-13T11:32:23", "url": "https://files.pythonhosted.org/packages/96/d9/b5a55f8f37007b9f9fddf2d3099c0c0ffa8ca929f9d88b304a0168e62321/python_otcclient-0.3.31-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d7c9303d2bce4314a203533e68231ce1", "sha256": "c0d8a789dd8a9099939339a77cd264370949cc774d037bbd5d82592ce092484b" }, "downloads": -1, "filename": "python-otcclient-0.3.31.zip", "has_sig": false, "md5_digest": "d7c9303d2bce4314a203533e68231ce1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80476, "upload_time": "2017-06-13T11:32:20", "url": "https://files.pythonhosted.org/packages/60/1e/5af4182835ee6abe2ff2cb21220a47ab6201930ef45e15fc22fb0cdb076c/python-otcclient-0.3.31.zip" } ], "0.3.32": [ { "comment_text": "", "digests": { "md5": "fd790c9d7dda7048af0d8dcc8e7092fa", "sha256": "da99287fa098ccf37b08a9ccd56bc51db8de8ab4f68982663757184a90d18c13" }, "downloads": -1, "filename": "python_otcclient-0.3.32-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fd790c9d7dda7048af0d8dcc8e7092fa", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 112414, "upload_time": "2017-09-04T15:22:25", "url": "https://files.pythonhosted.org/packages/05/72/6e62e8d146606c8d84b2c862abd552cacb3eeda44ce08ca2084982aff507/python_otcclient-0.3.32-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8a6564f6b96893f651f495af1f1f91c6", "sha256": "ac039b31791be89fbcecda5677b2227e93d1738c78bbf8986a6f08149c74275f" }, "downloads": -1, "filename": "python-otcclient-0.3.32.zip", "has_sig": false, "md5_digest": "8a6564f6b96893f651f495af1f1f91c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81169, "upload_time": "2017-09-04T15:22:29", "url": "https://files.pythonhosted.org/packages/be/9d/822f712fa5afbfa18b3c48418449c8fcbd05a984d7b60511a26ee5aa8330/python-otcclient-0.3.32.zip" } ], "0.3.33": [ { "comment_text": "", "digests": { "md5": "6b5990a2e23b123b2d2d54828ba1477e", "sha256": "9fe091789f291a32c903990d4a9ec9500199ea6d80cf77b3e7e7f1c10807671a" }, "downloads": -1, "filename": "python_otcclient-0.3.33-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6b5990a2e23b123b2d2d54828ba1477e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 112231, "upload_time": "2017-09-04T20:32:33", "url": "https://files.pythonhosted.org/packages/14/b9/ac9dfade643380fee5f8fd65f8aae39eaf976665bddf3749345ec8362eb4/python_otcclient-0.3.33-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6ddfe6d5e462792a90569601d92784e0", "sha256": "892f89e5915c8efda80eb1904e3f26c73d44f22d021257ac46d3a8b94a7e0f40" }, "downloads": -1, "filename": "python-otcclient-0.3.33.zip", "has_sig": false, "md5_digest": "6ddfe6d5e462792a90569601d92784e0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80986, "upload_time": "2017-09-04T20:32:36", "url": "https://files.pythonhosted.org/packages/57/f2/e979b557faddc9502bcc439d61c6d0de9df7d97067ec5b20874c1ad26239/python-otcclient-0.3.33.zip" } ], "0.3.34": [ { "comment_text": "", "digests": { "md5": "b808f319ef0315b7cbc3d7279a9f6d49", "sha256": "7f1773856060df10bf7c9ee0c159e65da6fb30638918844c2abe9d34bf2d3df8" }, "downloads": -1, "filename": "python_otcclient-0.3.34-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b808f319ef0315b7cbc3d7279a9f6d49", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 112233, "upload_time": "2017-09-04T20:44:09", "url": "https://files.pythonhosted.org/packages/e2/22/9afa3093783e5ffbee7d6bb22e72a10cfef4dbc4b649ad84ea20df587663/python_otcclient-0.3.34-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4a657bcec6ab85d1a68968142b4660ba", "sha256": "7ab170d3dea2d1098ad13205e8363f7f9bb80a98f91d2de3410e15f66e2abf78" }, "downloads": -1, "filename": "python-otcclient-0.3.34.zip", "has_sig": false, "md5_digest": "4a657bcec6ab85d1a68968142b4660ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80993, "upload_time": "2017-09-04T20:44:11", "url": "https://files.pythonhosted.org/packages/5f/af/644f9160a2e0e27cb110d7ecb5cd6fc1d203a76c0485cc28b6217b85a613/python-otcclient-0.3.34.zip" } ], "0.3.35": [ { "comment_text": "", "digests": { "md5": "f625fdc5d23738542bcf6422785d6429", "sha256": "388dab8ac91c27c16fd794eaa58d5fc4df354de463c46b4d6468a7d9fbbaa997" }, "downloads": -1, "filename": "python_otcclient-0.3.35-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f625fdc5d23738542bcf6422785d6429", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 103875, "upload_time": "2017-09-04T20:45:23", "url": "https://files.pythonhosted.org/packages/37/42/3b7cd2d9a5199a36ac8bfe990594d537cd39a8257f7bf2f73887642ab5a2/python_otcclient-0.3.35-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0e8688f027cdbe339568764b717ffe9a", "sha256": "7f2597762d059cfd6634937bc914a77c3e6502331ce9204579201f3a5af467af" }, "downloads": -1, "filename": "python-otcclient-0.3.35.zip", "has_sig": false, "md5_digest": "0e8688f027cdbe339568764b717ffe9a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80993, "upload_time": "2017-09-04T20:45:24", "url": "https://files.pythonhosted.org/packages/e1/d3/97a35fd6ee8743adb14c16249543a77a4e884f53b3d2c64ab8617b4a3733/python-otcclient-0.3.35.zip" } ], "0.3.36": [ { "comment_text": "", "digests": { "md5": "8a97f5b7adf88a8c6917bef7abc5ea19", "sha256": "cc2c861e97431de3073bcfe5ba2cfc9f54bade868b18b6ddb1e8cf7937ce27ae" }, "downloads": -1, "filename": "python_otcclient-0.3.36-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8a97f5b7adf88a8c6917bef7abc5ea19", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 103919, "upload_time": "2017-09-04T21:13:08", "url": "https://files.pythonhosted.org/packages/04/71/dc87353bf6e25657f40b87fc35581c98c860ca1c6506adff223155dac46a/python_otcclient-0.3.36-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "178ea7f7329b140b2fc853d0d539aeee", "sha256": "ac92c89727868acddb51676b32ce3ffaf06924a87a0fdc010da3fd9221e13bfe" }, "downloads": -1, "filename": "python-otcclient-0.3.36.zip", "has_sig": false, "md5_digest": "178ea7f7329b140b2fc853d0d539aeee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80993, "upload_time": "2017-09-04T21:13:12", "url": "https://files.pythonhosted.org/packages/88/c3/4e29f9b0d46ff2c4454289bcbee6c61e731ca8ad5b855e2d6a5a8afcf991/python-otcclient-0.3.36.zip" } ], "0.3.37": [ { "comment_text": "", "digests": { "md5": "0199e519b86c78f2c284e853687c664e", "sha256": "2d90dad9ea446681befae9051f2adc678b902b78a5e0d0d3c6a6e41ab0d9cbe6" }, "downloads": -1, "filename": "python_otcclient-0.3.37-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0199e519b86c78f2c284e853687c664e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 103923, "upload_time": "2017-09-04T21:17:35", "url": "https://files.pythonhosted.org/packages/ce/0b/01cd7d5ae29bfa64abdca38b0d0641a5cdc15b91b31601070d89152f40eb/python_otcclient-0.3.37-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "172459115a8f8ea192ad71df14973eab", "sha256": "7a44599314ecbb0dd24d3e04f7b8d28f020c20f6fe61db61052c7a1aa1ce4107" }, "downloads": -1, "filename": "python-otcclient-0.3.37.zip", "has_sig": false, "md5_digest": "172459115a8f8ea192ad71df14973eab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80993, "upload_time": "2017-09-04T21:17:37", "url": "https://files.pythonhosted.org/packages/ee/c6/3f3d623813d4bb48eccf43a88656aad743464d8274531f7d90c360ba5d33/python-otcclient-0.3.37.zip" } ], "0.3.38": [ { "comment_text": "", "digests": { "md5": "263a6a8b38555a50a1745ab86a317564", "sha256": "42ea9dc760ed306c5267e9d5a9dd55f866fe30dffc2f674a431c9c57943229be" }, "downloads": -1, "filename": "python_otcclient-0.3.38-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "263a6a8b38555a50a1745ab86a317564", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 103948, "upload_time": "2017-09-05T07:50:04", "url": "https://files.pythonhosted.org/packages/1a/da/436a1721ffe123a3982548a37b9f1015496b8dd0fd33ee64467699432a88/python_otcclient-0.3.38-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "771416ca1b33fa9d31665efb25ded22b", "sha256": "48e3b46d6816c1bf9cee027418512d796a8b71ab3a5215060ff6472a85094ea7" }, "downloads": -1, "filename": "python-otcclient-0.3.38.zip", "has_sig": false, "md5_digest": "771416ca1b33fa9d31665efb25ded22b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80993, "upload_time": "2017-09-05T07:50:06", "url": "https://files.pythonhosted.org/packages/57/94/5170d6330a4346c5f93f01695fa7a42befa842deec939715cf4519795981/python-otcclient-0.3.38.zip" } ], "0.3.39": [ { "comment_text": "", "digests": { "md5": "d934ad693fae04277498745fb20dd3aa", "sha256": "ff04be03ada3bbcf3564819c57a27836a74857ddc18bf0c4d1360d1454d61a89" }, "downloads": -1, "filename": "python_otcclient-0.3.39-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d934ad693fae04277498745fb20dd3aa", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 103972, "upload_time": "2017-09-05T07:59:59", "url": "https://files.pythonhosted.org/packages/33/19/ab9cdff9ea987758b7a898cababc0e78f18c6dbf76f056c0a4c9c33144ea/python_otcclient-0.3.39-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a148f45c43d15866dd029a507d0ff43e", "sha256": "905f48656676495b3a38943bd5d926a65fc7933ffb559fe3f976b164a8339ca5" }, "downloads": -1, "filename": "python-otcclient-0.3.39.zip", "has_sig": false, "md5_digest": "a148f45c43d15866dd029a507d0ff43e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80993, "upload_time": "2017-09-05T08:00:01", "url": "https://files.pythonhosted.org/packages/00/a5/dc1df568adf9de161ef302d89ebecf21b642e696ba3ed11c22dc15265207/python-otcclient-0.3.39.zip" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "eccc3694f511655ef4e467bb875e35b9", "sha256": "5eebae2fc22eff636ac5c29ae42da047a21fd8d2ddc315bd1b885a5f5a92f4b7" }, "downloads": -1, "filename": "python_otcclient-0.3.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "eccc3694f511655ef4e467bb875e35b9", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 51848, "upload_time": "2016-09-13T21:28:47", "url": "https://files.pythonhosted.org/packages/84/a2/9305ff8d16823aa5299e5c3998e0b49d2752ab7a6a0bc54c0641d19cba7a/python_otcclient-0.3.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "204ee56376f59b2a06178f9b2dd3958b", "sha256": "d81e8a5ae9f69036193a1487b540aced6dc6effd536296e789462f4b4aa9a785" }, "downloads": -1, "filename": "python-otcclient-0.3.4.zip", "has_sig": false, "md5_digest": "204ee56376f59b2a06178f9b2dd3958b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56084, "upload_time": "2016-09-13T21:28:44", "url": "https://files.pythonhosted.org/packages/62/80/749389a9714cce7d29fa641c6b6a6a01d3fc2006623727bbf27a6d06eca2/python-otcclient-0.3.4.zip" } ], "0.3.40": [ { "comment_text": "", "digests": { "md5": "34918a5fd4246eb4952b894b5deb12f8", "sha256": "4394ad9f1112a88371e7fcc972dd3fbcce6ae1a3e16d24fb3b093d6ee1566f09" }, "downloads": -1, "filename": "python_otcclient-0.3.40-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "34918a5fd4246eb4952b894b5deb12f8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 103964, "upload_time": "2017-09-05T08:02:11", "url": "https://files.pythonhosted.org/packages/d6/da/802a7e20908a2ad6e000fd9fb08f5601d75d3ea0e65e552328df12f8a0e8/python_otcclient-0.3.40-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fa16af0dcdf5feff7948640255451e2c", "sha256": "6a8ffaa828e82c17ddcc2beb44a94e6903aaad3650294f03decd6353a415bb3e" }, "downloads": -1, "filename": "python-otcclient-0.3.40.zip", "has_sig": false, "md5_digest": "fa16af0dcdf5feff7948640255451e2c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80993, "upload_time": "2017-09-05T08:02:12", "url": "https://files.pythonhosted.org/packages/64/ac/c4789ebcd6b0e53e01cc0c1f31c3afd212a0d4d170f5c1a50caad86977ce/python-otcclient-0.3.40.zip" } ], "0.3.41": [ { "comment_text": "", "digests": { "md5": "231d1be89d9bb627d73cefa1c14a5e4a", "sha256": "ce3b11b0c91f62da6ccd1d4681f2fe5e69f5425356550f3de8166b21d4c56dba" }, "downloads": -1, "filename": "python_otcclient-0.3.41-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "231d1be89d9bb627d73cefa1c14a5e4a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 103956, "upload_time": "2017-09-05T08:57:58", "url": "https://files.pythonhosted.org/packages/cb/86/0fb2cc198ad51d5e0daffd2cd0b0d55277defd881c6d34ceb69aca8a7630/python_otcclient-0.3.41-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e2801d5a35c50406b9fa1e74d4b0f4c9", "sha256": "ed8f1d3d0d43d97f427bd4596fea5cfaf0618cfbece1a836e9f2654582e1daa9" }, "downloads": -1, "filename": "python-otcclient-0.3.41.zip", "has_sig": false, "md5_digest": "e2801d5a35c50406b9fa1e74d4b0f4c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80983, "upload_time": "2017-09-05T08:58:01", "url": "https://files.pythonhosted.org/packages/30/26/32ef97fd416e3df5f744dc2a92be8a287f252adbf2b3cb990a3c0d518e45/python-otcclient-0.3.41.zip" } ], "0.3.42": [ { "comment_text": "", "digests": { "md5": "f070a5198296f7b14ad7dc3de47e9454", "sha256": "0a00147ff0eda782f1a22f0165f8e612a6ff78747fdffbc0cf61087dbe6e3ff5" }, "downloads": -1, "filename": "python_otcclient-0.3.42-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f070a5198296f7b14ad7dc3de47e9454", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 103951, "upload_time": "2017-09-05T09:02:34", "url": "https://files.pythonhosted.org/packages/77/fd/dcc962e6a992ff4fea1794abc6fcf64fcecf07f9d7eec8e9f8e98ba2eab2/python_otcclient-0.3.42-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cf3797ee4bd9a9bad5711805f2e05d0c", "sha256": "b861f6a0cc9e820730ed626133304e9e3f552af6609a71a976d7490be97ec8e1" }, "downloads": -1, "filename": "python-otcclient-0.3.42.zip", "has_sig": false, "md5_digest": "cf3797ee4bd9a9bad5711805f2e05d0c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80978, "upload_time": "2017-09-05T09:02:36", "url": "https://files.pythonhosted.org/packages/6c/73/c7a7f4ca62cc16920f0f0bf307708bb060d53f564308f8814c41344244c0/python-otcclient-0.3.42.zip" } ], "0.3.43": [ { "comment_text": "", "digests": { "md5": "735b2ef3f9a10c6f61983a1802a34757", "sha256": "ad2d15b2cdd2f4f817507f5fda6730a5088835a04fa651f9371d55fad8e3ac8d" }, "downloads": -1, "filename": "python_otcclient-0.3.43-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "735b2ef3f9a10c6f61983a1802a34757", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 103971, "upload_time": "2017-09-05T09:06:16", "url": "https://files.pythonhosted.org/packages/ba/98/b2045b4b84f631c85ee8cfdb6b10960b912a5ebd22513899d79931c19e48/python_otcclient-0.3.43-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "790ba05e4e92ea89057d6d577c5ef93a", "sha256": "4e617bb5152826cb371ffdf2183d0e26387cd4606c217802d1c4fe29f7e7f0d6" }, "downloads": -1, "filename": "python-otcclient-0.3.43.zip", "has_sig": false, "md5_digest": "790ba05e4e92ea89057d6d577c5ef93a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80998, "upload_time": "2017-09-05T09:06:17", "url": "https://files.pythonhosted.org/packages/b2/b6/373faad24260c32d31009a9ab587efa0961c7452b95ba4f3cfdf5641626b/python-otcclient-0.3.43.zip" } ], "0.3.44": [ { "comment_text": "", "digests": { "md5": "95376f4df4b689a81735ecd3e6cd0246", "sha256": "046e50a067e0342f4eeb79d6d419c91c7f2da8f099f96da49421eed882b50392" }, "downloads": -1, "filename": "python_otcclient-0.3.44-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "95376f4df4b689a81735ecd3e6cd0246", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 103997, "upload_time": "2017-09-05T09:08:05", "url": "https://files.pythonhosted.org/packages/44/be/af0ad24d39127b3b761246e88bc5ec2068bb66c4c57038eb442da3cf5418/python_otcclient-0.3.44-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ad8f7cea52d10d9e4f7b405584bddfd2", "sha256": "4b850ba5baa8be5ff54138816885c4c8e3a67527fef1f5d9698dbf9d506eede0" }, "downloads": -1, "filename": "python-otcclient-0.3.44.zip", "has_sig": false, "md5_digest": "ad8f7cea52d10d9e4f7b405584bddfd2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81023, "upload_time": "2017-09-05T09:08:08", "url": "https://files.pythonhosted.org/packages/1c/01/478620587cbfdc4c365fa9377aa45424f178aa41da991ab6a525a6f119c5/python-otcclient-0.3.44.zip" } ], "0.3.45": [ { "comment_text": "", "digests": { "md5": "82d21ecbf68f50eebd311bca215e796b", "sha256": "4ec9c638c70e715730fd6270fc93150d31220b1e7081a44a06d5bfa5514055c5" }, "downloads": -1, "filename": "python_otcclient-0.3.45-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "82d21ecbf68f50eebd311bca215e796b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 103994, "upload_time": "2017-09-05T09:19:29", "url": "https://files.pythonhosted.org/packages/d4/c7/ed077d7da179279446a356e5a11199565d16974b88a16c5c9bd5a5930d06/python_otcclient-0.3.45-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9a8e2b29c9c1a7841c9a4d01424b5b77", "sha256": "248381b1ac758b4f8553f389f0db43839c3991c02812d479013294a979ffe3f5" }, "downloads": -1, "filename": "python-otcclient-0.3.45.zip", "has_sig": false, "md5_digest": "9a8e2b29c9c1a7841c9a4d01424b5b77", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81023, "upload_time": "2017-09-05T09:19:31", "url": "https://files.pythonhosted.org/packages/35/11/0fea15897628643ac5b93714670d94719fefe2f40b5510c27dab637ff481/python-otcclient-0.3.45.zip" } ], "0.3.46": [ { "comment_text": "", "digests": { "md5": "b81719ae31b96528bd54a706cec6f05f", "sha256": "d2d970441776ec27780ab2f685a2212ced25e3c36f5e7af84ef320f49efbd932" }, "downloads": -1, "filename": "python_otcclient-0.3.46-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b81719ae31b96528bd54a706cec6f05f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 103993, "upload_time": "2017-09-05T09:22:56", "url": "https://files.pythonhosted.org/packages/93/0f/c203e6be6cbf5bb9d4206e8557e88885ecab81dd92a24ca3927e672fb75c/python_otcclient-0.3.46-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "faee6d8d8581e92cf0b7e8b30ddd2c28", "sha256": "aad9bf36cccc339d7b7ab5ba77561eda1a8b5d794d164ccf5f29accf795cdea7" }, "downloads": -1, "filename": "python-otcclient-0.3.46.zip", "has_sig": false, "md5_digest": "faee6d8d8581e92cf0b7e8b30ddd2c28", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81023, "upload_time": "2017-09-05T09:22:58", "url": "https://files.pythonhosted.org/packages/89/f0/cfa5075c9e983f5a49d60834b32a2ed90c8b53694e21f1d522ef410d595a/python-otcclient-0.3.46.zip" } ], "0.3.47": [ { "comment_text": "", "digests": { "md5": "0c5a76b8984ba5814587e93bfc70ccba", "sha256": "19a58048ce1aaef933c5fbfe6d24a3e52773b0aaded305d2d39495aaa8dfa735" }, "downloads": -1, "filename": "python_otcclient-0.3.47-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0c5a76b8984ba5814587e93bfc70ccba", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 103975, "upload_time": "2017-09-05T09:27:43", "url": "https://files.pythonhosted.org/packages/d1/93/76ccd6a6fd0da51b6284b9dd6d8d2edb8b982c7229f72bebedb2434a0d96/python_otcclient-0.3.47-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bc5e383a9fd5b0014ea4a81907dd8816", "sha256": "7399ee3fbbd72b11c763f16338e450218d82d60b4374033e6d57b767fb8247d9" }, "downloads": -1, "filename": "python-otcclient-0.3.47.zip", "has_sig": false, "md5_digest": "bc5e383a9fd5b0014ea4a81907dd8816", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81023, "upload_time": "2017-09-05T09:27:45", "url": "https://files.pythonhosted.org/packages/d2/9b/9463bd26d5974937de7dfd2f882847df7e5823f984c406eafa780fd6d394/python-otcclient-0.3.47.zip" } ], "0.3.48": [ { "comment_text": "", "digests": { "md5": "27740c889369de94a44a084d941921d0", "sha256": "e4e6cc1aa5e2e9faee0512a65f47011de5130f2c5737d2c47f930ba3f9edea95" }, "downloads": -1, "filename": "python_otcclient-0.3.48-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "27740c889369de94a44a084d941921d0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 104006, "upload_time": "2017-09-05T10:56:22", "url": "https://files.pythonhosted.org/packages/8a/9f/2f415a87e25a4e3a08a1ee428d6a9ae1fb0ebc61756d8f5048236b4f70d6/python_otcclient-0.3.48-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "222a025fe517e1cf971cc09a0789d9f7", "sha256": "faffd4229c80e963f17418093d1c45db91b2a5a223ebc247e47998d94d209809" }, "downloads": -1, "filename": "python-otcclient-0.3.48.zip", "has_sig": false, "md5_digest": "222a025fe517e1cf971cc09a0789d9f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81023, "upload_time": "2017-09-05T10:56:26", "url": "https://files.pythonhosted.org/packages/21/4c/5f30d2dc1f3cabc367d0e9b211d95cfd8849a8b5dcf9f151faa0eb6d1c3c/python-otcclient-0.3.48.zip" } ], "0.3.49": [ { "comment_text": "", "digests": { "md5": "a46a888de0f81fa4029cc6c4b32a933f", "sha256": "415ae165790a3f143ee70cb80d39303dd8efe3532bd21ede14c73cf9b071dbc3" }, "downloads": -1, "filename": "python_otcclient-0.3.49-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a46a888de0f81fa4029cc6c4b32a933f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 103930, "upload_time": "2017-09-05T14:58:22", "url": "https://files.pythonhosted.org/packages/ca/2b/2a288939e69e054caf413d3c368b5902aa98b6736f02e630fde9ea7312f3/python_otcclient-0.3.49-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8f3010d73cee8b9e5706fb21d0bf40a1", "sha256": "e145dacaa98764ca8d0429f20ec3dd5a433b3d509ea8d77af738102a4e2522cb" }, "downloads": -1, "filename": "python-otcclient-0.3.49.zip", "has_sig": false, "md5_digest": "8f3010d73cee8b9e5706fb21d0bf40a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81023, "upload_time": "2017-09-05T14:58:26", "url": "https://files.pythonhosted.org/packages/57/10/822a81cd4ed44219a875847a82d614c85b196c91c1bcf9349cefbd4dfbca/python-otcclient-0.3.49.zip" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "6c63103f527777cb1a7569fa656cfe22", "sha256": "b6c33610cd2ae54fee40f66167d10d43a1b0663ef966ec1171fc2fbd2d704b36" }, "downloads": -1, "filename": "python_otcclient-0.3.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6c63103f527777cb1a7569fa656cfe22", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 51820, "upload_time": "2016-09-13T21:51:57", "url": "https://files.pythonhosted.org/packages/bc/7f/87ec45e02d255d7211ebf345b3668417e45aad7582162ab9fc27874fcce2/python_otcclient-0.3.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ce3cbb7557747553124bb15d9c9ea81f", "sha256": "eb76f5339fb93f3d036b21669292ab02d2c483f1999cd14aae87e9a461596ac5" }, "downloads": -1, "filename": "python-otcclient-0.3.5.zip", "has_sig": false, "md5_digest": "ce3cbb7557747553124bb15d9c9ea81f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56055, "upload_time": "2016-09-13T21:51:54", "url": "https://files.pythonhosted.org/packages/d8/22/6bc46c577c893d149d28dcaa4a000019d106f706bc0f95beec3e46848634/python-otcclient-0.3.5.zip" } ], "0.3.50": [ { "comment_text": "", "digests": { "md5": "7b912eb9c616ea73cb99446c865dfd66", "sha256": "fbda0acf334b76ff1b1851c9e60a7f2b837a49dbd12fbc4be0520dd68500d035" }, "downloads": -1, "filename": "python_otcclient-0.3.50-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7b912eb9c616ea73cb99446c865dfd66", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 103942, "upload_time": "2017-09-05T15:14:39", "url": "https://files.pythonhosted.org/packages/89/1b/37e2de36262470dc3a8fab0889af4d3b2d9d866c35cde507e9b313b76512/python_otcclient-0.3.50-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d3084bda2a2353f96495e571926914da", "sha256": "3fcb68fb7038c84a2c60a8aced07c6ee2db5d3ad429bda7e3fd0a045828edc9c" }, "downloads": -1, "filename": "python-otcclient-0.3.50.zip", "has_sig": false, "md5_digest": "d3084bda2a2353f96495e571926914da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81038, "upload_time": "2017-09-05T15:14:40", "url": "https://files.pythonhosted.org/packages/af/75/3d9f967e8ed198d9e3272a8d605137ba85e146a438cd09753787fdbd83e1/python-otcclient-0.3.50.zip" } ], "0.3.52": [ { "comment_text": "", "digests": { "md5": "890c27e6776beba20982e4ce1a6bc991", "sha256": "7d376db273685f12400f3d181ae66c7a11a9e11e91124342b0b92f14dcf42762" }, "downloads": -1, "filename": "python_otcclient-0.3.52-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "890c27e6776beba20982e4ce1a6bc991", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 104482, "upload_time": "2017-09-07T12:11:40", "url": "https://files.pythonhosted.org/packages/f4/95/9ac5b6441b71129ecfa8384744efe1057e63703ae1da1de2bfdec780784b/python_otcclient-0.3.52-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ea95bfdfad08529295f2b1ec4d3b9566", "sha256": "d2bbb571ea5a2dcdb619f38421b1ec015001e919e1f2038321b23ca9adbf08d7" }, "downloads": -1, "filename": "python-otcclient-0.3.52.zip", "has_sig": false, "md5_digest": "ea95bfdfad08529295f2b1ec4d3b9566", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81092, "upload_time": "2017-09-07T12:11:49", "url": "https://files.pythonhosted.org/packages/ab/21/f7f9505f4800323dc11fdf662491060afbb5f44ed8327c21f05ceaff9275/python-otcclient-0.3.52.zip" } ], "0.3.53": [ { "comment_text": "", "digests": { "md5": "12dc4794d5face33fc5962be40311391", "sha256": "0ff533e613a3370dad51ac24ec41e7048cfa2cb12ddee94c553c72d235558095" }, "downloads": -1, "filename": "python_otcclient-0.3.53-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "12dc4794d5face33fc5962be40311391", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 104494, "upload_time": "2017-09-07T13:35:30", "url": "https://files.pythonhosted.org/packages/b5/41/fae3b9528b8334d20a31d117ab978e467b30f161622082c9b935bda52028/python_otcclient-0.3.53-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "893123a6c0ecb7f6a22c1b9f7ff9556b", "sha256": "65a7d7ea16b5c3d321bf9603f98f067f634e28bf339178577d44a00994a7d001" }, "downloads": -1, "filename": "python-otcclient-0.3.53.zip", "has_sig": false, "md5_digest": "893123a6c0ecb7f6a22c1b9f7ff9556b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81114, "upload_time": "2017-09-07T13:35:42", "url": "https://files.pythonhosted.org/packages/ba/30/ff61396b7ad143bf8c6adeda494bb56bc8595180c050da974c1ea6f52e23/python-otcclient-0.3.53.zip" } ], "0.3.54": [ { "comment_text": "", "digests": { "md5": "b30e306d7e482b7b3a52983bbb6e2d3b", "sha256": "3fffef0a435ec1ceea952fef80d8e6c0dab59f71f7d0fe9a2971688203585ea7" }, "downloads": -1, "filename": "python_otcclient-0.3.54-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b30e306d7e482b7b3a52983bbb6e2d3b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 104497, "upload_time": "2017-09-07T13:42:29", "url": "https://files.pythonhosted.org/packages/a5/64/439ac7fb66a8b806846ae4fb88456b611f46a6a87eb406702ec21094ee99/python_otcclient-0.3.54-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ce8847a83601a0c9c3bd74a1d1cdf81e", "sha256": "3cb56722502bb622db28f53b2ecffbe05dbaa61a76e90aff8e3064e98dfa865b" }, "downloads": -1, "filename": "python-otcclient-0.3.54.zip", "has_sig": false, "md5_digest": "ce8847a83601a0c9c3bd74a1d1cdf81e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81118, "upload_time": "2017-09-07T13:42:38", "url": "https://files.pythonhosted.org/packages/20/05/2bca3c1c9b7b6e9cea2d8a23e01f911eb850982103999f2d928393aef850/python-otcclient-0.3.54.zip" } ], "0.3.55": [ { "comment_text": "", "digests": { "md5": "06bc18e4270c43c96a5a71ee207008f9", "sha256": "7c21a0043f9962cd93de3390bfae5f437de2c9b1df55c9f80d9fc7e29b08112d" }, "downloads": -1, "filename": "python_otcclient-0.3.55-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "06bc18e4270c43c96a5a71ee207008f9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 104493, "upload_time": "2017-09-10T16:21:47", "url": "https://files.pythonhosted.org/packages/e4/3c/881ecdeb8515987f54e67b4a51c5f9cd4501e1c8a3aa4e8da076ab07a3e5/python_otcclient-0.3.55-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "732e820b218f7818d1bda994fb34f2b7", "sha256": "7677a3392e9bedb36a2f5103fee859fb5028eee85ebbbfa41e6bc11952342309" }, "downloads": -1, "filename": "python-otcclient-0.3.55.zip", "has_sig": false, "md5_digest": "732e820b218f7818d1bda994fb34f2b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81113, "upload_time": "2017-09-10T16:21:49", "url": "https://files.pythonhosted.org/packages/fe/fa/d84590b36b2cc4e228cc818b0b3123b979bd31c00ff18469ca7ab4aa88c4/python-otcclient-0.3.55.zip" } ], "0.3.56": [ { "comment_text": "", "digests": { "md5": "121a448892b934000190382ae06e986f", "sha256": "ea6c710b87d8eb83e9cf30c4f522a355a6fe02ec783f522be9f5c5ca30c0af9b" }, "downloads": -1, "filename": "python_otcclient-0.3.56-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "121a448892b934000190382ae06e986f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 104510, "upload_time": "2017-09-12T08:02:39", "url": "https://files.pythonhosted.org/packages/66/6d/b92675ccc6f4ffbbcd173fd13bf8978794bb9c520f818ae9b7c836abdec5/python_otcclient-0.3.56-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a081d2c9faec198c2a0de613cf1fa0eb", "sha256": "f495d549b089d55f6e98ff8ea773f46eae6ce3e1f5c18de5c7becd66d56ac6c0" }, "downloads": -1, "filename": "python-otcclient-0.3.56.zip", "has_sig": false, "md5_digest": "a081d2c9faec198c2a0de613cf1fa0eb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81133, "upload_time": "2017-09-12T08:02:41", "url": "https://files.pythonhosted.org/packages/83/68/9a69748a373aad3c412b3173ff5ef15f5ed7c9eb104b4f787e062063dbdc/python-otcclient-0.3.56.zip" } ], "0.3.57": [ { "comment_text": "", "digests": { "md5": "198b06666a2eb7763cbbe41d18ca81d6", "sha256": "953959444f8459c251d99fcff8e205d2767da897d88bc852ec3a9ccb586c961f" }, "downloads": -1, "filename": "python_otcclient-0.3.57-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "198b06666a2eb7763cbbe41d18ca81d6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 104510, "upload_time": "2017-09-12T08:09:08", "url": "https://files.pythonhosted.org/packages/8d/90/6e7f7151ba22bc315859ca412f6221a8631b1b8b072283b845baee0f9c50/python_otcclient-0.3.57-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8246cef452a234aeb11ea615e6feb112", "sha256": "47f7db9630dbadfe1e4dc97bc390edba7f7a1e2cb0b087e7297ef74032083264" }, "downloads": -1, "filename": "python-otcclient-0.3.57.zip", "has_sig": false, "md5_digest": "8246cef452a234aeb11ea615e6feb112", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81132, "upload_time": "2017-09-12T08:09:10", "url": "https://files.pythonhosted.org/packages/60/22/c5821f16743fadbd9a5fe36051e50caa47133e1463c0782673e8127f4fcd/python-otcclient-0.3.57.zip" } ], "0.3.58": [ { "comment_text": "", "digests": { "md5": "492540177aecbc0325c7d0f08d9c4a85", "sha256": "ad5dfec5628a8fdda980308f0c3feacbfa41fe7dfdc625418f437efea4ab4174" }, "downloads": -1, "filename": "python_otcclient-0.3.58-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "492540177aecbc0325c7d0f08d9c4a85", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 104508, "upload_time": "2017-09-12T08:11:02", "url": "https://files.pythonhosted.org/packages/48/de/fc6070e20e76cceb4e1eb3c8eacaf285d38b034f9978173312313a55ad72/python_otcclient-0.3.58-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "818c637e0034d78434d910571c229a8d", "sha256": "63c26147b14fb025b11a240372233add0434a8734dbfb48b40af9b3138c0be63" }, "downloads": -1, "filename": "python-otcclient-0.3.58.zip", "has_sig": false, "md5_digest": "818c637e0034d78434d910571c229a8d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81132, "upload_time": "2017-09-12T08:11:03", "url": "https://files.pythonhosted.org/packages/46/be/4c78998ba1d46d3f3bd997feb26d4d65ea21994fed1de88fee20af524e3d/python-otcclient-0.3.58.zip" } ], "0.3.59": [ { "comment_text": "", "digests": { "md5": "7dcc72ac3d6405bb76c298cf056b1f0f", "sha256": "6c274a9d40901033cf8746130ab60bb34d2fe663230d6343872e5fa9dc938105" }, "downloads": -1, "filename": "python_otcclient-0.3.59-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7dcc72ac3d6405bb76c298cf056b1f0f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 106806, "upload_time": "2018-02-19T12:55:56", "url": "https://files.pythonhosted.org/packages/2d/73/3da440771ca3741086949b11270dfe4c8aa3234d046eb2eda9fa1ee2ec20/python_otcclient-0.3.59-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "27289a67d4fc8f7dd0cf5bc081b06836", "sha256": "1d34cd4f9d51f4817e83587f0eefb518fb242eaaeee0c98a432d7643092bf593" }, "downloads": -1, "filename": "python-otcclient-0.3.59.zip", "has_sig": false, "md5_digest": "27289a67d4fc8f7dd0cf5bc081b06836", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 83516, "upload_time": "2018-02-19T12:55:58", "url": "https://files.pythonhosted.org/packages/2d/6a/c5b2091be5156238101dce5d598adee894ec11c8970aa59ff2f597a2bf23/python-otcclient-0.3.59.zip" } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "0973bad40c5bcadb4f4473daa54b986a", "sha256": "a0a3184ea7e56b45db0c89c3f05d6892e269479665091c17793672f17f85571b" }, "downloads": -1, "filename": "python_otcclient-0.3.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0973bad40c5bcadb4f4473daa54b986a", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 64208, "upload_time": "2016-09-29T13:31:45", "url": "https://files.pythonhosted.org/packages/42/69/1a63708584d8e53c296f627ad5a8d52b26c27f531fdce7bafd2520de43fd/python_otcclient-0.3.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "44c6ceb285dfc5bc2461c67071318790", "sha256": "751444ba5575445c48f628dc19fc805b17bab4f54f3240654b4b2882fc6bfc4b" }, "downloads": -1, "filename": "python-otcclient-0.3.6.zip", "has_sig": false, "md5_digest": "44c6ceb285dfc5bc2461c67071318790", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 68654, "upload_time": "2016-09-29T13:31:42", "url": "https://files.pythonhosted.org/packages/fb/b1/f379f2ffc9b43cb39d300660151a8a5822cee3121ea93824539cb0cb0396/python-otcclient-0.3.6.zip" } ], "0.3.60": [ { "comment_text": "", "digests": { "md5": "17b84adbd806c017d7421df7290905ca", "sha256": "52fd4a5e024745c179ed1aaac360f4629c6d390dad535d970b6d2e415958f79e" }, "downloads": -1, "filename": "python_otcclient-0.3.60-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "17b84adbd806c017d7421df7290905ca", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 110539, "upload_time": "2018-03-04T14:41:23", "url": "https://files.pythonhosted.org/packages/28/ed/0a6ed6928719880573fbe5ca1d02db6a7a7840debca8289fa188b9792a4b/python_otcclient-0.3.60-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d1303a736957d4e755f967aefc7aaecf", "sha256": "75ec551f79555ff2491641c7bc0442123e4d07e2760b069291fe7eb462e069f8" }, "downloads": -1, "filename": "python-otcclient-0.3.60.zip", "has_sig": false, "md5_digest": "d1303a736957d4e755f967aefc7aaecf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 85325, "upload_time": "2018-03-04T14:41:24", "url": "https://files.pythonhosted.org/packages/f0/10/55401959b3929ef2d0d9daaff602af4c4abadf206b553f00be587163ef2b/python-otcclient-0.3.60.zip" } ], "0.3.61": [ { "comment_text": "", "digests": { "md5": "873886bbdd935204d486cd716a315b13", "sha256": "942f752c1166c74f8e50e9734e35cf8eb6eb6bc3e6659503798f0fbe2e890777" }, "downloads": -1, "filename": "python_otcclient-0.3.61-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "873886bbdd935204d486cd716a315b13", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 110545, "upload_time": "2018-03-04T19:25:39", "url": "https://files.pythonhosted.org/packages/cd/08/d99aff8269376c53d98a5a6581cf1d6419c4159677891cbf2a88c4ad8270/python_otcclient-0.3.61-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d8342c0c98e29560310bcfece594cda7", "sha256": "c670a296001b2e3dccded2e4b2c8c693ed7b0d12334885a76386e75b4b6ae271" }, "downloads": -1, "filename": "python-otcclient-0.3.61.zip", "has_sig": false, "md5_digest": "d8342c0c98e29560310bcfece594cda7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 85328, "upload_time": "2018-03-04T19:25:40", "url": "https://files.pythonhosted.org/packages/57/67/361c489bd396daa6bd49559dc232329bbbd2280fa942206bc49d7b85ba50/python-otcclient-0.3.61.zip" } ], "0.3.64": [ { "comment_text": "", "digests": { "md5": "a4e776a8c75645ddcf491d6936f16f28", "sha256": "e70fcfee5ea59dad6a2d0cb3d96e34f8b879df4ae6b84b2d9be9ebf91b5f05bb" }, "downloads": -1, "filename": "python_otcclient-0.3.64-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a4e776a8c75645ddcf491d6936f16f28", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 110576, "upload_time": "2018-09-23T21:28:41", "url": "https://files.pythonhosted.org/packages/c7/4a/5683e2729d7b102d915cb0dba949371bc6d08896e513b58eb685d52bf72c/python_otcclient-0.3.64-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "74f360a3cd7520d0d19e8fc0deaa4521", "sha256": "34fdba203bf76542cc8782047ca2c48c823b54ea344fd069149d4b31baea0122" }, "downloads": -1, "filename": "python-otcclient-0.3.64.zip", "has_sig": false, "md5_digest": "74f360a3cd7520d0d19e8fc0deaa4521", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 85346, "upload_time": "2018-09-23T21:28:42", "url": "https://files.pythonhosted.org/packages/bd/a2/fa890c3e65c1466ea0bc63a03401c463de4babeb9e091e9726c75aae3908/python-otcclient-0.3.64.zip" } ], "0.3.65": [ { "comment_text": "", "digests": { "md5": "759d667cba0b7247190e3cb7a5729e0a", "sha256": "89c861484fd1ca2cba9bea025c2f0c1e5a4a55edd20bd81ede57e8b8dbe2bda5" }, "downloads": -1, "filename": "python_otcclient-0.3.65-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "759d667cba0b7247190e3cb7a5729e0a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 110844, "upload_time": "2018-10-08T12:59:22", "url": "https://files.pythonhosted.org/packages/f2/d7/4542310e53c8287c1cd876d1ac07f23f2e03e6f1e3b9132e6960bd36a806/python_otcclient-0.3.65-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5c559bbc21c975a20c9fc0076b92ca50", "sha256": "82a76649f6dab641fff1660dcd1ffb519c557da3a7d7ce3314f854baf42b839e" }, "downloads": -1, "filename": "python-otcclient-0.3.65.zip", "has_sig": false, "md5_digest": "5c559bbc21c975a20c9fc0076b92ca50", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 85611, "upload_time": "2018-10-08T12:59:24", "url": "https://files.pythonhosted.org/packages/0b/41/bfb0f15640d11a033be963a26874ff9034835d8c2cd68c82b236c8b23692/python-otcclient-0.3.65.zip" } ], "0.3.7": [ { "comment_text": "", "digests": { "md5": "2b34e3ffa1737b9e4a0bd206b6a9dcdd", "sha256": "48d084f047846cbb141db486419003f87adc69e4fc209f49b8c3d34ebe2874d4" }, "downloads": -1, "filename": "python_otcclient-0.3.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2b34e3ffa1737b9e4a0bd206b6a9dcdd", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 63957, "upload_time": "2016-09-29T13:33:16", "url": "https://files.pythonhosted.org/packages/e5/72/28e54ae7239ac8bc53099c117c63e46b82891479bb58a45848849bfd8889/python_otcclient-0.3.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3d5c446481ac49f794a65080454e151e", "sha256": "d20e3583397d686657c26a2325f49bc2b29ac8b9a751b2241ba85fd1c6ba976e" }, "downloads": -1, "filename": "python-otcclient-0.3.7.zip", "has_sig": false, "md5_digest": "3d5c446481ac49f794a65080454e151e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 68407, "upload_time": "2016-09-29T13:33:13", "url": "https://files.pythonhosted.org/packages/aa/8b/3e1267e7b0bac8ae4f376cacc0143a68b82b48436156c162316ad087104d/python-otcclient-0.3.7.zip" } ], "0.3.8": [ { "comment_text": "", "digests": { "md5": "1b952d5508f3237387b23e5da0502cff", "sha256": "1653ea61889cd3f1956b79a34f0f7558fbf382ced4b75b06d33eeb0b97a8e9e5" }, "downloads": -1, "filename": "python_otcclient-0.3.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1b952d5508f3237387b23e5da0502cff", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 64866, "upload_time": "2016-09-29T19:05:12", "url": "https://files.pythonhosted.org/packages/53/37/5186f156ad5caa3f4775d156b95d9539884103addb9ea0e05e68742367c0/python_otcclient-0.3.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "19e18d8d18ae4f26eb32bd62132eb115", "sha256": "097f7c24c6fb6618adb31d014dc425f847139d07d7fdf036b3344858428f7033" }, "downloads": -1, "filename": "python-otcclient-0.3.8.zip", "has_sig": false, "md5_digest": "19e18d8d18ae4f26eb32bd62132eb115", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69316, "upload_time": "2016-09-29T19:05:08", "url": "https://files.pythonhosted.org/packages/45/98/5ebb2da811043fd8630e5758d131823cda2a976838b098e662ea32b525ad/python-otcclient-0.3.8.zip" } ], "0.3.9": [ { "comment_text": "", "digests": { "md5": "7918a9f952328fd470478565fb110967", "sha256": "524a4d20f3028ec6af3a68973d21ed9096a93e235c00896bfc6967640d2128b9" }, "downloads": -1, "filename": "python_otcclient-0.3.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7918a9f952328fd470478565fb110967", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 65384, "upload_time": "2016-09-29T22:33:58", "url": "https://files.pythonhosted.org/packages/bc/74/12f1c5d5e72386a2976d2f38953377522a9e7af32ad6bed502590ab29f42/python_otcclient-0.3.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "43048152d32c7126cd7579500ad4a7b3", "sha256": "8904b2d5f064f5acd281bef63b2a1176d6254a799a7394d51df5476a1e0efdf3" }, "downloads": -1, "filename": "python-otcclient-0.3.9.zip", "has_sig": false, "md5_digest": "43048152d32c7126cd7579500ad4a7b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69847, "upload_time": "2016-09-29T22:33:54", "url": "https://files.pythonhosted.org/packages/22/f8/4c6ccf4956cb527c3519b4baab78ba253510468442363047180c7a32230d/python-otcclient-0.3.9.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "759d667cba0b7247190e3cb7a5729e0a", "sha256": "89c861484fd1ca2cba9bea025c2f0c1e5a4a55edd20bd81ede57e8b8dbe2bda5" }, "downloads": -1, "filename": "python_otcclient-0.3.65-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "759d667cba0b7247190e3cb7a5729e0a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 110844, "upload_time": "2018-10-08T12:59:22", "url": "https://files.pythonhosted.org/packages/f2/d7/4542310e53c8287c1cd876d1ac07f23f2e03e6f1e3b9132e6960bd36a806/python_otcclient-0.3.65-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5c559bbc21c975a20c9fc0076b92ca50", "sha256": "82a76649f6dab641fff1660dcd1ffb519c557da3a7d7ce3314f854baf42b839e" }, "downloads": -1, "filename": "python-otcclient-0.3.65.zip", "has_sig": false, "md5_digest": "5c559bbc21c975a20c9fc0076b92ca50", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 85611, "upload_time": "2018-10-08T12:59:24", "url": "https://files.pythonhosted.org/packages/0b/41/bfb0f15640d11a033be963a26874ff9034835d8c2cd68c82b236c8b23692/python-otcclient-0.3.65.zip" } ] }