{ "info": { "author": "John Cheetham", "author_email": "developer@johncheetham.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: X11 Applications :: GTK", "Intended Audience :: End Users/Desktop", "License :: OSI Approved :: GNU General Public License (GPL)", "Operating System :: POSIX :: Linux", "Programming Language :: C", "Programming Language :: Python", "Topic :: Games/Entertainment :: Board Games" ], "description": "gshogi - John Cheetham - http://www.johncheetham.com/projects/gshogi\n\nDescription\n-----------\ngshogi is a program to play Shogi (Japanese Chess). It has a builtin\nengine and can also use USI engines. It is written in python3 and C and runs\non GTK3 (PyGI) desktops.\n\nIt's licensed under the GPL v3+ (see the file named LICENSE).\n\nIt uses python for the gui and C for the engine code.\n\nSee the project homepage for more information on gshogi and USI engines.\n\nLinux Installation\n------------------\n**Prerequisites**\n\nYou need to install these prerequisites first:\n\n * python\n * python-cairo\n * python-gobject\n\nYou need the python3 versions.\nThese will have different names depending on your Linux.\n \nOn Debian/Mint/Ubuntu\n * python3-gi-cairo\n * gir1.2-rsvg-2.0\n\nOn Fedora\n * python3-cairo\n * python3-gobject\n\nOn Arch\n * python-cairo\n * python-gobject\n\n**Install gshogi**\n\nInstalling from source\n \n Use this method if you are using the latest development version from github.\n\n Install gcc, python3-devel in addition to the above prerequisites.\n\n | Then enter *'python3 setup.py build'* to build it.\n\n | Then *'python3 run.py'* to run it from within the source folder.\n\n You can also install it on the system.\n\n To do this enter *'python setup.py install'* (as root user).\n\n Note if installing on the system:\n\n gshogi should now be installed on your system. You can launch it from\n the gnome menu (under games) or type 'gshogi' in any terminal window.\n\n There is no uninstall (setuptools doesn't have one). If you need to\n uninstall you have to make a note of the file names and then delete\n them manually.\n\n If running the build/install multiple times it's best to delete the\n build folder each time.\n\nInstalling from the Python Package Index with pip\n\n If you want to install the last release you can install wheels from PyPI using pip. \n\n pip3 install gshogi\n\n Or install it into a virtual env:\n\n | python3 -m venv --system-site-packages testvenv\n | source testvenv/bin/activate\n | pip install gshogi\n\n Note you still need to install the python-gobject and python-cairo prerequisites listed above.\n\nWindows Installation\n--------------------\nThe best method for windows is to use the all in one installer from the project website.\n\nYou can also use pip to install it but you will need to install pygobject for windows\nfirst.\n\nYou can also build it yourself (see the file Readme-windows.txt).\n\n\nUsage\n-----\nYou play black (the pieces at the bottom of the board). The computer plays\nwhite (the pieces at the top of the board). Press the green go button to\nstart the clock. To move a piece click on it and then click on the square\nyou want to move it to (or drag it and drop it).\n\nAlso you can play one engine against another which is good for comparing\nUSI engines.\n\n**Adding a USI engine**\n\nTo add a USI engine to play against click on Options, engines then click\nthe 'Add' button to add a new engine. Navigate to the engine executable\nand add it. Then click the OK button.\n\nIf the USI engine has parameters (eg. *'java -jar enginename'* or *'enginename -usi'*)\nthen you can set up a shell script (or bat file in windows) to start the engine and\nthen add the shell script in gshogi. \n\n**command line options**\n\nYou can specify some options on the command line.\n\nIf you want to see the USI commands then start it from a terminal with:\n\n gshogi -vusi (or ./run.py -vusi if not installed)\n\nFor full debugging output use the command:\n\n gshogi -v (or ./run.py -v if not installed)\n\nYou can specify a game file to open:\n\n gshogi /path/to/gamefile.psn\n \nUse -m to show moves and comments in the main window:\n\n gshogi -m /path/to/gamefile.psn\n \nUse -h to show header of loaded files:\n\n gshogi -h /path/to/gamefile.psn\n \nUse -mh to show both: \n \n gshogi -mh /path/to/gamefile.psn\n\nSee http://en.wikipedia.org/wiki/Shogi for the rules of Shogi.\n\nFile Support\n------------\nYou can load/save games in PSN format or in gshog format.\nIt is recommended to use PSN format.\n\ngshogi can also read multi-game PSN files.\n\nEdit Board Function\n-------------------\nWhen edting the board position you can increase the count of a piece in\nthe komadai by right-clicking on it. Left-click on it to decrease the\ncount.\n\nTo add a white piece to the main board right-click on the square you\nwant to add the piece to then select the piece from the pop-up menu.\nTo add a black piece left-click on the square.\n\n\nTime control/Level support\n--------------------------\nExamples of time controls that can be used with gshogi.\n\nThese were tested with the gse 0.1.4 engine.\nNote that not all USI engines will work with all time controls.\nMost engines work OK with byoyomi so use that if you have problems.\n\nNote that times on the go command are in milliseconds.\n\nbyoyomi\n\n e.g. 60 minutes game time plus 30 seconds byoyomi\n This means the player can make as many or as few moves as they like\n in the 30 minutes and after that they will have 30 seconds per move.\n\n go btime 3600000 wtime 3600000 byoyomi 30000\n\n If you want a fixed time of 10 seconds per move:\n go btime 0 wtime 0 byoyomi 10000\n\n see http://en.wikipedia.org/wiki/Byoyomi\n\nclassical\n\n e.g. 5 moves in 10 minutes\n\n go btime 300000 wtime 300000 movestogo 40\n\nIncremental\n\n e.g. 30 minutes game time and 10 seconds bonus time per move\n This means the basic time for the game is 30 minutes and after\n each move a bonus of 10 seconds is added to the clock.\n\n go btime 1800000 wtime 1800000 binc 10000 winc 10000\n\nFixed Time Per Move\n\n e.g. 20 seconds per move\n go movetime 20000\n\nFixed Search Depth\n\n e.g. Terminate the search when a depth of 8 is reached.\n\n go depth 8\n\nInfinite search\n\n The search will go on indefinitely and will only terminate if\n a stop command (move now) is sent from the gui.\n\n go infinite\n\nFixed No. of Nodes\n\n The search will terminate after a fixed no. of nodes has been searched.\n\n go nodes 10000000\n\n\nNote that byoyomi is not part of the original USI specification\n(See http://www.glaurungchess.com/shogi/usi.html) but it is\nsupported in most USI engines.\n\n\nCustom Pieces\n-------------\nYou can load custom pieces using the 'Load Custom Pieces' button on the\n'set pieces' menu.\n\nTo set up your own custom pieces you must provide images with these filenames.\nYou can use either png or svg files. If you use png change the file extension\nfrom svg to png.\n\n Black Pieces:\n\n ======================= ============\n Piece Filename\n ======================= ============\n King kingB.svg\n Rook rookB.svg\n Bishop bishopB.svg\n Gold General goldB.svg\n Silver General silverB.svg\n Knight knightB.svg\n Lance lanceB.svg\n Pawn pawnB.svg\n Promoted Rook rookPB.svg\n Promoted Bishop bishopPB.svg\n Promoted Silver General silverPB.svg\n Promoted Knight knightPB.svg\n Promoted Lance lancePB.svg\n Promoted Pawn pawnPB.svg\n ======================= ============\n\nThe black piece images are mandatory. You can optionally provide images\nfor the white pieces as well. If you provide white piece images gshogi\nwill use them. If you don't it will use the black piece images and\nrotate them through 180 degress.\n\n White Pieces:\n\n ======================= ============\n Piece Filename\n ======================= ============\n King kingW.svg\n Rook rookW.svg\n Bishop bishopW.svg\n Gold General goldW.svg\n Silver General silverW.svg\n Knight knightW.svg\n Lance lanceW.svg\n Pawn pawnW.svg\n Promoted Rook rookPW.svg\n Promoted Bishop bishopPW.svg\n Promoted Silver General silverPW.svg\n Promoted Knight knightPW.svg\n Promoted Lance lancePW.svg\n Promoted Pawn pawnPW.svg\n ======================= ============\n\nSee the project homepage to download an example.\n\n\nAcknowledgements\n----------------\ngshogi uses C engine code and includes some board pieces from\nGNU Shogi (version 1.3.2).", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://www.johncheetham.com/projects/gshogi/", "keywords": "", "license": "GPLv3+", "maintainer": "", "maintainer_email": "", "name": "gshogi", "package_url": "https://pypi.org/project/gshogi/", "platform": "Linux", "project_url": "https://pypi.org/project/gshogi/", "project_urls": { "Homepage": "http://www.johncheetham.com/projects/gshogi/" }, "release_url": "https://pypi.org/project/gshogi/0.5.1/", "requires_dist": null, "requires_python": "", "summary": "A Shogi Program (Japanese Chess)", "version": "0.5.1" }, "last_serial": 3183062, "releases": { "0.4.5": [], "0.5.0": [ { "comment_text": "", "digests": { "md5": "02396b58beaecf95eff82a95f1d7065f", "sha256": "fabd3a5110f8f93b88cdcab559ece2a21fabe0404de4ff0c0ac10aa335701ee1" }, "downloads": -1, "filename": "gshogi-0.5.0.tar.gz", "has_sig": false, "md5_digest": "02396b58beaecf95eff82a95f1d7065f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 671620, "upload_time": "2016-04-11T07:18:19", "url": "https://files.pythonhosted.org/packages/a8/f3/a5070327ced12f163afb61e3f3e6a00d0ea1a7aa320c3a95206c6063fc0f/gshogi-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "2be3d85a3be76c46bef6d45156bf5324", "sha256": "85355fd4db661846ec036a71bdd8e1eecdc1eb798b4b897ee93b728b2663e25a" }, "downloads": -1, "filename": "gshogi-0.5.1-cp33-cp33m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2be3d85a3be76c46bef6d45156bf5324", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 819181, "upload_time": "2017-09-18T17:54:16", "url": "https://files.pythonhosted.org/packages/60/53/a4dcade63ce489ef11ef951898e94ddc83bbd48dfe7a0ca05649802d1b90/gshogi-0.5.1-cp33-cp33m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "eb7d64ed722b7b5410966cbb81ceb9cf", "sha256": "b2dfbe6612653b55ec2e9caa11660496468ef6297e5fe409d53fbe760551fe94" }, "downloads": -1, "filename": "gshogi-0.5.1-cp33-cp33m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "eb7d64ed722b7b5410966cbb81ceb9cf", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 831130, "upload_time": "2017-09-18T17:54:26", "url": "https://files.pythonhosted.org/packages/46/34/c1ffd59e378a0597dcf76a53d443285a72db3ce141b01b5a933e45aee86e/gshogi-0.5.1-cp33-cp33m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "59685101bf5b4dc8926f5f0685d40d84", "sha256": "7a1cccde80583edd061d606a617accfff1a5306962cabf06bc847056303828e2" }, "downloads": -1, "filename": "gshogi-0.5.1-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "59685101bf5b4dc8926f5f0685d40d84", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 819225, "upload_time": "2017-09-18T17:54:36", "url": "https://files.pythonhosted.org/packages/de/2f/a0afedb83da1e23cbd94bc0f1df1d2295e3c2dbc6371b63eddd476aedaf0/gshogi-0.5.1-cp34-cp34m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "2b1f6455b36a06988c84d1ee06e917c5", "sha256": "2886114e80e5ac6b3e08468c05bfb4c81ead3b135fb47f038bb65117a4f5ef53" }, "downloads": -1, "filename": "gshogi-0.5.1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2b1f6455b36a06988c84d1ee06e917c5", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 831147, "upload_time": "2017-09-18T17:54:46", "url": "https://files.pythonhosted.org/packages/25/ae/260e7643e0202865e3bc04c387764bb26ecba16a06beb008cd57c10998cb/gshogi-0.5.1-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "83bedf7362e5ac42d3fc545500536e11", "sha256": "5029bbbb219703f9ada9fbc5f9be3ce2c3140b7e5fd3529ff335647a4c7f304f" }, "downloads": -1, "filename": "gshogi-0.5.1-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "83bedf7362e5ac42d3fc545500536e11", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 677704, "upload_time": "2017-09-18T17:54:56", "url": "https://files.pythonhosted.org/packages/63/df/b813d944755d45b11667786a6eea012f136f92207895d4ea1115b3fd2f56/gshogi-0.5.1-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "c4adb4b8a8ee6abac5d48a894a448ea1", "sha256": "a2a73c2d2f4aec9a9dc713535fd1a165b9673ace6ddfc267f1d27dab24c79407" }, "downloads": -1, "filename": "gshogi-0.5.1-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "c4adb4b8a8ee6abac5d48a894a448ea1", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 683590, "upload_time": "2017-09-18T17:55:05", "url": "https://files.pythonhosted.org/packages/e6/ec/10b0193497521d9d4566ae8f3dffe1d7f891059ce173dc8e98cda2f1a2a3/gshogi-0.5.1-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "06387c7d97ed87035c680896575bec8e", "sha256": "ccd4fd39bf80892b24944d1067d1cdc1329a3e4829ecf0d64986636cdd62e18c" }, "downloads": -1, "filename": "gshogi-0.5.1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "06387c7d97ed87035c680896575bec8e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 819390, "upload_time": "2017-09-18T17:55:14", "url": "https://files.pythonhosted.org/packages/e0/b4/3b33e58c9e2fa1a1b00449338fd840e11302b02ef10ade178c56668fc557/gshogi-0.5.1-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "5eb46607fd043cc852b6d344a196be1e", "sha256": "f000f0f2ac69bcbd2498f8d0dc4e131d2208e03ca98924829c2587fc94e0a1e8" }, "downloads": -1, "filename": "gshogi-0.5.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5eb46607fd043cc852b6d344a196be1e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 831299, "upload_time": "2017-09-18T17:55:25", "url": "https://files.pythonhosted.org/packages/3d/2b/5693f24bf902d22dc52ad634db9cec153cf4753e5dcea32a8f68844a96f3/gshogi-0.5.1-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0c561436b56d295290270d7b79fd64b3", "sha256": "61b0410951a05985d32d0bb2b715574d15915d729831573d930f6dba0fa87b88" }, "downloads": -1, "filename": "gshogi-0.5.1-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "0c561436b56d295290270d7b79fd64b3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 819559, "upload_time": "2017-09-18T17:55:36", "url": "https://files.pythonhosted.org/packages/f1/2d/24dbeb3eb885a2f7a081f149ffec794a30b1b319cfc59f5cfcc1d8d5b066/gshogi-0.5.1-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "5b17ce857b6425dc9bdfe256d7854748", "sha256": "3413e5324049c7f3eebf05fe079005af3acf25bacb17151b834b035799120a62" }, "downloads": -1, "filename": "gshogi-0.5.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5b17ce857b6425dc9bdfe256d7854748", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 831397, "upload_time": "2017-09-18T17:55:46", "url": "https://files.pythonhosted.org/packages/56/66/ab4256fbc0c3009d6de2c09b79ebdb4d2e0ac36b9875212dcc4d14c9fe57/gshogi-0.5.1-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c3e428d85aa4a39eaad1083460f1d506", "sha256": "ef8e91ef95dd131be024522810af83ccb59b2b10bd9f81a436f0eabaacf98380" }, "downloads": -1, "filename": "gshogi-0.5.1.tar.gz", "has_sig": false, "md5_digest": "c3e428d85aa4a39eaad1083460f1d506", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 749083, "upload_time": "2017-09-18T17:53:34", "url": "https://files.pythonhosted.org/packages/33/a0/3c3237b052a8a7e637c480e42bad7141268b69d399950390bcf51e7df1ff/gshogi-0.5.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "2be3d85a3be76c46bef6d45156bf5324", "sha256": "85355fd4db661846ec036a71bdd8e1eecdc1eb798b4b897ee93b728b2663e25a" }, "downloads": -1, "filename": "gshogi-0.5.1-cp33-cp33m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2be3d85a3be76c46bef6d45156bf5324", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 819181, "upload_time": "2017-09-18T17:54:16", "url": "https://files.pythonhosted.org/packages/60/53/a4dcade63ce489ef11ef951898e94ddc83bbd48dfe7a0ca05649802d1b90/gshogi-0.5.1-cp33-cp33m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "eb7d64ed722b7b5410966cbb81ceb9cf", "sha256": "b2dfbe6612653b55ec2e9caa11660496468ef6297e5fe409d53fbe760551fe94" }, "downloads": -1, "filename": "gshogi-0.5.1-cp33-cp33m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "eb7d64ed722b7b5410966cbb81ceb9cf", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 831130, "upload_time": "2017-09-18T17:54:26", "url": "https://files.pythonhosted.org/packages/46/34/c1ffd59e378a0597dcf76a53d443285a72db3ce141b01b5a933e45aee86e/gshogi-0.5.1-cp33-cp33m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "59685101bf5b4dc8926f5f0685d40d84", "sha256": "7a1cccde80583edd061d606a617accfff1a5306962cabf06bc847056303828e2" }, "downloads": -1, "filename": "gshogi-0.5.1-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "59685101bf5b4dc8926f5f0685d40d84", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 819225, "upload_time": "2017-09-18T17:54:36", "url": "https://files.pythonhosted.org/packages/de/2f/a0afedb83da1e23cbd94bc0f1df1d2295e3c2dbc6371b63eddd476aedaf0/gshogi-0.5.1-cp34-cp34m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "2b1f6455b36a06988c84d1ee06e917c5", "sha256": "2886114e80e5ac6b3e08468c05bfb4c81ead3b135fb47f038bb65117a4f5ef53" }, "downloads": -1, "filename": "gshogi-0.5.1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2b1f6455b36a06988c84d1ee06e917c5", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 831147, "upload_time": "2017-09-18T17:54:46", "url": "https://files.pythonhosted.org/packages/25/ae/260e7643e0202865e3bc04c387764bb26ecba16a06beb008cd57c10998cb/gshogi-0.5.1-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "83bedf7362e5ac42d3fc545500536e11", "sha256": "5029bbbb219703f9ada9fbc5f9be3ce2c3140b7e5fd3529ff335647a4c7f304f" }, "downloads": -1, "filename": "gshogi-0.5.1-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "83bedf7362e5ac42d3fc545500536e11", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 677704, "upload_time": "2017-09-18T17:54:56", "url": "https://files.pythonhosted.org/packages/63/df/b813d944755d45b11667786a6eea012f136f92207895d4ea1115b3fd2f56/gshogi-0.5.1-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "c4adb4b8a8ee6abac5d48a894a448ea1", "sha256": "a2a73c2d2f4aec9a9dc713535fd1a165b9673ace6ddfc267f1d27dab24c79407" }, "downloads": -1, "filename": "gshogi-0.5.1-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "c4adb4b8a8ee6abac5d48a894a448ea1", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 683590, "upload_time": "2017-09-18T17:55:05", "url": "https://files.pythonhosted.org/packages/e6/ec/10b0193497521d9d4566ae8f3dffe1d7f891059ce173dc8e98cda2f1a2a3/gshogi-0.5.1-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "06387c7d97ed87035c680896575bec8e", "sha256": "ccd4fd39bf80892b24944d1067d1cdc1329a3e4829ecf0d64986636cdd62e18c" }, "downloads": -1, "filename": "gshogi-0.5.1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "06387c7d97ed87035c680896575bec8e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 819390, "upload_time": "2017-09-18T17:55:14", "url": "https://files.pythonhosted.org/packages/e0/b4/3b33e58c9e2fa1a1b00449338fd840e11302b02ef10ade178c56668fc557/gshogi-0.5.1-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "5eb46607fd043cc852b6d344a196be1e", "sha256": "f000f0f2ac69bcbd2498f8d0dc4e131d2208e03ca98924829c2587fc94e0a1e8" }, "downloads": -1, "filename": "gshogi-0.5.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5eb46607fd043cc852b6d344a196be1e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 831299, "upload_time": "2017-09-18T17:55:25", "url": "https://files.pythonhosted.org/packages/3d/2b/5693f24bf902d22dc52ad634db9cec153cf4753e5dcea32a8f68844a96f3/gshogi-0.5.1-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0c561436b56d295290270d7b79fd64b3", "sha256": "61b0410951a05985d32d0bb2b715574d15915d729831573d930f6dba0fa87b88" }, "downloads": -1, "filename": "gshogi-0.5.1-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "0c561436b56d295290270d7b79fd64b3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 819559, "upload_time": "2017-09-18T17:55:36", "url": "https://files.pythonhosted.org/packages/f1/2d/24dbeb3eb885a2f7a081f149ffec794a30b1b319cfc59f5cfcc1d8d5b066/gshogi-0.5.1-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "5b17ce857b6425dc9bdfe256d7854748", "sha256": "3413e5324049c7f3eebf05fe079005af3acf25bacb17151b834b035799120a62" }, "downloads": -1, "filename": "gshogi-0.5.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5b17ce857b6425dc9bdfe256d7854748", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 831397, "upload_time": "2017-09-18T17:55:46", "url": "https://files.pythonhosted.org/packages/56/66/ab4256fbc0c3009d6de2c09b79ebdb4d2e0ac36b9875212dcc4d14c9fe57/gshogi-0.5.1-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c3e428d85aa4a39eaad1083460f1d506", "sha256": "ef8e91ef95dd131be024522810af83ccb59b2b10bd9f81a436f0eabaacf98380" }, "downloads": -1, "filename": "gshogi-0.5.1.tar.gz", "has_sig": false, "md5_digest": "c3e428d85aa4a39eaad1083460f1d506", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 749083, "upload_time": "2017-09-18T17:53:34", "url": "https://files.pythonhosted.org/packages/33/a0/3c3237b052a8a7e637c480e42bad7141268b69d399950390bcf51e7df1ff/gshogi-0.5.1.tar.gz" } ] }