{ "info": { "author": "Gautam krishna R", "author_email": "r.gautamkrishna@gmail.com", "bugtrack_url": null, "classifiers": [], "description": "SoCLI |PyPI version| |Build Status| |Collaborizm|\n=================================================\n\nStack Overflow command line written in python. Using SoCLI you can\nsearch and browse Stack Overflow without leaving the terminal. Just use\nthe **socli** command:\n\n.. figure:: https://cloud.githubusercontent.com/assets/8397274/24831468/86c290aa-1cb7-11e7-8161-2665d0c02e4b.gif\n :alt: SoCLI in action\n\n SoCLI in action\n\nInstallation\n~~~~~~~~~~~~\n\nSupported platforms\n'''''''''''''''''''\n\n- Linux\n- Windows\n- Mac\n\nRequirements\n''''''''''''\n\n- Python 2.0 or higher\n\nFor Linux\n'''''''''\n\nInstall **python** and just use **pip** command to install **socli**:\n\n.. code:: bash\n\n sudo apt-get install python python-pip\n sudo pip install socli\n\nFor Windows\n'''''''''''\n\n`Download and install Python `__.\nDon't forget to check the option \"Add to path\".\n\nOpen a command prompt with administrative privileges and use **pip**\ncommand to install **socli**:\n\n.. code:: bash\n\n pip install socli\n\nUse **easy\\_install** if your python path have a space in it. `Read\nmore: \"Failed to create\nprocess\" `__:\n\n::\n\n easy_install socli\n\nFor Mac (via homebrew)\n''''''''''''''''''''''\n\nInstall **python** and **socli**:\n\n.. code:: bash\n\n brew install python\n easy_install pip\n pip install socli\n\nUpdating\n~~~~~~~~\n\nUse the command below to update your existing version of **socli** to\nthe newest version so that you won't miss any features:\n\n.. code:: bash\n\n sudo pip install --upgrade socli\n\nUsage\n~~~~~\n\nQuick Search\n''''''''''''\n\nUse the **socli** command followed by the search query:\n\n.. code:: bash\n\n socli for loop in python syntax\n\nThe above command will search for the query \"*for loop in python\nsyntax*\" and displays the first most voted question in Stack Overflow\nwith its most voted answer. Pretty quick, right?\n\nInteractive Search\n''''''''''''''''''\n\nYou can search Stack Overflow interactively by using the command below:\n\n.. code:: sh\n\n socli -iq html error 404\n\nThis will display a list of questions from Stack Overflow for the query\n\"*html error 404*\" and it will allow you to choose any of the questions\nyou like interactively. When you choose a question, it will display the\ncomplete description of the chosen question with its most voted answer.\nYou can also browse through the other answers to that question using the\nup and down arrow keys as well as go back to the list of questions using\nthe left arrow key.\n\nManual Search\n'''''''''''''\n\nThis will allow you to specify a requested question number for your\nquery. For example, consider the following command:\n\n.. code:: sh\n\n socli -r 2 -q javascript prototype function\n\nThis command searches for \"*javascript prototype function*\" in Stack\nOverflow and displays the second question that contains it.\n\nTopic-Based Search\n''''''''''''''''''\n\nStack Overflow supports topic by using tags. **socli** allows you to\nquery Stack Overflow based on specific tags. Just specify the tag via\nthe following command:\n\n.. code:: sh\n\n socli -t javascript -q window.open\n\nYou can also specify multiple tags, Just seporate them with a comma:\n\n.. code:: sh\n\n socli -t javascript,node.js -q window.open\n\nSee the complete list of tags `here `__.\n\nUser Profile Browsing\n'''''''''''''''''''''\n\nJust use the command below to set your `user\nID `__ in socli. When you\nexecute the command next time, it will automaticially fetch the data.\n\n.. code:: sh\n\n socli -u\n\nif your are an extensive user of StackOverflow, **socli** allows you to\nset your own API key to overcome the `StackOverflow API\nLimitations `__. Just use the command\nbelow:\n\n.. code:: sh\n\n socli --api\n\nYou can get an API Key\n`here `__ by registering as a\nnew app. Please don't use SoCLI as app name.\n\nPosting a New Question\n''''''''''''''''''''''\n\nIf you can't find an answer for your question in Stack Overflow,\n**socli** allows you to create a new question via the web browser. Just\ntype the command below and **socli** will open the new question page of\nStack Overflow in the web browser for you:\n\n.. code:: sh\n\n socli -n\n\nSyntax:\n~~~~~~~\n\n**socli** has the following syntax\n\n::\n\n Usage: socli [ Arguments] < Search Query >\n\nArguments (optional)\n \n\n+-----------+-----------+-----------+-----------+\n| Short | Long | Descripti | Example |\n| | | on | |\n+===========+===========+===========+===========+\n| -q | --query | Used to | **socli |\n| | | specify | -q |\n| | | the query | query** |\n| | | when | |\n| | | arguments | |\n| | | are used. | |\n| | | A query | |\n| | | value | |\n| | | must be | |\n| | | passed to | |\n| | | it. If it | |\n| | | is used | |\n| | | alone | |\n| | | (socli -q | |\n| | | query) | |\n| | | then it | |\n| | | will | |\n| | | display | |\n| | | the same | |\n| | | result as | |\n| | | **socli | |\n| | | query**. | |\n+-----------+-----------+-----------+-----------+\n| -i | --interac | Used to | **socli |\n| | tive | search | -i -q |\n| | | interacti | query** |\n| | | vely. | |\n| | | It | |\n| | | doesn't | |\n| | | take any | |\n| | | values. | |\n| | | It must | |\n| | | be | |\n| | | followed | |\n| | | by a -q | |\n| | | or | |\n| | | --query | |\n| | | after it. | |\n+-----------+-----------+-----------+-----------+\n| -r | --res | Used for | **socli |\n| | | manual | -r 4 -q |\n| | | search. | query** |\n| | | It takes | |\n| | | the | |\n| | | question | |\n| | | number as | |\n| | | the | |\n| | | argument | |\n| | | and it | |\n| | | must be | |\n| | | followed | |\n| | | by a -q | |\n| | | or | |\n| | | --query | |\n| | | after it. | |\n+-----------+-----------+-----------+-----------+\n| -t | --tag | Specifies | **socli |\n| | | the tag | -t js -q |\n| | | to search | query** |\n| | | for the | |\n| | | query on | |\n| | | Stack | |\n| | | Overflow. | |\n| | | It must | |\n| | | be | |\n| | | followed | |\n| | | by a -q | |\n| | | or | |\n| | | --query | |\n| | | after it. | |\n+-----------+-----------+-----------+-----------+\n| -n | --new | Opens the | **socli |\n| | | web | --new** |\n| | | browser | |\n| | | to create | |\n| | | a new | |\n| | | question | |\n| | | on Stack | |\n| | | Overflow. | |\n+-----------+-----------+-----------+-----------+\n| -u | --user | Displays | **socli |\n| | | the user | -u |\n| | | profile | 22656** |\n| | | informati | |\n| | | ons. | |\n| | | If no | |\n| | | argument | |\n| | | is given, | |\n| | | it will | |\n| | | display | |\n| | | your | |\n| | | profile. | |\n+-----------+-----------+-----------+-----------+\n| -a | --api | Sets a | **socli |\n| | | custom | --api** |\n| | | API key. | |\n+-----------+-----------+-----------+-----------+\n| -d | --del | Deletes | **socli |\n| | | the | -d** |\n| | | configura | |\n| | | tion | |\n| | | file | |\n| | | generated | |\n| | | by socli | |\n| | | -u | |\n| | | manually. | |\n+-----------+-----------+-----------+-----------+\n| -s | --sosearc | SoCLI | **socli |\n| | h | uses | -s -q for |\n| | | Google | loop |\n| | | search by | python** |\n| | | default | |\n| | | to search | |\n| | | for | |\n| | | questions | |\n| | | . | |\n| | | To | |\n| | | override | |\n| | | this and | |\n| | | use | |\n| | | stackover | |\n| | | flow's | |\n| | | default | |\n| | | search | |\n| | | instead. | |\n+-----------+-----------+-----------+-----------+\n| -h | --help | Displays | **socli |\n| | | the help | --help** |\n| | | text. | |\n+-----------+-----------+-----------+-----------+\n\nQuery\n \n\nThis term refers to what you're searching for in Stack Overflow.\n\nFeatures\n~~~~~~~~\n\nThese are the amazing features of SoCLI: \\* Manual Search \\*\nInteractively browse Stack Overflow using the interactive mode \\*\nColoured interface \\* Question stats view \\* Tag support \\* Can open the\npage in a browser \\* Can view user profiles \\* Can create a new question\nvia the web browser\n\nTo Do\n~~~~~\n\nCommand line interface for: - [ ] Stack Overflow authentication - [ ]\nPosting to Stack Overflow - [ ] Upvote answer - [ ] Comment on an answer\n- [ ] Browsing stackoverflow home page\n\nPlease check out the list of\n`issues `__.\n\nContributing\n~~~~~~~~~~~~\n\nIf you are willing to contribute to SoCLI project, you are awesome! Just\nfollow the steps below:\n\n1. Fork it!\n2. Make a local clone:\n ``sh git clone https://github.com/{YOUR_USERNAME}/socli.git``\n\n3. Switch to the directory: ``cd socli``\n4. Create your new branch: ``git checkout -b feature name``\n5. Make necessary changes to this source code\n6. Add changes to git index by using ``git add --all .``\n7. Commit your changes: ``git commit -am 'Added new feature'``\n8. Push to the branch: ``git push``\n9. Submit a `new pull\n request `__ \n\nContributors\n~~~~~~~~~~~~\n\nSpecial thanks to these superheroes: \\* `Elliott\nBeach `__ for improving color support by\nadding colorama\n`#29 `__, For making\nSoCLI more interactive\n`#35 `__.\n`36 `__\n`#40 `__ You rocks...\n\\* `Aaxu `__ for the PR:\n`#59 `__,\n`#58 `__,\n`#56 `__,\n`#54 `__, and\n`#53 `__. High Five! \\*\n`Killbee `__ for making SoCLI colorful\n`#3 `__ \\* `Sam\nDean `__ for adding Macintosh SoCLI\ninstallation instructions\n`#1 `__ \\*\n`Plinio89s `__ for adding the check for\ncolor support `#8 `__ \\*\n`nagracks `__ for improving readability of\nthe SoCLI code `#11 `__\n\\* `mwwynne `__ for adding links to the\nSoCLI `#13 `__ \\*\n`Carlos J. Puga Medina `__ for finding the bug\n`#11 `__ on SoCLI\npython2 version and for making `SoCLI freshports\nport `__ \\* `Jon\nEricson `__ (*Community Manager, Stack\nOverflow*) for the PR\n`#18 `__ and letting me\nknow about the Stack Overflow attribution policy. Thanks for the `blog\npost `__ \\*\n`Ankit Kr. Singh `__ for fixing some\ntypos PR `#21 `__\n`#23 `__ \\* `Harsha\nAlva `__ for fixing windows encoding\nproblem PR `#24 `__ \\*\n`Pia Mancini `__ for adding SoCLI to\nOpenCollective `#27 `__\n\\* `Aditya Tandon `__ for the issue\n`#30 `__ \\* `Akshatha\nNayak `__ for your first contribution to an\nopen source project. PR\n`#31 `__ \\* `Levi\nSabah `__ for PR\n`#43 `__ \\*\n`liamhawkins `__ for PR\n`#44 `__ and\n`#45 `__ \\*\n`Arount `__ for fixing issue\n`#48 `__ via PR\n`#47 `__ \\* `C\u00e9dric\nPicard `__ for the issue\n`#42 `__ \\* `Amartya\nChaudhuri `__ for his first contribution\nto SOCLI `#51 `__\n\nBugs\n~~~~\n\nIf you are experiencing any bugs, don\u2019t forget to open a `new\nissue `__.\n\nThanks\n~~~~~~\n\n- Thanks to all the existing users of SoCLI.\n- Thanks to all upvoters and followers on reddit.\n- `impress that girl in the Starbucks by browsing SO with your CLI app\n XD\n XD `__\n by `insane0hflex `__.\n Thanks for the post :wink:\n- Special thanks to people who wrote about SoCLI on their blogs and\n websites:\n\n - `wykop.pl `__\n - `memect.com `__\n - `pseudoscripter `__\n - `b.hatena.ne.jp `__\n - `jericson.github.io `__\n - `The really big list of really interesting Open Source\n projects `__\n - `Ostechnix `__\n - `lamiradadelreplicante.com `__\n - `dou.ua `__\n\n- Tweets:\n\n - [@cyb3rops](https://twitter.com/cyb3rops/status/747380776350650368)\n - [@pythontrending](https://twitter.com/pythontrending/status/745635512803819521)\n\n- Thanks to my favourite IDE JetBrains PyCharm\n\nSponsors\n~~~~~~~~\n\nSponsor SoCLI on\n`Collaborizm `__ or on\n`Open Collective `__:\n\n- Thanks `Steven Reubenstone `__\n for contributing $5 for the issue\n `#22 `__\n\nLiked it?\n~~~~~~~~~\n\nHope you liked this project, don't forget to give it a star\n\n.. |PyPI version| image:: https://badge.fury.io/py/socli.svg\n :target: https://badge.fury.io/py/socli\n.. |Build Status| image:: https://travis-ci.org/gautamkrishnar/socli.svg?branch=master\n :target: https://travis-ci.org/gautamkrishnar/socli\n.. |Collaborizm| image:: https://img.shields.io/badge/Collaborizm-Join%20Project-brightgreen.svg\n :target: https://www.collaborizm.com/project/S1cbUui6", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://www.github.com/gautamkrishnar/socli", "keywords": "stack overflow cli", "license": "BSD", "maintainer": "", "maintainer_email": "", "name": "socli", "package_url": "https://pypi.org/project/socli/", "platform": "", "project_url": "https://pypi.org/project/socli/", "project_urls": { "Homepage": "http://www.github.com/gautamkrishnar/socli" }, "release_url": "https://pypi.org/project/socli/3.9/", "requires_dist": null, "requires_python": "", "summary": "Stack overflow commnand line interface. SoCLI allows you to search and browse stack overflow from the terminal.", "version": "3.9" }, "last_serial": 5714387, "releases": { "1.2": [ { "comment_text": "", "digests": { "md5": "37e4f446039701a99e11e8408c58af5a", "sha256": "63a2917d95aa311d14038738788c72fede992aaf7aef08ccc9e050dadebd60c9" }, "downloads": -1, "filename": "socli-1.2.zip", "has_sig": false, "md5_digest": "37e4f446039701a99e11e8408c58af5a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5059, "upload_time": "2016-06-22T08:46:43", "url": "https://files.pythonhosted.org/packages/6b/e4/abb06f4cfdd11fc541140686f45ac1d3bed5d0301b8dc529b464e7ed4a60/socli-1.2.zip" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "93da1c7f448132b117b5e445fac503d4", "sha256": "1bfecc38132e51c140179b44999b964a87ef6a23989fb3b8d8024b739dd1bafa" }, "downloads": -1, "filename": "socli-1.3a.zip", "has_sig": false, "md5_digest": "93da1c7f448132b117b5e445fac503d4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5463, "upload_time": "2016-06-23T11:56:53", "url": "https://files.pythonhosted.org/packages/5d/15/e827a46e79bf9d695956ab2c6f54e9ad2a4b89a666934931fcbbaf970175/socli-1.3a.zip" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "ba346bd54bdaed1ec766428fd4653048", "sha256": "ab46fd91a009ff67bb3472d4b0c6ef2eeb30b94a92d98d153133f6c7cc842a31" }, "downloads": -1, "filename": "socli-1.4a.zip", "has_sig": false, "md5_digest": "ba346bd54bdaed1ec766428fd4653048", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5818, "upload_time": "2016-06-23T16:07:34", "url": "https://files.pythonhosted.org/packages/38/97/cda2bbd4f0e34a4dd0dcedffd634807ffd57ed858a7ba8b98c2181e39135/socli-1.4a.zip" } ], "1.5": [ { "comment_text": "", "digests": { "md5": "02ca610b74c1c32ebb703189fcc13788", "sha256": "fe0b7f11a386873929de07bf535056e0a0f55d8519ff55a1bcceab40a619e97d" }, "downloads": -1, "filename": "socli-1.5a.zip", "has_sig": false, "md5_digest": "02ca610b74c1c32ebb703189fcc13788", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5879, "upload_time": "2016-06-24T08:57:04", "url": "https://files.pythonhosted.org/packages/33/c0/4bf31ad5eefb9ebc0d5f26548119e8f0574f526c6f5fc057551289ac9eb4/socli-1.5a.zip" } ], "1.6": [ { "comment_text": "", "digests": { "md5": "4ee55a3380976c9c34c7fa5b57870f70", "sha256": "4f9dc82882415f582b0cb04ccf2c95d13606979a4491322d099983f27c4509d2" }, "downloads": -1, "filename": "socli-1.6.zip", "has_sig": false, "md5_digest": "4ee55a3380976c9c34c7fa5b57870f70", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6201, "upload_time": "2016-06-25T06:10:40", "url": "https://files.pythonhosted.org/packages/4b/83/3278ee76be73cc48ee5924b8285acde0f9164bab54cd0a8784be7c0d43f1/socli-1.6.zip" } ], "1.7": [ { "comment_text": "", "digests": { "md5": "5ce0712d51a3414ef0f73a17113c5399", "sha256": "6aece2454b5e064e43ae88913be1bf085fcc4112015875f83dcbf654b9806adf" }, "downloads": -1, "filename": "socli-1.7.zip", "has_sig": false, "md5_digest": "5ce0712d51a3414ef0f73a17113c5399", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6368, "upload_time": "2016-06-25T10:39:28", "url": "https://files.pythonhosted.org/packages/e3/4f/fb978a65127c287c526f323c0ec1543e9cdcc45a51e0eac72300b2d45f18/socli-1.7.zip" } ], "1.8": [ { "comment_text": "", "digests": { "md5": "cb8505611e501ada12619881d6a4d983", "sha256": "04ed933cfa216d03b2a1e2e8f56ec2b6520d631a68b152f70ae8fb244c2708a9" }, "downloads": -1, "filename": "socli-1.8.zip", "has_sig": false, "md5_digest": "cb8505611e501ada12619881d6a4d983", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6417, "upload_time": "2016-07-03T21:59:28", "url": "https://files.pythonhosted.org/packages/33/93/e8a1fbea01a219d56c82ae68b7b03e604bce4b65397795ecfbade33aa177/socli-1.8.zip" } ], "1.9": [ { "comment_text": "", "digests": { "md5": "573a8ee8876ac7a13c5b4e396409ebf7", "sha256": "97abda16ec39379bff30237b03d7509474cdc6f97f424fe675593b4e25f447f8" }, "downloads": -1, "filename": "socli-1.9.zip", "has_sig": false, "md5_digest": "573a8ee8876ac7a13c5b4e396409ebf7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6672, "upload_time": "2016-07-06T07:13:27", "url": "https://files.pythonhosted.org/packages/7d/3a/a2ae467ef151b65a86d64254d560cc6fae027a63a6895e4f31f924e183d6/socli-1.9.zip" } ], "2.0": [ { "comment_text": "", "digests": { "md5": "da9448b4f7737d599e6ccc2ef9333d1f", "sha256": "db18e840b99a1236cd27f17324ef59a0d1f54dc6ad052a794c7dfce12abbeef3" }, "downloads": -1, "filename": "socli-2.0a.zip", "has_sig": false, "md5_digest": "da9448b4f7737d599e6ccc2ef9333d1f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6752, "upload_time": "2016-07-06T20:19:57", "url": "https://files.pythonhosted.org/packages/9b/f5/81001943a6ea81e9c35de474a1f9dba6b18fa9017fd38267bf16fbdcda6b/socli-2.0a.zip" } ], "2.1": [ { "comment_text": "", "digests": { "md5": "bbe0931279a1b3b8bd6eb4322000ac44", "sha256": "4bcdc22dc8cbe474ef593f1c694be71058c12ce413845fe0471b4d16c31cda5f" }, "downloads": -1, "filename": "socli-2.1.zip", "has_sig": false, "md5_digest": "bbe0931279a1b3b8bd6eb4322000ac44", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6750, "upload_time": "2016-07-06T20:34:18", "url": "https://files.pythonhosted.org/packages/19/90/3c767eb7839156d4125f7d1b95cf9b1f3e410ec1c75f5abcb12cb24d4400/socli-2.1.zip" } ], "2.2": [ { "comment_text": "", "digests": { "md5": "826e2d4dbe3c3f60e71b4ec07adeaed8", "sha256": "6b031caf09f0584b21c5cc13f99d6cdfce255dca358fa68e8c6599f12fbe1eec" }, "downloads": -1, "filename": "socli-2.2.zip", "has_sig": false, "md5_digest": "826e2d4dbe3c3f60e71b4ec07adeaed8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17413, "upload_time": "2016-07-12T03:08:49", "url": "https://files.pythonhosted.org/packages/9a/cf/d96eab3b6963349e0057a2fe10d6e2ae36cea9a8618b61896678b6d38d11/socli-2.2.zip" } ], "2.3": [ { "comment_text": "", "digests": { "md5": "a8bd194edcb35df26f79f7aee6d28c44", "sha256": "32992b0218267a4cdaeefd1d29c43385b4b54bedfcd7e82caf312097192eb197" }, "downloads": -1, "filename": "socli-2.3.zip", "has_sig": false, "md5_digest": "a8bd194edcb35df26f79f7aee6d28c44", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17420, "upload_time": "2016-07-17T10:19:03", "url": "https://files.pythonhosted.org/packages/47/07/566d278bbbb37ba23131a847f4f047d1c3eda4cb971540235c885ded8665/socli-2.3.zip" } ], "2.4": [ { "comment_text": "", "digests": { "md5": "10ae340f41c8f639778337e902d15235", "sha256": "42c143c655279ef7391b5db59d7c26bd88fbae03295b7732cc7afcc4b33dabeb" }, "downloads": -1, "filename": "socli-2.4.zip", "has_sig": false, "md5_digest": "10ae340f41c8f639778337e902d15235", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17438, "upload_time": "2016-08-16T20:41:29", "url": "https://files.pythonhosted.org/packages/e1/35/e5966e52481c226c7364c4cbd0a01338ead67ed39cff0659879cfb32800b/socli-2.4.zip" } ], "2.5": [ { "comment_text": "", "digests": { "md5": "0cd4b3266581ca0018a8d8c6c3511346", "sha256": "e341f0db621e7d4da065b5c1b92c92366eae32f07fd58a8ca114ab79e528ad69" }, "downloads": -1, "filename": "socli-2.5.zip", "has_sig": false, "md5_digest": "0cd4b3266581ca0018a8d8c6c3511346", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17501, "upload_time": "2016-10-26T19:26:08", "url": "https://files.pythonhosted.org/packages/de/7a/1ec83cddae7324db78697ce2b0bb378cc80154df889a57dd02ed5b7068e0/socli-2.5.zip" } ], "2.6": [ { "comment_text": "", "digests": { "md5": "4e92447ae4be39303c3347df8179c74a", "sha256": "38e33b5917d8663f5b1a83e91ae67438e0a85fb905b7eeeb8c66f017efedd47f" }, "downloads": -1, "filename": "socli-2.6.zip", "has_sig": false, "md5_digest": "4e92447ae4be39303c3347df8179c74a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17500, "upload_time": "2016-11-15T17:50:43", "url": "https://files.pythonhosted.org/packages/53/21/ecc28a456ddc028d94c04b076b0e5e5802cd11d8ac20a1ace427dad3d5bc/socli-2.6.zip" } ], "2.8": [ { "comment_text": "", "digests": { "md5": "f176cf2e7e7d5772cc136addabb20770", "sha256": "8d525bdc21e4b62bbf2b31f1fda9d5abc2ec956ebd814556703a0225be34a105" }, "downloads": -1, "filename": "socli-2.8.zip", "has_sig": false, "md5_digest": "f176cf2e7e7d5772cc136addabb20770", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17994, "upload_time": "2016-12-11T05:38:33", "url": "https://files.pythonhosted.org/packages/b4/1c/fda2ca6cefdc1ee3ba83e82aa9e2704de6437ff2f3dc42434c472e1ca386/socli-2.8.zip" } ], "2.9": [ { "comment_text": "", "digests": { "md5": "378c382d12a724799cf9d487f1871cb2", "sha256": "9b4d50d6f92009e71e69c3d12d4e5a012822948aaa69779c8368dddc9e7652a5" }, "downloads": -1, "filename": "socli-2.9.tar.gz", "has_sig": false, "md5_digest": "378c382d12a724799cf9d487f1871cb2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13497, "upload_time": "2017-01-05T23:54:30", "url": "https://files.pythonhosted.org/packages/ab/74/623f21d242a8b99252e429e14ff8b9b767406bb3ecef72450c9aea573014/socli-2.9.tar.gz" } ], "3.0": [ { "comment_text": "", "digests": { "md5": "3aaf536e9ec676f8f2e155aa67acfde8", "sha256": "f6391832181a516a2102804d14ffaa9bd403e00d8e5ca7b8f50d1179055652b9" }, "downloads": -1, "filename": "socli-3.0-py2.7.egg", "has_sig": false, "md5_digest": "3aaf536e9ec676f8f2e155aa67acfde8", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 16222, "upload_time": "2017-01-16T20:37:50", "url": "https://files.pythonhosted.org/packages/d4/75/d412d93b6208f8f108a20ae49cfafa2b0c7e4e8450ede354366164b4b592/socli-3.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "aec1f8aec6bd4619ed0216724f305411", "sha256": "f18aef025250f4f13811761f0a63bce549de39c75a6e8ee614bf6adb418a52de" }, "downloads": -1, "filename": "socli-3.0.tar.gz", "has_sig": false, "md5_digest": "aec1f8aec6bd4619ed0216724f305411", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10983, "upload_time": "2017-01-16T20:37:52", "url": "https://files.pythonhosted.org/packages/5d/d3/64d048923521eb760085fa03004b905535f08fd21fdff51e3a09597a5086/socli-3.0.tar.gz" } ], "3.1": [ { "comment_text": "", "digests": { "md5": "551d3fb28950c2f99d9e719a90b994b4", "sha256": "d472f6f156b0e3999a24c8614d2eb5d66c1148a5236a4d41ef10ac98a19f4655" }, "downloads": -1, "filename": "socli-3.1-py2.7.egg", "has_sig": false, "md5_digest": "551d3fb28950c2f99d9e719a90b994b4", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 16206, "upload_time": "2017-02-08T19:19:55", "url": "https://files.pythonhosted.org/packages/76/20/a62851b20154f91b2b75700aa1c4327d684e2249ad5f563b2e0895fb0896/socli-3.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "b34405bbe1625ac002e00c0003955213", "sha256": "6e09c8418ae9ff2e8cc72e4b94117b76e4ff88815ff3614ac80ae68e635cafec" }, "downloads": -1, "filename": "socli-3.1.tar.gz", "has_sig": false, "md5_digest": "b34405bbe1625ac002e00c0003955213", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10978, "upload_time": "2017-02-08T19:19:56", "url": "https://files.pythonhosted.org/packages/90/dc/2d0816744645baf1b0b6708ab9a5cb497570bded27a53655e6e9bcbf819d/socli-3.1.tar.gz" } ], "3.2": [ { "comment_text": "", "digests": { "md5": "1392095df5e2bfe60f5463e3e99178f2", "sha256": "108b4db0ac1312b4a7918ad7d822a046d6a3113ce75e675c4b81f113b4fadaad" }, "downloads": -1, "filename": "socli-3.2-py2.7.egg", "has_sig": false, "md5_digest": "1392095df5e2bfe60f5463e3e99178f2", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 21392, "upload_time": "2017-03-04T15:50:59", "url": "https://files.pythonhosted.org/packages/42/8c/81ef09639ad1639ceb48c8903c5a9509653858132ad9af9cbb9c683e6f72/socli-3.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "c4179ad21b26652d49bcb584320fbd51", "sha256": "6abf426233a39b927a77fbe24cd13d8db3c10c9d5deaada09e73f3ac02906bc0" }, "downloads": -1, "filename": "socli-3.2.tar.gz", "has_sig": false, "md5_digest": "c4179ad21b26652d49bcb584320fbd51", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13644, "upload_time": "2017-03-04T15:51:01", "url": "https://files.pythonhosted.org/packages/90/2b/05211be3f370c70c61dbb73cb53abb7a20bb474aa25072b4c26df61ebdac/socli-3.2.tar.gz" } ], "3.3": [ { "comment_text": "", "digests": { "md5": "08457afa7fa325c80944148793f27757", "sha256": "049724a981c60c5ba99c84a9f6740883030a99fce3204e850bbabedd4cad4a04" }, "downloads": -1, "filename": "socli-3.3-py2.7.egg", "has_sig": false, "md5_digest": "08457afa7fa325c80944148793f27757", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 21612, "upload_time": "2017-03-05T06:40:24", "url": "https://files.pythonhosted.org/packages/f8/9f/dcab446023f7b070ba3127e78b9eca99eb6bdfcaa874fd7fee8c7dd87e84/socli-3.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "99bc4a54e93e75a35e44099661ad4ba0", "sha256": "4714ccb37a185886d314568b0339f37db90de89b5f926e095867d0100d5242f8" }, "downloads": -1, "filename": "socli-3.3.tar.gz", "has_sig": false, "md5_digest": "99bc4a54e93e75a35e44099661ad4ba0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13706, "upload_time": "2017-03-05T06:40:26", "url": "https://files.pythonhosted.org/packages/16/51/09081557acd005f5d6b661074f5e90ba7dad2d359f10743735c61c77a0cf/socli-3.3.tar.gz" } ], "3.4": [ { "comment_text": "", "digests": { "md5": "e5112441091837fb9afdc40c000c4935", "sha256": "6385fed86283b250fa2b889b609c275ba1135d51a005a472fef966b87e987ffe" }, "downloads": -1, "filename": "socli-3.4-py2.7.egg", "has_sig": false, "md5_digest": "e5112441091837fb9afdc40c000c4935", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 21773, "upload_time": "2017-03-07T12:12:34", "url": "https://files.pythonhosted.org/packages/91/c2/53c558afea8b8f6a2acb2d7649a0d0fdc6422a7dbfd8999477093105c65c/socli-3.4-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "b145a8e7adddb7ad7683046b8172cb8e", "sha256": "f9d8c5d4a69e282a6af01dbd5bb234834cab05c97bea9178acc351c792378378" }, "downloads": -1, "filename": "socli-3.4.tar.gz", "has_sig": false, "md5_digest": "b145a8e7adddb7ad7683046b8172cb8e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13738, "upload_time": "2017-03-07T12:12:36", "url": "https://files.pythonhosted.org/packages/da/5a/36a2af51a66fa29ee65d9e1edc4c547ab8642e0ac277b16fb69082770476/socli-3.4.tar.gz" } ], "3.5": [ { "comment_text": "", "digests": { "md5": "216a9a391f71c281c3f0900d374dd502", "sha256": "aac76039b7854865e13cc2bab6ad80e76b12dec5388b0c287d89066a6015b82c" }, "downloads": -1, "filename": "socli-3.5-py2.7.egg", "has_sig": false, "md5_digest": "216a9a391f71c281c3f0900d374dd502", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 37325, "upload_time": "2017-04-08T18:53:23", "url": "https://files.pythonhosted.org/packages/03/27/8233757b41182562a9969c66e4bf162827f98c94f8cf24eeae0315d5020f/socli-3.5-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "510956ab26615aa8afec45da4cbb1533", "sha256": "ee8e896fae6fc8a54ac845c65951eae92732cfac01260fad4a3a8ed88e4a3016" }, "downloads": -1, "filename": "socli-3.5.tar.gz", "has_sig": false, "md5_digest": "510956ab26615aa8afec45da4cbb1533", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30603, "upload_time": "2017-04-08T18:53:25", "url": "https://files.pythonhosted.org/packages/d0/b4/940839ae9dba7eb6b03139d202317f4db2da58bc42630e9fc2d1555b2390/socli-3.5.tar.gz" } ], "3.6": [ { "comment_text": "", "digests": { "md5": "73fe4a773f46e551c015895b5062a29f", "sha256": "12ce388f9ba6401a704ec0f1b48ff68213043ae3c51e08bfbe0476a5eb466f4b" }, "downloads": -1, "filename": "socli-3.6-py2.7.egg", "has_sig": false, "md5_digest": "73fe4a773f46e551c015895b5062a29f", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 40216, "upload_time": "2017-05-23T23:11:56", "url": "https://files.pythonhosted.org/packages/93/50/63e6e81a88cda9ba91ea2c583787f85269cd9fe49fa271dbed6d56d6a0bd/socli-3.6-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "ddaecb43fa7e5b47a809db33559dd719", "sha256": "cf50b17f4032aa0488876febff4714ae49252e99cc4d9a80836bbdddac927d5c" }, "downloads": -1, "filename": "socli-3.6.tar.gz", "has_sig": false, "md5_digest": "ddaecb43fa7e5b47a809db33559dd719", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33428, "upload_time": "2017-05-23T23:11:58", "url": "https://files.pythonhosted.org/packages/79/68/614425c81c1a0ba827148841f72e9762a39d82a351e956c1af3002bc1863/socli-3.6.tar.gz" } ], "3.7": [ { "comment_text": "", "digests": { "md5": "1cf0d38bc18f07a133c9e6b37594f6ca", "sha256": "16f1c99cf13a7a17ea972ede0d64c8bd7c1e1f81135c9e05e4fb1711a91a5bc7" }, "downloads": -1, "filename": "socli-3.7-py2.7.egg", "has_sig": false, "md5_digest": "1cf0d38bc18f07a133c9e6b37594f6ca", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 40190, "upload_time": "2019-05-18T13:30:04", "url": "https://files.pythonhosted.org/packages/3d/07/613126892070c4833dd5727935233ad5033fe2549ecdcd796863c4ed6cbb/socli-3.7-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "1ce5a021d6c2161ece4b62387b67f55f", "sha256": "2cf7de069b5934466760c6d4be030550d045208fb02c853f9c4d300394490f01" }, "downloads": -1, "filename": "socli-3.7.tar.gz", "has_sig": false, "md5_digest": "1ce5a021d6c2161ece4b62387b67f55f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33460, "upload_time": "2019-05-18T13:30:06", "url": "https://files.pythonhosted.org/packages/d0/a8/4338acc7a5aa94cedbc34342252d346d3ee909884327cf99167d7bc3ede3/socli-3.7.tar.gz" } ], "3.8": [ { "comment_text": "", "digests": { "md5": "760818ce3a113cc7620355b0bde4dc7a", "sha256": "a514999bc1475a282ce48551b9847759ef96d635df3a3a9e9c35d225df292b72" }, "downloads": -1, "filename": "socli-3.8-py2.7.egg", "has_sig": false, "md5_digest": "760818ce3a113cc7620355b0bde4dc7a", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 40191, "upload_time": "2019-08-03T13:38:55", "url": "https://files.pythonhosted.org/packages/0c/f5/e0c4e1367d05616f588ca36e916af13c10fbb8a5e077fb9d17b520e6481d/socli-3.8-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "a76baa8d1c5537651113e8d0ee26fdcd", "sha256": "07c73f60e8999616053ec9b6a490711176610c56526c2cf56e94734288fab829" }, "downloads": -1, "filename": "socli-3.8.tar.gz", "has_sig": false, "md5_digest": "a76baa8d1c5537651113e8d0ee26fdcd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33459, "upload_time": "2019-08-03T13:38:57", "url": "https://files.pythonhosted.org/packages/df/0b/b75ae97fd73df2906fde203d9685d708fee8c67cdab2c84b1ae6ab38816c/socli-3.8.tar.gz" } ], "3.9": [ { "comment_text": "", "digests": { "md5": "1672decedc279f35ff513c282097ba4b", "sha256": "97edff7d642f4ed9b9a973d76910505825e5c10583b55a700a4d4e2065a8f0f1" }, "downloads": -1, "filename": "socli-3.9-py2.7.egg", "has_sig": false, "md5_digest": "1672decedc279f35ff513c282097ba4b", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 40182, "upload_time": "2019-08-22T10:14:44", "url": "https://files.pythonhosted.org/packages/b5/b6/8177b9963ee26661e2ea6f50fd92865b28b9abce49652b72d3728340864e/socli-3.9-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "fecc71fb9cdc9ebac3742642a9837e9a", "sha256": "147fa5a85e274a4de817bb399ab41360c13db48665babd1ce56d2a8b1f214474" }, "downloads": -1, "filename": "socli-3.9.tar.gz", "has_sig": false, "md5_digest": "fecc71fb9cdc9ebac3742642a9837e9a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31707, "upload_time": "2019-08-22T10:14:46", "url": "https://files.pythonhosted.org/packages/77/5a/eff390db0a904c7e5aa036918401fe1bd073fbcf724d5d415cc58ed0b0d5/socli-3.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "1672decedc279f35ff513c282097ba4b", "sha256": "97edff7d642f4ed9b9a973d76910505825e5c10583b55a700a4d4e2065a8f0f1" }, "downloads": -1, "filename": "socli-3.9-py2.7.egg", "has_sig": false, "md5_digest": "1672decedc279f35ff513c282097ba4b", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 40182, "upload_time": "2019-08-22T10:14:44", "url": "https://files.pythonhosted.org/packages/b5/b6/8177b9963ee26661e2ea6f50fd92865b28b9abce49652b72d3728340864e/socli-3.9-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "fecc71fb9cdc9ebac3742642a9837e9a", "sha256": "147fa5a85e274a4de817bb399ab41360c13db48665babd1ce56d2a8b1f214474" }, "downloads": -1, "filename": "socli-3.9.tar.gz", "has_sig": false, "md5_digest": "fecc71fb9cdc9ebac3742642a9837e9a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31707, "upload_time": "2019-08-22T10:14:46", "url": "https://files.pythonhosted.org/packages/77/5a/eff390db0a904c7e5aa036918401fe1bd073fbcf724d5d415cc58ed0b0d5/socli-3.9.tar.gz" } ] }