{ "info": { "author": "Christoph Fink", "author_email": "christoph.fink@helsinki.fi", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Operating System :: OS Independent", "Programming Language :: Python :: 3" ], "description": "# Python wrapper for the webis Twitter sentiment evaluation ensemble\n\nThis is a Python wrapper around the Java implementation of a Twitter sentiment evaluation framework presented by [Hagen et al. (2015)](http://www.aclweb.org/anthology/S15-2097). It uses [PyJnius](https://github.com/kivy/pyjnius/tree/master/jnius) to call the Java modules to evaluate sentiment.\n\n### Dependencies\n\nThe script is written in Python 3 and depends on the Python modules [PyJnius](https://github.com/kivy/pyjnius/tree/master/jnius), [pandas](https://pandas.pydata.org/) and [emojientities](https://gitlab.com/christoph.fink/python-emoji-range). \n\nOn top of that, a Java Runtime Environment (jre) is required, plus a matching Java Development Kit (jdk). We used Java 8, but other versions might work just as well. [OpenJDK](https://openjdk.java.net/) works fine.\n\nTo install all dependencies on a Debian-based system, run:\n\n```shell\napt-get update -y &&\napt-get install -y python3-dev python3-pip python3-virtualenv cython3 openjdk-8-jdk-headless openjdk-8-jre-headless ca-certificates-java\n```\n\n(There\u2019s an Archlinux AUR package pulling in all dependencies, see further down)\n\n### Installation\n\n- *using `pip` or similar:*\n\n```shell\npip3 install webis\n```\n\n- *OR: manually:*\n\n - Clone this repository\n\n ```shell\n git clone https://gitlab.com/christoph.fink/python-webis.git\n ```\n\n - Change to the cloned directory \n - Use the Python `setuptools` to install the package:\n\n ```shell\n cd python-webis\n python3 ./setup.py install\n ```\n\n- *OR: (Arch Linux only) from [AUR](https://aur.archlinux.org/packages/python-webis):*\n\n```shell\n# e.g. using yaourt\nyaourt python-webis\n```\n\n### Usage\n\nImport the `webis` module. On first run, *python-webis* will download and compile the Java backend \u2013 this might take a few minutes.\n\nThen instantiate a `webis.SentimentIdentifier` object and use its `identifySentiment()` function, passing in a list of tuples (`[(tweetId, tweetText),(tweetId, tweetText), \u2026 ]`), a dict (`{tweetId: tweetText, \u2026 }`) or a `pandas.DataFrame` (first column is treated as identifier, second as tweetText). \n\nThe function returns a list of tuples (`[(tweetId, sentiment), \u2026 ]`), a dict (`{tweetId: sentiment, \u2026 }`) or a data frame (first column id, second column sentiment) of rows it successfully identified a sentiment of. The type of the return value matches the argument, with which the function is called. The `tweetId` values will be cast to the type of the first row\u2019s `tweetId`.\n\n```python\nimport webis\n\nsentimentIdentifier = webis.SentimentIdentifier()\n\n# list of tuples\ntweets = [\n (1, \"What a beautiful morning! There\u2019s nothing better than cycling to work on a sunny day \ud83d\udeb2.\"),\n (2, \"Argh, I hate it when you find seven (7!) cars blocking the bike lane on a five-mile commute\")\n]\n\ntweets = sentimentIdentifier.identifySentiment(tweets)\n# [(1, \"positive\"), (2, \"negative\")]\n\n# pandas Dataframe\nimport pandas\ntweets = pandas.DataFrame([\n (1, \"What a beautiful morning! There\u2019s nothing better than cycling to work on a sunny day \ud83d\udeb2.\"),\n (2, \"Argh, I hate it when you find seven (7!) cars blocking the bike lane on a five-mile commute\")\n])\n\ntweets = sentimentIdentifier.identifySentiment(tweets)\n# sentiment tweetId\n# 0 positive 1\n# 1 negative 2\n\n# dict\ntweets = {\n 1: \"What a beautiful morning! There\u2019s nothing better than cycling to work on a sunny day \ud83d\udeb2.\",\n 2: \"Argh, I hate it when you find seven (7!) cars blocking the bike lane on a five-mile commute\"\n}\n\ntweets = sentimentIdentifier.identifySentiment(tweets)\n# { 1: \"positive\", 2: \"negative\" }\n\n```\n\n`python-webis` can act as a *context manager*:\n\n```python\nwith webis.SentimentIdentifier() as s:\n tweets = s.identifySentiment(tweets)\n```\n\n`webis.identifySentiment()` is a short-hand for initialising a `SentimentIdentifier` object and calling its `identifySentiment()` method:\n\n```python\ntweets = webis.identifySentiment(tweets)\n```\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://gitlab.com/christoph.fink/python-webis", "keywords": "", "license": "GPLv3", "maintainer": "", "maintainer_email": "", "name": "webis", "package_url": "https://pypi.org/project/webis/", "platform": "", "project_url": "https://pypi.org/project/webis/", "project_urls": { "Homepage": "https://gitlab.com/christoph.fink/python-webis" }, "release_url": "https://pypi.org/project/webis/0.2.6/", "requires_dist": [ "emojientities", "GitPython", "jnius", "pandas", "versioneer" ], "requires_python": "", "summary": "Python wrapper for the webis Twitter sentiment identification tool", "version": "0.2.6" }, "last_serial": 4873321, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "c91afe0b93af7391537480dee351a640", "sha256": "ff7d7656eda0173a5fca4eb7dc5fbdf075f7aa70ab6640706aee1dfaee8e0f6c" }, "downloads": -1, "filename": "webis-0.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "c91afe0b93af7391537480dee351a640", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 19242, "upload_time": "2019-01-21T13:53:25", "url": "https://files.pythonhosted.org/packages/6b/77/ab2a0340727474ce988daf7055a2e01628b6aa37a57968830b460901206a/webis-0.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "734a3aeddfc9285bfe010c09c03d1591", "sha256": "4ff8d6c86b4de942e86e812ba03bd06774807c3dcbda34a2ec667826ef3d8ac9" }, "downloads": -1, "filename": "webis-0.1.0.tar.gz", "has_sig": false, "md5_digest": "734a3aeddfc9285bfe010c09c03d1591", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17829, "upload_time": "2019-01-21T13:53:26", "url": "https://files.pythonhosted.org/packages/d6/37/cfe85d787df012b8d6f28b94feab8900e02325ecdcb05fc230a7156d68a7/webis-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "f132e71126adeeeb6ba3e636252f279c", "sha256": "ac4c61066b17e6d940cdb5e7e5e304e33872e00d2d538f8aae48519fc793b5c2" }, "downloads": -1, "filename": "webis-0.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "f132e71126adeeeb6ba3e636252f279c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 19243, "upload_time": "2019-01-21T13:56:54", "url": "https://files.pythonhosted.org/packages/00/c7/bb0c4369d67d8dc959ffd0a7d304fac9235cfac4bb4b8de6257d237b81c4/webis-0.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3b35244eba7479ef189ac0dec4fbd55c", "sha256": "de7997cc784759c18bc962286984e6d1272918e71d0fa02874734300639ff96a" }, "downloads": -1, "filename": "webis-0.1.1.tar.gz", "has_sig": false, "md5_digest": "3b35244eba7479ef189ac0dec4fbd55c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17825, "upload_time": "2019-01-21T13:56:55", "url": "https://files.pythonhosted.org/packages/63/ef/5c5d478ece3f264e45cb711ecde2be41402238ecde257f91b3ae1a80d19f/webis-0.1.1.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "7cf07291f0b991370413ef7456df2fbc", "sha256": "72399e5152e5307af19acb24cfda294596afcdc87bc4cfb6349b844962a3307a" }, "downloads": -1, "filename": "webis-0.1.8-py3-none-any.whl", "has_sig": false, "md5_digest": "7cf07291f0b991370413ef7456df2fbc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 24978, "upload_time": "2019-01-22T17:22:05", "url": "https://files.pythonhosted.org/packages/c8/fb/f86ddc01a8172371427501545d32d23ae2a669e689d36239191a2cf31f3f/webis-0.1.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "16316051517f091777b3a7b6f1eb683e", "sha256": "e0507082a2754945251303af937760357452319cd0952fe54937775aba4934b3" }, "downloads": -1, "filename": "webis-0.1.8.tar.gz", "has_sig": false, "md5_digest": "16316051517f091777b3a7b6f1eb683e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39659, "upload_time": "2019-01-22T17:22:07", "url": "https://files.pythonhosted.org/packages/ca/46/46ad2fda250c474679abacace74c076bdc36202df30355d68c20df944113/webis-0.1.8.tar.gz" } ], "0.1.dev1": [ { "comment_text": "", "digests": { "md5": "2aa3b9e421e82dbfe245f03589912233", "sha256": "1071fe011be8bb3a3f27ade9a3f24793d2bbebb65ab38c7b9b665bf430ee3661" }, "downloads": -1, "filename": "webis-0.1.dev1-py3-none-any.whl", "has_sig": false, "md5_digest": "2aa3b9e421e82dbfe245f03589912233", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 56169693, "upload_time": "2018-11-27T13:50:34", "url": "https://files.pythonhosted.org/packages/ea/ff/547ddb36ed8313ace4c38844d3605689cc1a3269a1de155ac50fd0cc1be7/webis-0.1.dev1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ec82515cf2e2fb744e2e82d02dc1fde6", "sha256": "527b6f0581071786a32faacd55c7f1ad3ca984f7626801db3ad4c332237f9f7b" }, "downloads": -1, "filename": "webis-0.1.dev1.tar.gz", "has_sig": false, "md5_digest": "ec82515cf2e2fb744e2e82d02dc1fde6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55582692, "upload_time": "2018-11-27T13:50:42", "url": "https://files.pythonhosted.org/packages/b6/5b/9d6a0c3c3ddc9422a9edfdad0e2d1e85347260d5fe9531a346ed895df586/webis-0.1.dev1.tar.gz" } ], "0.1.dev2": [ { "comment_text": "", "digests": { "md5": "f8e9b3ef65e7c993c89799476099fa42", "sha256": "f306b04d99a275dca9ce47c86b411841db3d63692dca7e32fd11b4c726af1468" }, "downloads": -1, "filename": "webis-0.1.dev2-py3-none-any.whl", "has_sig": false, "md5_digest": "f8e9b3ef65e7c993c89799476099fa42", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 52793271, "upload_time": "2019-01-16T12:02:13", "url": "https://files.pythonhosted.org/packages/77/7b/25a34f26351bafdb51d9c6aee2243574d1f9bb1c3721d9cb6e833d4722d8/webis-0.1.dev2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fba6c3406cdb4de5383e2db180d7c5ff", "sha256": "9638ba1bc833e3120782a5c754ec4886dd255975e39122feaf9de893a3fc86bf" }, "downloads": -1, "filename": "webis-0.1.dev2.tar.gz", "has_sig": false, "md5_digest": "fba6c3406cdb4de5383e2db180d7c5ff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52364680, "upload_time": "2019-01-16T12:02:26", "url": "https://files.pythonhosted.org/packages/52/59/ebb2cb6f10b260cbc075640e3372cec56b3c57dd23ac8f5c00d8461f8571/webis-0.1.dev2.tar.gz" } ], "0.1.dev4": [ { "comment_text": "", "digests": { "md5": "0f4aa2c6c3d049b0fa13d5766d75e809", "sha256": "025967e373700452294a2c28a85accd9e640fa19e237e300b2cf71464caa6896" }, "downloads": -1, "filename": "webis-0.1.dev4-py3-none-any.whl", "has_sig": false, "md5_digest": "0f4aa2c6c3d049b0fa13d5766d75e809", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 19272, "upload_time": "2019-01-21T13:48:46", "url": "https://files.pythonhosted.org/packages/04/a3/c82ee7058cdb923816be84d9414f95fe21e6e80ef736ece0720893506c67/webis-0.1.dev4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d4759c993dfa480801c3c39e141ee30f", "sha256": "5ee8d78928242cbb415e0b8c637ed24e9729a257aee39079a88748e9fbd730e3" }, "downloads": -1, "filename": "webis-0.1.dev4.tar.gz", "has_sig": false, "md5_digest": "d4759c993dfa480801c3c39e141ee30f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18197, "upload_time": "2019-01-21T13:48:47", "url": "https://files.pythonhosted.org/packages/52/95/8ea0e6b159a19ada8c00347e1233204aa1bc695c57480eed07b8db2a698b/webis-0.1.dev4.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "96aeb2d2fb4512e35c67f12841b9f22b", "sha256": "c030b8aaa5ceb2283f987241927eb68e880db026ffde6a2dd9faad71dbd97be6" }, "downloads": -1, "filename": "webis-0.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "96aeb2d2fb4512e35c67f12841b9f22b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26257, "upload_time": "2019-01-23T10:31:16", "url": "https://files.pythonhosted.org/packages/96/72/d80136f7704229bace243a15c5cd8cd14b682d50baa5f5f9c255e4bae07d/webis-0.2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e395df5fdff34616d81c53c50201cf1b", "sha256": "bb18313fa3125cbf5143dd51f21a176535d9891b254195952091643b149d7c51" }, "downloads": -1, "filename": "webis-0.2.0.tar.gz", "has_sig": false, "md5_digest": "e395df5fdff34616d81c53c50201cf1b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40602, "upload_time": "2019-01-23T10:31:18", "url": "https://files.pythonhosted.org/packages/88/59/22e8b4e80681107e9e2d1756ecd9fb97cfe868364476a69b5a5da53a92e8/webis-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "ecd37b8f2d30334cdcc07027e6fb8ac2", "sha256": "a3cf8349d19a0773984f29ae5ed9081380c82731bc5852eb9b82e1c2c773baad" }, "downloads": -1, "filename": "webis-0.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "ecd37b8f2d30334cdcc07027e6fb8ac2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26203, "upload_time": "2019-01-24T09:58:56", "url": "https://files.pythonhosted.org/packages/cf/0c/50f19a5db2a9c6d6d33f82cb1a2a9809dec64d029f9bd372bb8952864858/webis-0.2.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ded9a6300d7f9b2f6262c5b71b1f227a", "sha256": "6de98692ea68afa93320ee96a70eb156eee42fef4417cc20bb5c432ce8fdbbfe" }, "downloads": -1, "filename": "webis-0.2.1.tar.gz", "has_sig": false, "md5_digest": "ded9a6300d7f9b2f6262c5b71b1f227a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40415, "upload_time": "2019-01-24T09:58:57", "url": "https://files.pythonhosted.org/packages/a4/25/17e8464ac6a392af2b501e24d1e60cde22167a02c3a47649a161b6818279/webis-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "9d117630ed2695a3e69064fef2725c62", "sha256": "938c7807d0ec24e6ecf7ebe7008ea9e6ad1bb44374b312b2f9995152b15f401c" }, "downloads": -1, "filename": "webis-0.2.2-py3-none-any.whl", "has_sig": false, "md5_digest": "9d117630ed2695a3e69064fef2725c62", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26276, "upload_time": "2019-01-25T11:51:02", "url": "https://files.pythonhosted.org/packages/ee/33/8c7c7e5e1a6a711c78ad7804729eb549d0416ec0e6dded3930e32a0a6b82/webis-0.2.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2076eff7dc5b50965dc3c9060bb5f5d9", "sha256": "5575edbc049e31398c1efe0d6fbbf71084d6cc0b6a41beecbedee75d2d323731" }, "downloads": -1, "filename": "webis-0.2.2.tar.gz", "has_sig": false, "md5_digest": "2076eff7dc5b50965dc3c9060bb5f5d9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40554, "upload_time": "2019-01-25T11:51:03", "url": "https://files.pythonhosted.org/packages/dd/e3/34bb3970cbc8843b69a2e9ee6da55cf466cce0b7bfdc65a8aa76ee39b224/webis-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "8d16626d2dcc5960518a96548a074e70", "sha256": "ea8bd73ec5b8b64a84856879ceb5b390e8e56bb6f0f7209da4b64a00b66444db" }, "downloads": -1, "filename": "webis-0.2.3-py3-none-any.whl", "has_sig": false, "md5_digest": "8d16626d2dcc5960518a96548a074e70", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26278, "upload_time": "2019-01-28T10:19:35", "url": "https://files.pythonhosted.org/packages/31/69/062d73c3abba092192fd101d65df28f2afecdc30949ee465fa5aaf8028df/webis-0.2.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6f5276503d698c9b84408f596ce5fd17", "sha256": "7994cf9bbd567b4449ebd3e2dcb6efcef38597231b60e0f64041fc4fb1db77cc" }, "downloads": -1, "filename": "webis-0.2.3.tar.gz", "has_sig": false, "md5_digest": "6f5276503d698c9b84408f596ce5fd17", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35898, "upload_time": "2019-01-28T10:19:36", "url": "https://files.pythonhosted.org/packages/7f/70/170ee8efdda2c20d85d11f6d3160c1f30b0d30c4a8507581ae4648c2fc87/webis-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "db3b7cd44083efa011dd15823583a646", "sha256": "dd5bf97fd8aed04302b70025f98095e5f80057a96572e9f489c96ade12d0ce43" }, "downloads": -1, "filename": "webis-0.2.4-py3-none-any.whl", "has_sig": false, "md5_digest": "db3b7cd44083efa011dd15823583a646", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26273, "upload_time": "2019-01-30T16:12:04", "url": "https://files.pythonhosted.org/packages/2e/1f/be442a76e39486ddf93d11b89736290c0a9f57c320cf47e26f244d756e90/webis-0.2.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cc9f641aaa8715abba8a5438e83057a4", "sha256": "b7d4efb6ed36642724756c2268f95529e530e42893c4643b7468df805dd34f43" }, "downloads": -1, "filename": "webis-0.2.4.tar.gz", "has_sig": false, "md5_digest": "cc9f641aaa8715abba8a5438e83057a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35906, "upload_time": "2019-01-30T16:12:05", "url": "https://files.pythonhosted.org/packages/2c/cf/e4c94f7729027815cef165243b7660cd66b307f03ab98f5c327584a2d4c1/webis-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "460df7dd31fdfdb8e4f37ef00ff9a450", "sha256": "1d3e85d1b2f6f1351cf9b1518e0aec1b74d740c570a9326dbd1d195f0c47cd35" }, "downloads": -1, "filename": "webis-0.2.5-py3-none-any.whl", "has_sig": false, "md5_digest": "460df7dd31fdfdb8e4f37ef00ff9a450", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26475, "upload_time": "2019-02-15T14:49:45", "url": "https://files.pythonhosted.org/packages/48/58/2919e7835b2cd50fb8fafc0c39e2a19fc247d996045c029d56c62cb7f6d7/webis-0.2.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6dc2a2f831af24a64c23e18a673c89b6", "sha256": "cf4fdbf4a832b7d498a2c6f6f31664c6008d7262e44aa8dfacd096c89c9c595a" }, "downloads": -1, "filename": "webis-0.2.5.tar.gz", "has_sig": false, "md5_digest": "6dc2a2f831af24a64c23e18a673c89b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36336, "upload_time": "2019-02-15T14:49:47", "url": "https://files.pythonhosted.org/packages/c8/17/f6eeb290c224c50376abccfcce00ab109e00aba741b9f2a0d7d2471cc205/webis-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "36465c0bfc6d5eca140c1871f3d94817", "sha256": "acc420f5bc9dc552b3e78b4fcb0c3591ea6e84f68a294163f25fdc6846025986" }, "downloads": -1, "filename": "webis-0.2.6-py3-none-any.whl", "has_sig": false, "md5_digest": "36465c0bfc6d5eca140c1871f3d94817", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26546, "upload_time": "2019-02-27T09:28:22", "url": "https://files.pythonhosted.org/packages/99/06/c6ee1977735a1ba94d2e27598420c9a4730c62b31a9058d60ab5b683968e/webis-0.2.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ffe2d969287e7e5604336002aa15470a", "sha256": "610824a5f440db9d15e7b2714a24babf3fbfa7b5d9680e4599ce8ff6db3ec940" }, "downloads": -1, "filename": "webis-0.2.6.tar.gz", "has_sig": false, "md5_digest": "ffe2d969287e7e5604336002aa15470a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36414, "upload_time": "2019-02-27T09:28:23", "url": "https://files.pythonhosted.org/packages/64/f0/c14cc93a39f318cda497f77e5eff4e24c0d3774d4a8ca3ec9e2719df50b2/webis-0.2.6.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "36465c0bfc6d5eca140c1871f3d94817", "sha256": "acc420f5bc9dc552b3e78b4fcb0c3591ea6e84f68a294163f25fdc6846025986" }, "downloads": -1, "filename": "webis-0.2.6-py3-none-any.whl", "has_sig": false, "md5_digest": "36465c0bfc6d5eca140c1871f3d94817", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26546, "upload_time": "2019-02-27T09:28:22", "url": "https://files.pythonhosted.org/packages/99/06/c6ee1977735a1ba94d2e27598420c9a4730c62b31a9058d60ab5b683968e/webis-0.2.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ffe2d969287e7e5604336002aa15470a", "sha256": "610824a5f440db9d15e7b2714a24babf3fbfa7b5d9680e4599ce8ff6db3ec940" }, "downloads": -1, "filename": "webis-0.2.6.tar.gz", "has_sig": false, "md5_digest": "ffe2d969287e7e5604336002aa15470a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36414, "upload_time": "2019-02-27T09:28:23", "url": "https://files.pythonhosted.org/packages/64/f0/c14cc93a39f318cda497f77e5eff4e24c0d3774d4a8ca3ec9e2719df50b2/webis-0.2.6.tar.gz" } ] }