{ "info": { "author": "Samapriya Roy", "author_email": "samapriya.roy@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 6 - Mature", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: Apache Software License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Topic :: Scientific/Engineering :: GIS" ], "description": "# geeup: Simple CLI for Earth Engine Uploads\n\n[![Twitter URL](https://img.shields.io/twitter/follow/samapriyaroy?style=social)](https://twitter.com/intent/follow?screen_name=samapriyaroy)\n![](https://tokei.rs/b1/github/samapriya/geeup?category=code)\n![](https://tokei.rs/b1/github/samapriya/geeup?category=files)\n[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.5814026.svg)](https://doi.org/10.5281/zenodo.5814026)\n[![PyPI version](https://badge.fury.io/py/geeup.svg)](https://badge.fury.io/py/geeup)\n![PyPI - Downloads](https://img.shields.io/pypi/dm/geeup)\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n![CI geeup](https://github.com/samapriya/geeup/workflows/CI%20geeup/badge.svg)\n\nThis tool came of the simple need to handle batch uploads of both image assets to collections but also thanks to the new table feature the possibility of batch uploading shapefiles into a folder. Though a lot of these tools including batch image uploader is part of my other project [geeadd](https://github.com/samapriya/gee_asset_manager_addon) which also includes additional features to add to the python CLI, this tool was designed to be minimal so as to allow the user to simply query their quota, upload images or tables and also to query ongoing tasks and delete assets. I am hoping this tool with a simple objective proves useful to a few users of Google Earth Engine.\n\n-If you find this tool useful, star and cite it as below\n\n```\nSamapriya Roy. (2022). samapriya/geeup: geeup: Simple CLI for Earth Engine Uploads (0.5.3).\nZenodo. https://doi.org/10.5281/zenodo.5814026\n```\n\n## ReadMe Page: [https://samapriya.github.io/geeup/](https://samapriya.github.io/geeup/)\n\n## Table of contents\n* [Installation](#installation)\n* [Windows Setup](#windows-setup)\n* [GEE authenticate](#gee-authenticate)\n* [Getting started](#getting-started)\n* [geeup Simple CLI for Earth Engine Uploads](#geeup-simple-cli-for-earth-engine-uploads)\n * [geeup Quota](#geeup-quota)\n * [geeup Zipshape](#geeup-zipshape)\n * [geeup getmeta](#geeup-getmeta)\n * [Cookie Setup](#cookie-setup)\n * [geeup upload](#geeup-upload)\n * [geeup tabup](#geeup-tabup)\n * [geeup tasks](#geeup-tasks)\n * [geeup delete](#geeup-delete)\n\n## Installation\nThis assumes that you have native python & pip installed in your system, you can test this by going to the terminal (or windows command prompt) and trying\n\n```python``` and then ```pip list```\n\n**geeup now only support Python v3.4 or higher from geeup version 0.3.3**\n\n\n**This command line tool is dependent on functionality from GDAL**\nFor installing GDAL in Ubuntu\n```\nsudo add-apt-repository ppa:ubuntugis/ppa && sudo apt-get update\nsudo apt-get install gdal-bin\nsudo apt-get install python-gdal\n```\n## Windows Setup\nShapely and a few other libraries are notoriously difficult to install on windows machines so follow the steps mentioned here **before installing porder**. You can download and install shapely and other libraries from the [Unofficial Wheel files from here](https://www.lfd.uci.edu/~gohlke/pythonlibs) download depending on the python version you have. **Do this only once you have install GDAL**. I would recommend the steps mentioned above to get the GDAL properly installed. However I am including instructions to using a precompiled version of GDAL similar to the other libraries on windows. You can test to see if you have gdal by simply running\n\n```gdalinfo```\n\nin your command prompt. If you get a read out and not an error message you are good to go. If you don't have gdal try Option 1,2 or 3 in that order and that will install gdal along with the other libraries\n\n#### Option 1:\nStarting from geeup v0.3.4 onwards:\n\nSimply run ```geeup -h``` after installation. This should go fetch the extra libraries you need and install them. Once installation is complete, the porder help page will show up. This should save you from the few steps below.\n\n#### Option 2:\nIf this does not work or you get an unexpected error try the following commands. You can also use these commands if you simply want to update these libraries.\n\n```\npipwin refresh\npipwin install gdal\n```\n\n#### Option 3\nFor Windows I also found this [guide](https://webcache.googleusercontent.com/search?q=cache:UZWc-pnCgwsJ:https://sandbox.idre.ucla.edu/sandbox/tutorials/installing-gdal-for-windows+&cd=4&hl=en&ct=clnk&gl=us) from UCLA\n\nAlso for Ubuntu Linux I saw that this is necessary before the install\n\n```sudo apt install libcurl4-openssl-dev libssl-dev```\n\n**This also needs earthengine cli to be [installed and authenticated on your system](https://developers.google.com/earth-engine/python_install_manual) and earthengine to be callable in your command line or terminal**\n\nTo install **geeup: Simple CLI for Earth Engine Uploads** you can install using two methods.\n\n```pip install geeup```\n\nor you can also try\n\n```\ngit clone https://github.com/samapriya/geeup.git\ncd geeup\npython setup.py install\n```\nFor Linux use sudo or try ```pip install geeup --user```.\n\nI recommend installation within a virtual environment. Find more information on [creating virtual environments here](https://docs.python.org/3/library/venv.html).\n\n## GEE authenticate\n\nThis tool assumes that you have a Google Earth Engine account. The earthengine command line tool needs to be authenticated using a Google account.\n\n```\nearthengine authenticate\n```\n\nor in a terminal you can also use\n\n```\nearthengine authenticate --quiet\n```\n\n## Getting started\n\nAs usual, to print help:\n\n![geeup_main](https://user-images.githubusercontent.com/6677629/147896906-5b421ba5-de0d-47de-bb88-e4a0edce6528.png)\n\nTo obtain help for specific functionality, simply call it with _help_ switch, e.g.: `geeup zipshape -h`. If you didn't install geeup, then you can run it just by going to *geeup* directory and running `python geeup.py [arguments go here]`\n\n## geeup Simple CLI for Earth Engine Uploads\nThe tool is designed to handle batch uploading of images and tables(shapefiles). While there are image collection where you can batch upload imagery, for vector or shapefiles you have to batch upload them to a folder.\n\n### geeup Quota\nJust a simple tool to print your earth engine quota quickly. Since Google Earth Engine also allows you to use Cloud Projects instead of the standard legacy folders, this tool now has the option to pass the project path (usually **projects/project-name/assets/**)\n\n![geeup_quota](https://user-images.githubusercontent.com/6677629/114274802-c6fd9480-99e5-11eb-93e4-25d6367b88da.gif)\n\n```\nusage: geeup quota [-h] [--project PROJECT]\n\noptional arguments:\n -h, --help show this help message and exit\n\nOptional named arguments:\n --project PROJECT Project Name usually in format projects/project-\n name/assets/\n\n```\n\n### geeup Zipshape\nSo here's how table upload in Google Earth Engine works, you can either upload the component files shp, shx, prj and dbf or you can zip these files together and upload it as a single file. The pros for this is that it reduces the overall size of the shapefile after zipping them along, this tool looks for the shp file and finds the subsidiary files and zips them ready for upload. It also helps when you have limited upload bandwidth. Cons you have to create a replicate structure of the file system, but it saves on bandwidth and auto-arranges your files so you don't have to look for each additional file.\n\n![geeup_zipshape](https://user-images.githubusercontent.com/6677629/114293099-f8637800-9a58-11eb-9873-b36df8bb4245.gif)\n\n```\nusage: geeup zipshape [-h] --input INPUT --output OUTPUT\n\noptional arguments:\n -h, --help show this help message and exit\n\nRequired named arguments.:\n --input INPUT Path to the input directory with all shape files\n --output OUTPUT Destination folder Full path where shp, shx, prj and dbf\n files if present in input will be zipped and stored\n```\n\n### geeup getmeta\nThis script generates a generalized metadata using information parsed from gdalinfo and metadata properties. For now it generates metadata with image name, x and y dimension of images and the number of bands.\n\n![geeup_getmeta](https://user-images.githubusercontent.com/6677629/114294172-56488d80-9a62-11eb-8b18-540bf8e8a39a.gif)\n\n```\nusage: geeup getmeta [-h] --input INPUT --metadata METADATA\n\noptional arguments:\n -h, --help show this help message and exit\n\nRequired named arguments.:\n --input INPUT Path to the input directory with all raster files\n --metadata METADATA Full path to export metadata.csv file\n\n```\n\n### Cookie Setup\nThis method was added since v0.4.6 and uses a third party chrome extension to simply code all cookies. This step is now the only stable method for uploads and has to be completed before any upload process. The chrome extension is simply the first one I found and is no way related to the project and as such I do not extend any support or warranty for it.\n\nThe chrome extension I am using is called [Copy Cookies and you can find it here](https://chrome.google.com/webstore/detail/copy-cookies/jcbpglbplpblnagieibnemmkiamekcdg/related)\n\nIt does exactly one thing, copies cookies over and in this case we are copying over the cookies after logging into [code.earthengine.google](https://code.earthengine.google.com)\n\n![cookie_copy](https://user-images.githubusercontent.com/6677629/114257576-8de20780-9986-11eb-86c5-4c85e35367c3.gif)\n\n\n**Import things to Note**\n\n* Open a brand browser window while you are copying cookies (do not use an incognito window as GEE does not load all cookies needed), if you have multiple GEE accounts open on the same browser the cookies being copied may create some read issues at GEE end.\n* Clear cookies and make sure you are copying cookies from [code.earthengine.google](https://code.earthengine.google.com) in a fresh browser instance if upload fails with a ```Unable to read``` error.\n* Make sure you save the cookie for the same account which you initiliazed using earthengine authenticate\n\nTo run cookie_setup and to parse and save cookie user\n\n```\ngeeup cookie_setup\n```\n\n* For **Bash** the cannonical mode will allow you to only paste upto 4095 characters and as such geeup cookie_setup might seem to fail for this use the following steps\n\n* Disable cannonical mode by typing ```stty -icanon``` in terminal\n* Then run ```geeup cookie_setup```\n* Once done reenable cannonical mode by typing ```stty icanon``` in terminal\n\n**For mac users change default login shell from /bin/zsh to /bin/sh, the command stty -icanon works as expected, thanks to [Issue 41](https://github.com/samapriya/geeup/issues/41)**\n\n**Since cookies generated here are post login, theoretically it should work on accounts even with two factor auth or university based Single Sign on GEE accounts but might need further testing**\n\n### geeup upload\nThe script creates an Image Collection from GeoTIFFs in your local directory. By default, the image name in the collection is the same as the local directory name. The upload tool now allows only supports using cookies from your browser for uploads. It saves the cookie temporarily and uses it automatically till it expires when it asks you for cookie list again. For more details on [cookie setup go here](https://samapriya.github.io/geeup/projects/cookies_setup/). Optional arguments now includes passing both Pyramiding strategy (default is set to Mean) as well as no data value.\n\n```\ngeeup upload -h\nusage: geeup upload [-h] --source SOURCE --dest DEST -m METADATA [--nodata NODATA] [--pyramids PYRAMIDS] [-u USER]\n\noptional arguments:\n -h, --help show this help message and exit\n\nRequired named arguments.:\n --source SOURCE Path to the directory with images for upload.\n --dest DEST Destination. Full path for upload to Google Earth Engine image collection, e.g. users/pinkiepie/myponycollection\n -m METADATA, --metadata METADATA\n Path to CSV with metadata.\n -u USER, --user USER Google account name (gmail address).\n\nOptional named arguments:\n --nodata NODATA The value to burn into the raster as NoData (missing data)\n --pyramids PYRAMIDS Pyramiding Policy, MEAN, MODE, MIN, MAX, SAMPLE\n```\n\nExample setup would be\n\n![gee_upload](https://user-images.githubusercontent.com/6677629/147895638-3d542ea5-2c72-43b7-8052-c5edef0ab717.gif)\n\nIf you are using cookies for image upload setup would be\n\n```\ngeeup upload --source \"full path to folder with GeoTIFFs\" --dest \"Full path for upload to Google Earth Engine, e.g. users/pinkiepie/myponycollection\" --metadata \"Full path for metadata file.csv\" --user \"email@domain.com authenticated and used with GEE\" --nodata 0 --pyramids MODE\n```\n\n### geeup tabup\nThis tool allows you to batch download tables/shapefiles/CSVs to a folder. It uses a modified version of the image upload and a wrapper around the earthengine upload cli to achieve this while creating folders if they don't exist and reporting on assets and checking on uploads. This only requires a source, destination and your ee authenticated email address. The table upload tool now allows only supports using cookies from your browser for uploads. It saves the cookie temporarily and uses it automatically till it expires when it asks you for cookie list again. For more details on [cookie setup go here](https://samapriya.github.io/geeup/projects/cookies_setup/).\n\n```\ngeeup tabup -h\nusage: geeup tabup [-h] --source SOURCE --dest DEST [-u USER] [--x X] [--y Y]\n\noptional arguments:\n -h, --help show this help message and exit\n\nRequired named arguments.:\n --source SOURCE Path to the directory with zipped files or CSV files for upload.\n --dest DEST Destination. Full path for upload to Google Earth Engine folder, e.g. users/pinkiepie/myfolder\n -u USER, --user USER Google account name (gmail address).\n\nOptional named arguments:\n --x X Column with longitude value\n --y Y Column with latitude value\n```\nExample setup\n\n![gee_tabup](https://user-images.githubusercontent.com/6677629/147895900-4e4a14c4-ed89-4d3d-8572-b96198703ade.gif)\n\nIf you are using cookies for table upload setup would be\n\n```\ngeeup tabup --source \"full path to folder with Zipped Shapefiles/CSV files\" --dest \"Full path for upload to Google Earth Engine, e.g. users/pinkiepie/folder\" --user \"email@domain.com authenticated and used with GEE\"\n```\n\n### geeup tasks\nThis script counts all currently running, ready, completed, failed and canceled tasks along with failed tasks. This tool is linked to your google earth engine account with which you initialized the earth engine client. This takes no argument.\n\n```\nusage: geeup tasks [-h]\n\noptional arguments:\n -h, --help show this help message and exit\n```\n\n### geeup delete\nThe delete is recursive, meaning it will also delete all children assets: images, collections, and folders. Use with caution!\n\n```\nusage: geeup delete [-h] id\n\npositional arguments:\n id Full path to asset for deletion. Recursively removes all\n folders, collections and images.\n\noptional arguments:\n -h, --help show this help message and exit\n```\n# Changelog\n\n### 0.5.3\n- Major version removed selenium support as stable method\n- Overall improvements to performance and codebase\n- Updated docs and ReadMe\n\n### 0.5.2\n- Fixed GDAL check for package\n\n### 0.5.1\n- Now support both zipped shapefile as well as batch CSV upload\n- General Improvements\n\n### 0.5.0\n- fixed typo in version check\n\n### v0.4.9\n- Improvements to redundancy in code\n- Improvements to version check for tool\n- General cleanup\n\n### v0.4.8\n- Fixed issue with epoch time conversion for 1970s and issue with second vs millisecond parsing\n\n### v0.4.7\n- Both table and image upload support using cookies and better error handling.\n- Improved zipshape tool to avoid error handling\n- Image upload to collection now support pyramiding policy\n- Cookie setup tool now auto enables long string for Linux\n\n### v0.4.6\n- Now pass cookies for authentication and image and table uploaders.\n- Added readme docs and feature to the tool\n- Minor improvements to the overall tool.\n\n### v0.4.5\n- Replaced firefox_options with options for selenium 3.14 and higher related to [issue 24](https://github.com/samapriya/geeup/issues/24) for selsetup\n- updated earthengine-api requirement to 0.1.238\n- update tasks fetch from earthengine api\n\n### v0.4.4\n- Replaced firefox_options with options for selenium 3.14 and higher related to [issue 24](https://github.com/samapriya/geeup/issues/24)\n\n### v0.4.3\n- Updated quota tool to handle Google Cloud Projects in GEE\n\n### v0.4.2\n- Fixed issue with [geckodriver path](https://github.com/samapriya/geeup/issues/22) and better path parsing\n- Added CI check for geckodriver\n\n### v0.4.1\n- Fixed selenium parser issue [Issue 19](https://github.com/samapriya/geeup/issues/19)\n- Implemented Cloud API fix for table uploads\n- Improved Cloud API fix for Imagery upload with improved manifest handling\n- Improvement and code cleanup\n\n### v0.4.0\n- Updated earthengine API library requirements to 0.1.222\n- Added version check tool for auto version check with PyPI\n\n### v0.3.7\n- Revisions to account for changes to API and client library 0.1.215\n- Now checks vertex count for each shapefile and logs warning with those exceeding million vertices while zipping.\n- Uses table manifest to perform table uploads designed to be more robust.\n- Simpler recursive delete functionality.\n- Overall General improvements.\n\n### v0.3.5-v0.3.6\n- Fixed downloader for pipwin for [release >= 0.4.8](https://github.com/lepisma/pipwin/pull/41)\n- Improved overall package installation for windows\n- Check pipwin import version to get release 0.4.9\n\n### v0.3.4\n- Supports python3 only since v0.3.4\n- Added stackoverflow based auth fix for some users [Issue 13](https://github.com/samapriya/geeup/issues/13) and [Issue 16](https://github.com/samapriya/geeup/issues/16).\n- General improvements.\n\n### v0.3.3\n- Added fix for handling no data in manifests while uploading.\n\n### v0.3.2\n- Fixed issue with selsetup.\n\n### v0.3.1\n- Fixed issue with raw_input and input for selsetup.\n- Fixed selenium path for windows and other platforms.\n- General improvements to ReadMe\n\n### v0.3.0\n- Fixed (issue 13)[https://github.com/samapriya/geeup/issues/13] non relative import.\n- Fixed issues with package import.\n\n### v0.2.9\n- Fixed issues caused by --no-use_cloud_api in earthengine-api package\n\n### v0.2.7\n- Fix to handle case senstive platform type for all os Fix to [Issue 11](https://github.com/samapriya/geeup/issues/11)\n\n### v0.2.6\n- Fixed geckodriver path to handle macos Fix to [Issue 10](https://github.com/samapriya/geeup/issues/10)\n\n### v0.2.5\n- Now allows for downloading geckodriver for macos Fix to [Issue 10](https://github.com/samapriya/geeup/issues/10)\n- Now includes a metadata tool to generate a generalized metadata for any raster to allow upload.\nFix to [Issue 7](https://github.com/samapriya/geeup/issues/7)\n- Changed from geeup update to init to signify initialization\n- Added selsetup this tool allows for setting up the gecko driver with your account incase there are issues uploading\n- Better error handling for selenium driver download\n\n### v0.2.4\n- Made general improvements\n- Better error handling for selenium driver download\n\n### v0.2.2\n- Can now handle generalized metadata (metadata is now required field)\n- Fixed issues with table upload\n- Overall code optimization and handle streaming upload\n\n### v0.1.9\n- Changes to handle PyDL installation for Py2 and Py3\n- Removed Planet uploader to make tool more generalized\n\n### v0.1.8\n- Multipart encoder using requests toolbelt for streaming upload\n- Changed manifest upload methodology to match changes in earthengine-api\n\n### v0.1.6\n- Fixed issue with [module locations](https://github.com/samapriya/geeup/issues/2)\n\n### v0.1.5\n- Fixed issue with gecko driver paths\n- Fixed issue with null uploads using task, switched to ee CLI upload\n\n### v0.1.4\n- OS based geckdriver path fix\n- General improvements\n\n### v0.1.3\n- fixed issues with extra arguments\n- Upload issue resolved\n- General dependency\n\n### v0.1.1\n- fixed dependency issues\n- Upload post issues resolved\n- Removed dependency on poster for now\n\n### v0.0.9\n- fixed attribution and dependecy issues\n- Included poster to improve streaming uploads\n- All uploads now use selenium\n\n### v0.0.8\n- fixed issues with unused imports\n\n### v0.0.7\n- fixed issues with manifest lib\n\n### v0.0.6\n- Detailed quota readout\n- Uses selenium based uploader to upload images\n- Avoids issues with python auth for upload\n\n### v0.0.5\n- Removed unnecessary library imports\n- Minor improvements and updated readme\n\n### v0.0.4\n- Improved valid table name check before upload\n- Improvements to earth engine quota tool for more accurate quota and human readable\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://github.com/samapriya/geeup", "keywords": "", "license": "Apache 2.0", "maintainer": "", "maintainer_email": "", "name": "geeup", "package_url": "https://pypi.org/project/geeup/", "platform": "", "project_url": "https://pypi.org/project/geeup/", "project_urls": { "Homepage": "https://github.com/samapriya/geeup" }, "release_url": "https://pypi.org/project/geeup/0.5.3/", "requires_dist": [ "earthengine-api (>=0.1.274)", "logzero (>=1.5.0)", "requests (>=2.10.0)", "retrying (>=1.3.3)", "beautifulsoup4 (>=4.9.0)", "pandas (>=0.23.0)", "psutil (>=5.4.5)", "requests-toolbelt (>=0.7.0)", "pytest (>=3.0.0)", "google-cloud-storage (>=1.1.1)", "pathlib (>=1.0.1)", "lxml (>=4.1.1)", "oauth2client (>=4.1.3)", "pyproj (>=1.9.5.1) ; platform_system != \"Windows\"", "shapely (>=1.6.4) ; platform_system != \"Windows\"", "fiona (>=1.8.6) ; platform_system != \"Windows\"", "geopandas (>=0.5.0) ; platform_system != \"Windows\"", "pipwin (==0.5.0) ; platform_system == \"Windows\"", "pySmartDL (==1.2.5) ; python_version < \"3.4\"", "pySmartDL (>=1.3.1) ; python_version > \"3.4\"" ], "requires_python": "", "summary": "Simple Client for Earth Engine Uploads with Selenium Support", "version": "0.5.3", "yanked": false, "yanked_reason": null }, "last_serial": 12461739, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "74bd16918bdc84eacb0bda53917ca09f", "sha256": "6810a2faef3acf976bc51b378aa15da9d07449e05469665e42221c420d1176a4" }, "downloads": -1, "filename": "geeup-0.0.1.tar.gz", "has_sig": false, "md5_digest": "74bd16918bdc84eacb0bda53917ca09f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13961, "upload_time": "2018-08-11T04:44:24", "upload_time_iso_8601": "2018-08-11T04:44:24.757398Z", "url": "https://files.pythonhosted.org/packages/de/7e/129177607e9d179bc242070e587c0c3dac119f3452b501c1521053795324/geeup-0.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "8f65ded856c61bb727930cbf7a78da4c", "sha256": "64a6cd9e7600de0249e7334bb2c6d4099c70a0d23aa7b234caabaae7a4eaff21" }, "downloads": -1, "filename": "geeup-0.0.2.tar.gz", "has_sig": false, "md5_digest": "8f65ded856c61bb727930cbf7a78da4c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14075, "upload_time": "2018-08-11T04:48:54", "upload_time_iso_8601": "2018-08-11T04:48:54.533602Z", "url": "https://files.pythonhosted.org/packages/b5/04/499b1bbe69788f4b3bf03c719e0007153d02f2d064e0b8913cfb3fac7f49/geeup-0.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "219bce3687b2c5f4eb5aefe1d15a7123", "sha256": "1f2cfca1045c3dd9e7a7ac65337401b1845369b6a2df7eacda22c1d65bf4c3c0" }, "downloads": -1, "filename": "geeup-0.0.3.tar.gz", "has_sig": false, "md5_digest": "219bce3687b2c5f4eb5aefe1d15a7123", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13658, "upload_time": "2018-08-11T05:11:38", "upload_time_iso_8601": "2018-08-11T05:11:38.158432Z", "url": "https://files.pythonhosted.org/packages/1d/9c/3db45775fc46f364cfeb22b43900be5100033a3bd402997a566f39cc18cb/geeup-0.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "4dc96fd8a1b521ceb0125663ba8cc5ad", "sha256": "3ca269322d49c5f3683e9e5f30d68994b384152ad0655bd69124a2b0c045dffe" }, "downloads": -1, "filename": "geeup-0.0.4.tar.gz", "has_sig": false, "md5_digest": "4dc96fd8a1b521ceb0125663ba8cc5ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13997, "upload_time": "2018-09-02T01:50:06", "upload_time_iso_8601": "2018-09-02T01:50:06.227108Z", "url": "https://files.pythonhosted.org/packages/47/68/eead4d6a1b37dc3acffaa45dfdffbcad49206fb9d5db0db2edea0a5ef143/geeup-0.0.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "726a013c908b76e7450126e03aafe37e", "sha256": "9a01e4f0044665e56302aecdfc02eceb206899473c910ae9fde45e70b3db28b8" }, "downloads": -1, "filename": "geeup-0.0.5.tar.gz", "has_sig": false, "md5_digest": "726a013c908b76e7450126e03aafe37e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14031, "upload_time": "2018-11-05T01:07:39", "upload_time_iso_8601": "2018-11-05T01:07:39.417611Z", "url": "https://files.pythonhosted.org/packages/6a/4e/34abe1515eded5ea68efa5aa3c458933edb25ab49013edb2f9a363110e50/geeup-0.0.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "44922ec1d641a17c664f27cba0c39e28", "sha256": "62fd8b7c4412d12796079d7b5574d8990c09d8efce15774d97b1137159f93756" }, "downloads": -1, "filename": "geeup-0.0.7.tar.gz", "has_sig": false, "md5_digest": "44922ec1d641a17c664f27cba0c39e28", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21945, "upload_time": "2018-12-26T17:44:54", "upload_time_iso_8601": "2018-12-26T17:44:54.197438Z", "url": "https://files.pythonhosted.org/packages/72/6c/35ecc97d12e329b3fa7f3984fcc2cb5ab62a72d50ae6917d63ef6a70f704/geeup-0.0.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "a60c9351ac9b2581d3e7afcff9659714", "sha256": "9e4d515d61c129ecb9d7476bef3050c4d2909a64767491d410ec32cd07b5da8d" }, "downloads": -1, "filename": "geeup-0.0.8.tar.gz", "has_sig": false, "md5_digest": "a60c9351ac9b2581d3e7afcff9659714", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21978, "upload_time": "2018-12-27T13:35:54", "upload_time_iso_8601": "2018-12-27T13:35:54.620439Z", "url": "https://files.pythonhosted.org/packages/ce/89/521314041ca5d7e830e809486b5f1ecd381c9211971e98176352e5c96c83/geeup-0.0.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "2596e20e929b4c1545f0b52b004721fe", "sha256": "45bcb56b5a8f07e8d3f82a498caf516ef0f5fc2bea0947b590f4e88f55117757" }, "downloads": -1, "filename": "geeup-0.0.9.tar.gz", "has_sig": false, "md5_digest": "2596e20e929b4c1545f0b52b004721fe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21799, "upload_time": "2019-01-02T04:55:44", "upload_time_iso_8601": "2019-01-02T04:55:44.743312Z", "url": "https://files.pythonhosted.org/packages/82/7b/135a66ae8d7b3dd8ad20d58f7ffebcc77748206755062320d0669a337466/geeup-0.0.9.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "6f3506b6cce14ef8470dee76191834ae", "sha256": "6f9762f22be0c156c8678dc235a6e4f1813d12ea049be1bed83779ee74c1c5e6" }, "downloads": -1, "filename": "geeup-0.1.0.tar.gz", "has_sig": false, "md5_digest": "6f3506b6cce14ef8470dee76191834ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20772, "upload_time": "2019-01-03T01:14:44", "upload_time_iso_8601": "2019-01-03T01:14:44.064767Z", "url": "https://files.pythonhosted.org/packages/ed/79/420d3605d03b296e6bde9c1808f197aae5a6a4d4116f6851862f20055dd0/geeup-0.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "04e00ac66048013beae0c6c2b7739672", "sha256": "550031e9229b68f2e363e2584ee0e81ab64d63d43043ac0c0739d639cdfd372e" }, "downloads": -1, "filename": "geeup-0.1.1.tar.gz", "has_sig": false, "md5_digest": "04e00ac66048013beae0c6c2b7739672", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20731, "upload_time": "2019-01-03T01:18:23", "upload_time_iso_8601": "2019-01-03T01:18:23.313758Z", "url": "https://files.pythonhosted.org/packages/d8/d5/73e95a767403096e182d2aabdf35fdadfd25dce4ff88e1b93216b2c17873/geeup-0.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "b9e22e51fb6598b358a078379c4747bc", "sha256": "645109fba08ea8598591da76d02998a159e7196920b81da6ab754e354c5eadff" }, "downloads": -1, "filename": "geeup-0.1.2.tar.gz", "has_sig": false, "md5_digest": "b9e22e51fb6598b358a078379c4747bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21157, "upload_time": "2019-01-04T17:03:24", "upload_time_iso_8601": "2019-01-04T17:03:24.157182Z", "url": "https://files.pythonhosted.org/packages/eb/4b/dbfb3c66daecec1bc361c88d68bb33b2894b539cca46d33169a7b323d65f/geeup-0.1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "acbe983eb43cefb4d1166a426c6d0ba4", "sha256": "1343deb554cbaea7a19cf3bb49f607a1e12613a621fa8808e7a611c004fc4ccd" }, "downloads": -1, "filename": "geeup-0.1.3.tar.gz", "has_sig": false, "md5_digest": "acbe983eb43cefb4d1166a426c6d0ba4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21200, "upload_time": "2019-01-07T05:54:49", "upload_time_iso_8601": "2019-01-07T05:54:49.424085Z", "url": "https://files.pythonhosted.org/packages/0b/8f/5b0788e08a02656ad1661c431baba7e1091c0daacc3d801922763ab06c88/geeup-0.1.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "0c6111e89487f347aa756cf85526f19d", "sha256": "020100246788b4e2145fae46e3ae9db737db3095075563066f5a52dcfd5bd1bf" }, "downloads": -1, "filename": "geeup-0.1.4.tar.gz", "has_sig": false, "md5_digest": "0c6111e89487f347aa756cf85526f19d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21280, "upload_time": "2019-01-10T23:38:16", "upload_time_iso_8601": "2019-01-10T23:38:16.872138Z", "url": "https://files.pythonhosted.org/packages/15/06/42d5462cdb4d9103c8a07c0af297f432249a1b1823001b67ab063f16db06/geeup-0.1.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "565e53595cdbb3a9834317324d81528d", "sha256": "8dd7c5e3fd715251f0ad7f3aeab1d805ec351a6b2a0e29e483291eda674af76a" }, "downloads": -1, "filename": "geeup-0.1.5.tar.gz", "has_sig": false, "md5_digest": "565e53595cdbb3a9834317324d81528d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21305, "upload_time": "2019-04-15T07:21:20", "upload_time_iso_8601": "2019-04-15T07:21:20.221325Z", "url": "https://files.pythonhosted.org/packages/76/8e/28f2631b9d6b6b2af56013638bb3aa6138d25fa60249e3e8a46306f031d6/geeup-0.1.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "3656f61c7755859f18af43888ee763c8", "sha256": "d0a16d313d46996f5e56717a7fd1c77eae680c760def59279f011c79e6fa663f" }, "downloads": -1, "filename": "geeup-0.1.6.tar.gz", "has_sig": false, "md5_digest": "3656f61c7755859f18af43888ee763c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21360, "upload_time": "2019-04-29T03:01:12", "upload_time_iso_8601": "2019-04-29T03:01:12.262776Z", "url": "https://files.pythonhosted.org/packages/18/cd/49b76b41cbb930902a11a10a518b9a039f73362b7df9656fcde476b999cd/geeup-0.1.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "56efe0482dab68b42f3f6071eacadefb", "sha256": "6ebdde65884d505eb8719de406fd2d29d03a34fa344fe0bf009da83e6ae4404f" }, "downloads": -1, "filename": "geeup-0.1.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "56efe0482dab68b42f3f6071eacadefb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 26656, "upload_time": "2019-05-07T12:48:03", "upload_time_iso_8601": "2019-05-07T12:48:03.494572Z", "url": "https://files.pythonhosted.org/packages/75/95/1f307d898fb60c67076b39fb99d88de8bbd48d4c173aefd9f50f5abcbca4/geeup-0.1.7-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7bd927e084a6bf1b280211e5b9718625", "sha256": "6eb3ba58884999b59e3655ad868e73cf6626d45803021d237e8b78c8a8970a6f" }, "downloads": -1, "filename": "geeup-0.1.7.tar.gz", "has_sig": false, "md5_digest": "7bd927e084a6bf1b280211e5b9718625", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21390, "upload_time": "2019-05-07T12:48:05", "upload_time_iso_8601": "2019-05-07T12:48:05.030324Z", "url": "https://files.pythonhosted.org/packages/d2/cb/7dd935a56fb3e97f42dccca3ffb0d302d48312de8384dada2770f60307b5/geeup-0.1.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "152e37f023c6ceb6a9199a5c27f2c7a3", "sha256": "82a759417d9fdcc7880475844586af72b3ac23c47e98db39ad278f0fc5b3fb06" }, "downloads": -1, "filename": "geeup-0.1.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "152e37f023c6ceb6a9199a5c27f2c7a3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 27032, "upload_time": "2019-05-09T03:10:08", "upload_time_iso_8601": "2019-05-09T03:10:08.879938Z", "url": "https://files.pythonhosted.org/packages/7e/a6/d9d388f1826c7103e960a2efc95bd8df052e67e37e81f6486b4443ac4ddd/geeup-0.1.8-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5b2c513a9850bd7adf24daa32580bb40", "sha256": "ae1904544b86108bd1262003e03d70b070aa3129460b714129d4ecbaf1f4125a" }, "downloads": -1, "filename": "geeup-0.1.8.tar.gz", "has_sig": false, "md5_digest": "5b2c513a9850bd7adf24daa32580bb40", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21676, "upload_time": "2019-05-09T03:10:10", "upload_time_iso_8601": "2019-05-09T03:10:10.333167Z", "url": "https://files.pythonhosted.org/packages/db/52/cbe596dab509c5ce60cb5b5eca79356af0d7e667e9eaa533f4d5d76cf029/geeup-0.1.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "05fd4201751a1b2b56c31387ae62b058", "sha256": "edf6b30ad85a9c270a3331a667b797dcc3de1c9971a745cdbeb54e411c0ef3cb" }, "downloads": -1, "filename": "geeup-0.1.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "05fd4201751a1b2b56c31387ae62b058", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 21940, "upload_time": "2019-05-09T03:44:35", "upload_time_iso_8601": "2019-05-09T03:44:35.576644Z", "url": "https://files.pythonhosted.org/packages/76/06/157ca0672d1bacd2f6601e0b0504b7f5a60635b9ca1f1120a6b9678a32b1/geeup-0.1.9-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "22288ed33f02fd932285c331dbe5d4cc", "sha256": "d7128bfa9c83caff1a02c605ba7186e3d234626b0de62f9954f88338f86fa662" }, "downloads": -1, "filename": "geeup-0.1.9.tar.gz", "has_sig": false, "md5_digest": "22288ed33f02fd932285c331dbe5d4cc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18270, "upload_time": "2019-05-09T03:44:37", "upload_time_iso_8601": "2019-05-09T03:44:37.020117Z", "url": "https://files.pythonhosted.org/packages/ed/b9/b11bfbc50c6a2043368f1cd60d8f80cd65fa79fa80666b08617782581526/geeup-0.1.9.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "ec8d6ba652172ccef8463127395fcf55", "sha256": "8049c9b87cad4af336b8b7fe40565b588361202b799ef2ef6f9135ac606241bd" }, "downloads": -1, "filename": "geeup-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ec8d6ba652172ccef8463127395fcf55", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 21941, "upload_time": "2019-05-09T04:47:02", "upload_time_iso_8601": "2019-05-09T04:47:02.394530Z", "url": "https://files.pythonhosted.org/packages/21/77/6c1454041347cf45e419eb91e9eb4c9b823dca01580c66e023f42ced92e2/geeup-0.2.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a03f84cbd3efdeb26684bc673eb70d51", "sha256": "fcaddcf906c22b0d3b06b97faec4be07dfa22fa621229e66640e85ebea47b9a5" }, "downloads": -1, "filename": "geeup-0.2.0.tar.gz", "has_sig": false, "md5_digest": "a03f84cbd3efdeb26684bc673eb70d51", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18263, "upload_time": "2019-05-09T04:47:04", "upload_time_iso_8601": "2019-05-09T04:47:04.077043Z", "url": "https://files.pythonhosted.org/packages/31/0c/b16af3535e76134afefa913f15db266dc38bd72161128cfd4fb8751bf710/geeup-0.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "2aa3ba6f5f3de7eb7cea7784db3d819f", "sha256": "d79a742d5e81c0bcd606c3b86c63e18fb7d9cdc87ba0cd82d95d7c4f9ad02ac1" }, "downloads": -1, "filename": "geeup-0.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2aa3ba6f5f3de7eb7cea7784db3d819f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 21945, "upload_time": "2019-05-09T18:59:13", "upload_time_iso_8601": "2019-05-09T18:59:13.839589Z", "url": "https://files.pythonhosted.org/packages/84/bf/6650f8da314c6704a6f0df899588ab5ab28fa0ba65865132629784826d9c/geeup-0.2.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b74e9783d24314eb43b2dcda89126147", "sha256": "9044b2c52b06e6ac05341a28b67e1587a6ec06f72fb8d45c6659f84aaab8bfb0" }, "downloads": -1, "filename": "geeup-0.2.1.tar.gz", "has_sig": false, "md5_digest": "b74e9783d24314eb43b2dcda89126147", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18260, "upload_time": "2019-05-09T18:59:15", "upload_time_iso_8601": "2019-05-09T18:59:15.357443Z", "url": "https://files.pythonhosted.org/packages/05/f1/3aed55ab4e08944024ed9447d790baed11ac3e542ab249d85e1b70c00877/geeup-0.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "f4bd30e9dffd55183833c1a5f4fc8152", "sha256": "2484ba6c64bd7ae0ea051b9be51ba1603ebe63d8101ff0d3e94ef62ea8cfe78e" }, "downloads": -1, "filename": "geeup-0.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f4bd30e9dffd55183833c1a5f4fc8152", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20522, "upload_time": "2019-05-20T17:24:06", "upload_time_iso_8601": "2019-05-20T17:24:06.079222Z", "url": "https://files.pythonhosted.org/packages/40/a1/103643e53d4263bd5186b6ef2a3023fcac8a718e0a2399fbd8d36e4e4ad7/geeup-0.2.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "38a6e9d359b32e8370659cd6dce0f799", "sha256": "fea3a699943e034d187f5a799338ab54d12200765a85c00fdc68cd472d374bce" }, "downloads": -1, "filename": "geeup-0.2.2.tar.gz", "has_sig": false, "md5_digest": "38a6e9d359b32e8370659cd6dce0f799", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16469, "upload_time": "2019-05-20T17:24:07", "upload_time_iso_8601": "2019-05-20T17:24:07.736971Z", "url": "https://files.pythonhosted.org/packages/a9/83/19f4e9dd8a7a789ba32a440270be97d9ab7e05853d4984e0720026e8d0d2/geeup-0.2.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "b0910f5134f003bade2dc07cbed919c7", "sha256": "3e24c8f46b06d8c3c1e05416509d8c0e779bd941ca3436ba4f49c6277d848a39" }, "downloads": -1, "filename": "geeup-0.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b0910f5134f003bade2dc07cbed919c7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 24844, "upload_time": "2019-05-30T02:03:20", "upload_time_iso_8601": "2019-05-30T02:03:20.209649Z", "url": "https://files.pythonhosted.org/packages/5a/b9/23f908f212219879e0209d1c13c2c387228210d9a77904a762118ce352b2/geeup-0.2.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9fe78135c0f2f8ae1cdabcbef19d6824", "sha256": "5ae07cabb007fbb8ed66ff11bbe364d3e578503ef15f3a34486667b4fa58b079" }, "downloads": -1, "filename": "geeup-0.2.3.tar.gz", "has_sig": false, "md5_digest": "9fe78135c0f2f8ae1cdabcbef19d6824", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16559, "upload_time": "2019-05-30T02:03:21", "upload_time_iso_8601": "2019-05-30T02:03:21.783410Z", "url": "https://files.pythonhosted.org/packages/25/be/b31fbf8fb630210f8e4e2bfe9adda9383128d6df3f26b251bea163aa716b/geeup-0.2.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "556a467ebeacb6434b9c466d60e595c4", "sha256": "ab6ac8a10cd56d67bd7c1b1e12327fba1766f7f434d09a83a4aae95249b69c29" }, "downloads": -1, "filename": "geeup-0.2.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "556a467ebeacb6434b9c466d60e595c4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20589, "upload_time": "2019-05-31T16:02:23", "upload_time_iso_8601": "2019-05-31T16:02:23.347703Z", "url": "https://files.pythonhosted.org/packages/b0/47/3295bd655286c4dcf9df98c1ca85afe9ca93404522becf354b484d7f7587/geeup-0.2.4-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "de4b4403acb13ff3960073068ef9d09c", "sha256": "20f62306ea900d7fa28a97cc92204716212dc030c50a6ac8214772a61a1a83fe" }, "downloads": -1, "filename": "geeup-0.2.4.tar.gz", "has_sig": false, "md5_digest": "de4b4403acb13ff3960073068ef9d09c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16339, "upload_time": "2019-05-31T16:02:24", "upload_time_iso_8601": "2019-05-31T16:02:24.867749Z", "url": "https://files.pythonhosted.org/packages/cb/6c/c2e1798e3da3469ba9c8fd4d2e725844b03d31acd3de26303a5355275e37/geeup-0.2.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "f1df91691c0a1fd9de0f4253dc1a00b9", "sha256": "833658101f83461bb552dd2151a773d97b55549e7a8b4361e07dd7e2cc44cbec" }, "downloads": -1, "filename": "geeup-0.2.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f1df91691c0a1fd9de0f4253dc1a00b9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 24027, "upload_time": "2019-08-16T03:06:50", "upload_time_iso_8601": "2019-08-16T03:06:50.852021Z", "url": "https://files.pythonhosted.org/packages/02/8a/9d01408fd6f23ef9b16ed7b632ddad14a5993787f7d0e5ec8331a32b1823/geeup-0.2.5-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a9a246e23482ed5e35c9d1093e06770c", "sha256": "300c11381038489392ed3b878ebc82cb879047acbfc03423aba36fc5ce4f8a34" }, "downloads": -1, "filename": "geeup-0.2.5.tar.gz", "has_sig": false, "md5_digest": "a9a246e23482ed5e35c9d1093e06770c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18986, "upload_time": "2019-08-16T03:06:52", "upload_time_iso_8601": "2019-08-16T03:06:52.858094Z", "url": "https://files.pythonhosted.org/packages/85/62/f24a6abbb0c3550ab034cbdda0609223d239f32c1543343ac6a1207ae980/geeup-0.2.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "32adddfd87e175c3a7e51d984ea8a371", "sha256": "9fd7c1bd4246fdd42f8e14e2c2119451966ddec1ecab70a9c8132b955b4e2871" }, "downloads": -1, "filename": "geeup-0.2.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "32adddfd87e175c3a7e51d984ea8a371", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 24017, "upload_time": "2019-08-17T12:36:48", "upload_time_iso_8601": "2019-08-17T12:36:48.735995Z", "url": "https://files.pythonhosted.org/packages/5d/02/a15fc8b050c7ffc71f12a67631e7f4a0f95c3c2925db0165ddfde3c9a94a/geeup-0.2.6-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3b05866d37a0edcf20a36eed0fb79b9d", "sha256": "41cb4758bc8f811aacac8164ed855fd07e9f7290f99d5785f1bda9fe01abe897" }, "downloads": -1, "filename": "geeup-0.2.6.tar.gz", "has_sig": false, "md5_digest": "3b05866d37a0edcf20a36eed0fb79b9d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18975, "upload_time": "2019-08-17T12:36:50", "upload_time_iso_8601": "2019-08-17T12:36:50.372350Z", "url": "https://files.pythonhosted.org/packages/82/fd/107c17703a05a73c4fe84b0e8dd41c5bd98981316061f61441b5fa6eb69f/geeup-0.2.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "a7b5f6603f6cea2cd67392a61ba0a3fe", "sha256": "706f8fd6bdd5ce2a17b1c17d0d22ef5f46c7a69fde9b92c05694b4bb165a67e9" }, "downloads": -1, "filename": "geeup-0.2.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a7b5f6603f6cea2cd67392a61ba0a3fe", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 24050, "upload_time": "2019-08-21T01:55:56", "upload_time_iso_8601": "2019-08-21T01:55:56.974626Z", "url": "https://files.pythonhosted.org/packages/46/8e/c386c23d43c1afc38344e4537008c9a33e408fc7e1540564fab1fe79356e/geeup-0.2.7-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "375d3624fa0aed695e4e600e07c42c34", "sha256": "af6a9a71b0d8a37ef8a04c0e80174083037c95231ae2c745f27b377d655aeba7" }, "downloads": -1, "filename": "geeup-0.2.7.tar.gz", "has_sig": false, "md5_digest": "375d3624fa0aed695e4e600e07c42c34", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19000, "upload_time": "2019-08-21T01:55:58", "upload_time_iso_8601": "2019-08-21T01:55:58.729398Z", "url": "https://files.pythonhosted.org/packages/78/a4/a78aecb473c000fe70d84962214a85417157cf575d71e48c5a65232746f6/geeup-0.2.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.8": [ { "comment_text": "", "digests": { "md5": "8fecc11635c84183776ba8797c67ed6a", "sha256": "2eaa7a6246b060793735b50d7ab121ec5b8addf42497301f8cf5c0389bbe8ce2" }, "downloads": -1, "filename": "geeup-0.2.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8fecc11635c84183776ba8797c67ed6a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 24054, "upload_time": "2019-08-29T13:19:18", "upload_time_iso_8601": "2019-08-29T13:19:18.997151Z", "url": "https://files.pythonhosted.org/packages/79/a0/57c8a91d56c96cf248f82474588ae49943802d2dc9095de5ff0a0fe9c636/geeup-0.2.8-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "746353701bb2b86da5bc15ed2c1e6b3d", "sha256": "fe57f9e7695d9b13306f220933725539b68eac932be932d5846ba0261f89577c" }, "downloads": -1, "filename": "geeup-0.2.8.tar.gz", "has_sig": false, "md5_digest": "746353701bb2b86da5bc15ed2c1e6b3d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19022, "upload_time": "2019-08-29T13:19:20", "upload_time_iso_8601": "2019-08-29T13:19:20.948336Z", "url": "https://files.pythonhosted.org/packages/2c/08/83b613706c427317a2f8d4500b0c787d9a178c55cca37931af3595c366ed/geeup-0.2.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.9": [ { "comment_text": "", "digests": { "md5": "556197077c2fe31ca2c7074d29cc1dac", "sha256": "fa07ecb9df5d287e7a29630efe28e3309892974549877897d7035c55e73f82c5" }, "downloads": -1, "filename": "geeup-0.2.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "556197077c2fe31ca2c7074d29cc1dac", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 24104, "upload_time": "2019-09-04T14:38:50", "upload_time_iso_8601": "2019-09-04T14:38:50.705735Z", "url": "https://files.pythonhosted.org/packages/c2/f7/e4e92e84e34ebe04df7dffb97a4a24a955d2e0e60eb41c2a5a5ab29d9a74/geeup-0.2.9-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1f5912474918710eafc01d42349282fb", "sha256": "524946592ba92509b5b6065f69fc18c9bdd74c96a6b8554ea539ec2192b76bd3" }, "downloads": -1, "filename": "geeup-0.2.9.tar.gz", "has_sig": false, "md5_digest": "1f5912474918710eafc01d42349282fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19062, "upload_time": "2019-09-04T14:38:52", "upload_time_iso_8601": "2019-09-04T14:38:52.102525Z", "url": "https://files.pythonhosted.org/packages/1f/8c/bde277f017cb2ddee24cea7e2a265b9f6005c7ddd8d5ed0dbcd608f61616/geeup-0.2.9.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "10a9b6d4b2a171ba032ad40cf05ce885", "sha256": "4d0deef4926c575b22b447abb02fc53a35a0a5f83b9bcca1a49fd5e070be8daf" }, "downloads": -1, "filename": "geeup-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "10a9b6d4b2a171ba032ad40cf05ce885", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 24125, "upload_time": "2019-09-21T17:24:36", "upload_time_iso_8601": "2019-09-21T17:24:36.426595Z", "url": "https://files.pythonhosted.org/packages/33/bc/49e6d73d29164147ca2239bc2a51eada6f4680f46d9e97fdeb227164c8c7/geeup-0.3.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "37d401aee397798a2482866aecb6caac", "sha256": "bfbb423fb4bb908823bca957d72599c0302fbf434e93592a984f56acba2abace" }, "downloads": -1, "filename": "geeup-0.3.0.tar.gz", "has_sig": false, "md5_digest": "37d401aee397798a2482866aecb6caac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19083, "upload_time": "2019-09-21T17:24:37", "upload_time_iso_8601": "2019-09-21T17:24:37.973063Z", "url": "https://files.pythonhosted.org/packages/b4/6d/95b916a1c748ce1ef1dc10efdfed4a1163b50cc12fe01dbdf6c733809e64/geeup-0.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "b0b6416d0e2ac577b21ce749f322d22d", "sha256": "97cad229e5939f0650713f21190f97076708f970a2f28ace9b4cb74e38415e89" }, "downloads": -1, "filename": "geeup-0.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b0b6416d0e2ac577b21ce749f322d22d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 25006, "upload_time": "2019-10-10T14:47:05", "upload_time_iso_8601": "2019-10-10T14:47:05.718783Z", "url": "https://files.pythonhosted.org/packages/6b/7e/fac76746b1f31a83de8b017889d0c1738d91ed8feb2033b2e4bfad6e218f/geeup-0.3.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ce758fa7d8fdb69a46267cf884d98e86", "sha256": "b7d8a7d7b6b0ad34d07332378daed32c7fa1614fddb57b64bf5db2cda630f48f" }, "downloads": -1, "filename": "geeup-0.3.1.tar.gz", "has_sig": false, "md5_digest": "ce758fa7d8fdb69a46267cf884d98e86", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19947, "upload_time": "2019-10-10T14:47:08", "upload_time_iso_8601": "2019-10-10T14:47:08.114114Z", "url": "https://files.pythonhosted.org/packages/84/e4/243c35f724159c9806b81dbf49b04d5a7b38fd3c469addc77ae7c763f0ba/geeup-0.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "6064a82e9109db01af217fbf3b31c25e", "sha256": "179af79321c5c3499379d8c9a9900a865adb56c911b10a8653d42f3ef0b4ef0f" }, "downloads": -1, "filename": "geeup-0.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6064a82e9109db01af217fbf3b31c25e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 25116, "upload_time": "2019-10-26T14:04:16", "upload_time_iso_8601": "2019-10-26T14:04:16.790546Z", "url": "https://files.pythonhosted.org/packages/08/46/cec507ce228aaa89e7d2ce8981bfb576bb548868a01ff5e44bc3f8347024/geeup-0.3.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f912ba0ea297d641ee7d82c700654e34", "sha256": "1beab6f1a11326a0e201a409d010e1ed1580ccc1a75ebed4037736763efedcad" }, "downloads": -1, "filename": "geeup-0.3.2.tar.gz", "has_sig": false, "md5_digest": "f912ba0ea297d641ee7d82c700654e34", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19981, "upload_time": "2019-10-26T14:04:18", "upload_time_iso_8601": "2019-10-26T14:04:18.554534Z", "url": "https://files.pythonhosted.org/packages/dc/d7/4b43356d33b1b916034371d674cedd46c4e24962900caa564333bcf2bac8/geeup-0.3.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "0409b6426e44d26a59f2588a84936b60", "sha256": "7c5ef0faac2d150f3344a9456c30713f5e3b648a6228d8eaf028c5f8d414515f" }, "downloads": -1, "filename": "geeup-0.3.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0409b6426e44d26a59f2588a84936b60", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 25167, "upload_time": "2019-10-30T14:04:55", "upload_time_iso_8601": "2019-10-30T14:04:55.419241Z", "url": "https://files.pythonhosted.org/packages/24/7e/a626e1df56a4ba0912150c31161259123793263aa328d612b47026bb045f/geeup-0.3.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eeaa6f39a78a601752fa2969cb1215f5", "sha256": "8bba90abf7295f53abb02696059f8246cf2ab869f1c92b4b4080a63e12e505dd" }, "downloads": -1, "filename": "geeup-0.3.3.tar.gz", "has_sig": false, "md5_digest": "eeaa6f39a78a601752fa2969cb1215f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20089, "upload_time": "2019-10-30T14:04:57", "upload_time_iso_8601": "2019-10-30T14:04:57.074780Z", "url": "https://files.pythonhosted.org/packages/84/72/8f603252d67d0fd4bba13a9890687f0ae15f756b6d7ff5562a9c669d0169/geeup-0.3.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "e76a1d9f4c818cc0e87476708a1c18ea", "sha256": "44e35eb322c956acd629b39ea820c4b08fab8d20e22c63ce91dc8827d6bbe627" }, "downloads": -1, "filename": "geeup-0.3.4-py3-none-any.whl", "has_sig": false, "md5_digest": "e76a1d9f4c818cc0e87476708a1c18ea", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 29397, "upload_time": "2020-03-07T08:22:43", "upload_time_iso_8601": "2020-03-07T08:22:43.081919Z", "url": "https://files.pythonhosted.org/packages/91/58/c7682c20bbb2c1208cff7c8c5461da13634c6aca4fcf287cf382ceee6096/geeup-0.3.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ccc1372b82da1036fee1f18b63080598", "sha256": "8aa854839fe792bd67f6dbb729d5391c9f23635db544cb8a01add5ce77ae13ef" }, "downloads": -1, "filename": "geeup-0.3.4.tar.gz", "has_sig": false, "md5_digest": "ccc1372b82da1036fee1f18b63080598", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20321, "upload_time": "2020-03-07T08:22:44", "upload_time_iso_8601": "2020-03-07T08:22:44.568105Z", "url": "https://files.pythonhosted.org/packages/21/6d/08cf52879aa85211498d81011ef83c75ab422686edb15e7ba0440d6d29e8/geeup-0.3.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "e5bb00b38b59383c5a20bd28c6e4da6a", "sha256": "14a2a6624b07fa578182771e47fc47aadb6152a57ef19e89c0aaa6ffdf09ec2e" }, "downloads": -1, "filename": "geeup-0.3.5-py3-none-any.whl", "has_sig": false, "md5_digest": "e5bb00b38b59383c5a20bd28c6e4da6a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 29452, "upload_time": "2020-03-28T06:42:13", "upload_time_iso_8601": "2020-03-28T06:42:13.601930Z", "url": "https://files.pythonhosted.org/packages/4f/53/969f0597fab39303c5f55fb8cc452e5d9f8a45b08e6ef062a0d7b152d0b0/geeup-0.3.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4e474ed8beddfb7fd4a995118de9c394", "sha256": "25badc7d4206396a6663c975ddc58d8ac78c5627c53982e1cff695df9b279ade" }, "downloads": -1, "filename": "geeup-0.3.5.tar.gz", "has_sig": false, "md5_digest": "4e474ed8beddfb7fd4a995118de9c394", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20390, "upload_time": "2020-03-28T06:42:14", "upload_time_iso_8601": "2020-03-28T06:42:14.785498Z", "url": "https://files.pythonhosted.org/packages/11/29/08b68bf7594dd077cb1e0331ffc33c488c79dedf75d170a5e3643ad55a5e/geeup-0.3.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "fdd7dbbc2999344bb85f322a520c16f2", "sha256": "d3a52ea127e01e143ed312b759792e5cf1b03cb540bf0717022dea189abf7d78" }, "downloads": -1, "filename": "geeup-0.3.6-py3-none-any.whl", "has_sig": false, "md5_digest": "fdd7dbbc2999344bb85f322a520c16f2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 29519, "upload_time": "2020-03-28T15:19:27", "upload_time_iso_8601": "2020-03-28T15:19:27.010826Z", "url": "https://files.pythonhosted.org/packages/9f/94/7a6e68768330bfb2b68b888f4377b3b012c98a73240f6fb0ad275a8834f0/geeup-0.3.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dc3c692922c747328276fc415a8443a5", "sha256": "4f9ede1e9b6c86221bba97a36dd25a95a1c98f69947f159b18a18a8006592af0" }, "downloads": -1, "filename": "geeup-0.3.6.tar.gz", "has_sig": false, "md5_digest": "dc3c692922c747328276fc415a8443a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20464, "upload_time": "2020-03-28T15:19:28", "upload_time_iso_8601": "2020-03-28T15:19:28.558524Z", "url": "https://files.pythonhosted.org/packages/c8/9f/9f64fe1dc916bc71296f8958d427b227e82a50a4be980464c635e7fd5407/geeup-0.3.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.7": [ { "comment_text": "", "digests": { "md5": "c41621120c5a73beb4a742aefc5de789", "sha256": "7483518d94132f838fb7a365c93b692b757683d328cd6ecc7be1f640ddaaefac" }, "downloads": -1, "filename": "geeup-0.3.7-py3-none-any.whl", "has_sig": false, "md5_digest": "c41621120c5a73beb4a742aefc5de789", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 29514, "upload_time": "2020-04-21T13:18:09", "upload_time_iso_8601": "2020-04-21T13:18:09.796576Z", "url": "https://files.pythonhosted.org/packages/ff/47/841588c13cf1d8878575539d5c6f9c875752bc75d2e410a3cb3fde09f6c3/geeup-0.3.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0436c091accb84d2aa11498735378b8a", "sha256": "5d7d7d83081374e6214b85e2353381685592e89fd83c3cbfec93c419d0898642" }, "downloads": -1, "filename": "geeup-0.3.7.tar.gz", "has_sig": false, "md5_digest": "0436c091accb84d2aa11498735378b8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21171, "upload_time": "2020-04-21T13:18:11", "upload_time_iso_8601": "2020-04-21T13:18:11.373028Z", "url": "https://files.pythonhosted.org/packages/67/f5/12f47237f823959d511375b0384ecb04aad13d1f05a232a99ff48e0eccb1/geeup-0.3.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.8": [ { "comment_text": "", "digests": { "md5": "109848f74173158214f6a2537654d81e", "sha256": "32d7160a6fc99377b92da3723dd6c5d6f438b379b99c534b53884affb7bdf374" }, "downloads": -1, "filename": "geeup-0.3.8-py3-none-any.whl", "has_sig": false, "md5_digest": "109848f74173158214f6a2537654d81e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 29517, "upload_time": "2020-05-02T05:23:44", "upload_time_iso_8601": "2020-05-02T05:23:44.049951Z", "url": "https://files.pythonhosted.org/packages/0b/8e/886d4f02c9011df0f7dee569fa14b1c76a8a1fc08aa0a56e502efb25483a/geeup-0.3.8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d25f38a0d5856e55346d36a9ba2e8c48", "sha256": "99098bdd1f291671f7e45eaba638f1b1ba76f8a2f0dc46f27be59ebb52003e2f" }, "downloads": -1, "filename": "geeup-0.3.8.tar.gz", "has_sig": false, "md5_digest": "d25f38a0d5856e55346d36a9ba2e8c48", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21182, "upload_time": "2020-05-02T05:23:45", "upload_time_iso_8601": "2020-05-02T05:23:45.070783Z", "url": "https://files.pythonhosted.org/packages/71/2b/1b9d5fe7782bb85024e20d357d74a30d48f4e9757b5551d03d8e9139bde8/geeup-0.3.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.9": [ { "comment_text": "", "digests": { "md5": "e84f9ae31273906431a85a8f13816455", "sha256": "dd4c1570075d95785264ebb677c44cf1956919c1f36c0a75620d6e4fdf7a3be6" }, "downloads": -1, "filename": "geeup-0.3.9-py3-none-any.whl", "has_sig": false, "md5_digest": "e84f9ae31273906431a85a8f13816455", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 29514, "upload_time": "2020-05-08T06:36:13", "upload_time_iso_8601": "2020-05-08T06:36:13.914117Z", "url": "https://files.pythonhosted.org/packages/41/d9/f5996b45c9b89ec5e8d668eb1dedb498bd4fa1c7562c1b88492e5e188511/geeup-0.3.9-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fe304973845349ec24738cc91464c884", "sha256": "47a5ed4f5fa78483a83401d87121ef994866826ccfcdc28fa8abd3a9557c1a6b" }, "downloads": -1, "filename": "geeup-0.3.9.tar.gz", "has_sig": false, "md5_digest": "fe304973845349ec24738cc91464c884", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21176, "upload_time": "2020-05-08T06:36:14", "upload_time_iso_8601": "2020-05-08T06:36:14.949179Z", "url": "https://files.pythonhosted.org/packages/59/e3/c0f8eed212fed82fa712d15b20f68bce68541ba76e6a523ba89d5f99ea23/geeup-0.3.9.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "744453cb533be0a3bf6c83d2d9e3db41", "sha256": "f6907abe0b77091448b5a0ed015592d2bc8abd166cc2da3e3bb95b5c3ab1d6ea" }, "downloads": -1, "filename": "geeup-0.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "744453cb533be0a3bf6c83d2d9e3db41", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 29819, "upload_time": "2020-05-24T14:50:30", "upload_time_iso_8601": "2020-05-24T14:50:30.897047Z", "url": "https://files.pythonhosted.org/packages/32/fa/1c7ac3c7af62861139633e713e9d6c97ab017828ed9b1f7aa976506cd9d8/geeup-0.4.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "77f8a50c4dd96219d50f75731462625f", "sha256": "16183b8ebbb6549e45b5d89e617f4e9e73ae5cb3b5171960105d8f121b307ad5" }, "downloads": -1, "filename": "geeup-0.4.0.tar.gz", "has_sig": false, "md5_digest": "77f8a50c4dd96219d50f75731462625f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21446, "upload_time": "2020-05-24T14:50:32", "upload_time_iso_8601": "2020-05-24T14:50:32.376801Z", "url": "https://files.pythonhosted.org/packages/9a/8c/2b5a549c0023a9338e973e95276b7e407421dd821722e06cc90a74644880/geeup-0.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "71155a17f6d220290272a5f63b6eab14", "sha256": "5520fd32e28c981f2edb13eedf7f3a03502dab5f21bda7c489fe45669c75168a" }, "downloads": -1, "filename": "geeup-0.4.1-py3-none-any.whl", "has_sig": false, "md5_digest": "71155a17f6d220290272a5f63b6eab14", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 29650, "upload_time": "2020-07-08T12:40:58", "upload_time_iso_8601": "2020-07-08T12:40:58.533303Z", "url": "https://files.pythonhosted.org/packages/31/af/e4abe1b96f9fd6f16583a9a3defb0d72d77f01aa1ebdf39fbe836e039b84/geeup-0.4.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7719dc7c320ee1fc5a191a78aaedabf0", "sha256": "090dd034983067a9349720ef3dd77ad9a4067bbc5458eea9d5349da040d3dcf0" }, "downloads": -1, "filename": "geeup-0.4.1.tar.gz", "has_sig": false, "md5_digest": "7719dc7c320ee1fc5a191a78aaedabf0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21454, "upload_time": "2020-07-08T12:40:59", "upload_time_iso_8601": "2020-07-08T12:40:59.701741Z", "url": "https://files.pythonhosted.org/packages/bc/30/f190e1fae7c50729cf80bb59f2cacf899f843563090dc3cce665071fc136/geeup-0.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "87e8d682019d648cd8102ff892397a77", "sha256": "d8a44e123f41d81fa26d2d4b4ca1ba1e7402f29c5bbfab79b6f0ade079200a3f" }, "downloads": -1, "filename": "geeup-0.4.2-py3-none-any.whl", "has_sig": false, "md5_digest": "87e8d682019d648cd8102ff892397a77", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 29942, "upload_time": "2020-08-10T17:51:07", "upload_time_iso_8601": "2020-08-10T17:51:07.886640Z", "url": "https://files.pythonhosted.org/packages/95/9a/2aa1e4a84c12312ac4c6e5d0d2c10afb16857106da5bf03614c43836114b/geeup-0.4.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5356bde78334736433d5b54b62fdce85", "sha256": "f76075d13f2ee0920c3aea514f931c959688287421da034f343df3601c78b551" }, "downloads": -1, "filename": "geeup-0.4.2.tar.gz", "has_sig": false, "md5_digest": "5356bde78334736433d5b54b62fdce85", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21601, "upload_time": "2020-08-10T17:51:09", "upload_time_iso_8601": "2020-08-10T17:51:09.419630Z", "url": "https://files.pythonhosted.org/packages/61/e2/65167feac989ab1a528d7a1787473c3267fec2725e975e8214f80752b8b8/geeup-0.4.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "ab6b2b393a33a78f91b9f24673c5a56e", "sha256": "4b1a0a5d5e94fe9dffd520dfde28743dd90ed2b6b4caf89f836b69a58d068394" }, "downloads": -1, "filename": "geeup-0.4.3-py3-none-any.whl", "has_sig": false, "md5_digest": "ab6b2b393a33a78f91b9f24673c5a56e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 30367, "upload_time": "2020-08-13T05:43:09", "upload_time_iso_8601": "2020-08-13T05:43:09.596712Z", "url": "https://files.pythonhosted.org/packages/cb/0c/22bb62228f38c6fc42784561a31b579cf7da25433a72240e332de5a7c6b1/geeup-0.4.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b3cd9546b4010441f88c61c251f93165", "sha256": "8fbab49ad097db53d8088fff87eefc7518b61d51cf50c914698fd51491132330" }, "downloads": -1, "filename": "geeup-0.4.3.tar.gz", "has_sig": false, "md5_digest": "b3cd9546b4010441f88c61c251f93165", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22091, "upload_time": "2020-08-13T05:43:11", "upload_time_iso_8601": "2020-08-13T05:43:11.050468Z", "url": "https://files.pythonhosted.org/packages/f2/8e/f41bac968fe78878d40e1d97a367242f476fc044460262d014d2641d9ef4/geeup-0.4.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "dcd4ba56f05823cab6d144bb1317545f", "sha256": "fce2758716897b742f3f0e1efbcabce872bc8e720e17b0b08b43c10274eb7664" }, "downloads": -1, "filename": "geeup-0.4.4-py3-none-any.whl", "has_sig": false, "md5_digest": "dcd4ba56f05823cab6d144bb1317545f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 30388, "upload_time": "2020-08-19T04:38:27", "upload_time_iso_8601": "2020-08-19T04:38:27.201080Z", "url": "https://files.pythonhosted.org/packages/52/0d/49eaf8f01ab66de821fbaceb307e7a14c2ac0e7a94bf285ac9df077d43b0/geeup-0.4.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bb9d7f44cf4a320c3c5b7015098ef8b1", "sha256": "c9fe5215be84d896286a95b7cf2fda7bc4bd169292815cc6e0bdb613a7a9cae9" }, "downloads": -1, "filename": "geeup-0.4.4.tar.gz", "has_sig": false, "md5_digest": "bb9d7f44cf4a320c3c5b7015098ef8b1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22160, "upload_time": "2020-08-19T04:38:28", "upload_time_iso_8601": "2020-08-19T04:38:28.514124Z", "url": "https://files.pythonhosted.org/packages/e0/91/ef435416394ef135803b21c9ca44d84a07301623c86047800f4e06d83dd2/geeup-0.4.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "ff2c4890abfe02c52c15369f9a668ae2", "sha256": "56774f8b4c5859deb6da1f3759096c897a31ec2a99991fd499c34e9240668db7" }, "downloads": -1, "filename": "geeup-0.4.5-py3-none-any.whl", "has_sig": false, "md5_digest": "ff2c4890abfe02c52c15369f9a668ae2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 30447, "upload_time": "2021-01-13T00:48:44", "upload_time_iso_8601": "2021-01-13T00:48:44.667952Z", "url": "https://files.pythonhosted.org/packages/29/7d/673edb73587b6efa3a00d69a0428aebc0a6eca04dc9ef8ceb81fce39513d/geeup-0.4.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7fbeea76bdda381c916bee0ef449b862", "sha256": "1d2411d01de7b58436a50a25dd54894ed9096260ca44c3ffec2f11e0a4f411ee" }, "downloads": -1, "filename": "geeup-0.4.5.tar.gz", "has_sig": false, "md5_digest": "7fbeea76bdda381c916bee0ef449b862", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27907, "upload_time": "2021-01-13T00:48:45", "upload_time_iso_8601": "2021-01-13T00:48:45.821508Z", "url": "https://files.pythonhosted.org/packages/3b/8e/2e525ebdc222a92359b5c220e0aac6076ec0a965207e67368f5d27cdfbe5/geeup-0.4.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.6": [ { "comment_text": "", "digests": { "md5": "a7afe6b274c1913160aeccc992185ea2", "sha256": "251b8b67ec3d2c3056f23c31f9711788204404f65da244401c3a0d27fcdd7759" }, "downloads": -1, "filename": "geeup-0.4.6-py3-none-any.whl", "has_sig": false, "md5_digest": "a7afe6b274c1913160aeccc992185ea2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 33389, "upload_time": "2021-04-11T21:46:41", "upload_time_iso_8601": "2021-04-11T21:46:41.969938Z", "url": "https://files.pythonhosted.org/packages/9d/2d/ad90ad2ee2b111dd5ca8d217323a4254618841ca031933f82d55712a6ac2/geeup-0.4.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e20ee2f84d03aad2b367e0d3cc2d6ec7", "sha256": "7821f950fc4d980f5bd2f48d9aad2c2d2b2961fe18e1e925bb087c59cce8358f" }, "downloads": -1, "filename": "geeup-0.4.6.tar.gz", "has_sig": false, "md5_digest": "e20ee2f84d03aad2b367e0d3cc2d6ec7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31881, "upload_time": "2021-04-11T21:46:43", "upload_time_iso_8601": "2021-04-11T21:46:43.452771Z", "url": "https://files.pythonhosted.org/packages/3b/55/f9b058600df0d01001e2288a5509c4c9dcaa83cd0c45c5b2be44bcbab80a/geeup-0.4.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.7": [ { "comment_text": "", "digests": { "md5": "ff1a4178a6aaa153f76cb1efcaae1869", "sha256": "3e3be5e7e7601f44ae18d023379fb83d401b3f937efe562d89f81ddba059bfa9" }, "downloads": -1, "filename": "geeup-0.4.7-py3-none-any.whl", "has_sig": false, "md5_digest": "ff1a4178a6aaa153f76cb1efcaae1869", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 33422, "upload_time": "2021-05-02T06:00:33", "upload_time_iso_8601": "2021-05-02T06:00:33.986273Z", "url": "https://files.pythonhosted.org/packages/91/a3/30fbc5c8877001417743844212a46c71fd84f7b532583883a4c89f16dfa8/geeup-0.4.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c0263ac0db3b7e758a199b6b7adbbe77", "sha256": "e1b1db3a3dd77a0077a9ceeb14205b089af18b3aed691a7f80e57b1cef199e26" }, "downloads": -1, "filename": "geeup-0.4.7.tar.gz", "has_sig": false, "md5_digest": "c0263ac0db3b7e758a199b6b7adbbe77", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32160, "upload_time": "2021-05-02T06:00:35", "upload_time_iso_8601": "2021-05-02T06:00:35.468647Z", "url": "https://files.pythonhosted.org/packages/c2/cb/1a424496c15f1043f3ebbbb06586bf4d6e77cd1a0e348579e28722f60aac/geeup-0.4.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.8": [ { "comment_text": "", "digests": { "md5": "02d0b4adad5b61dd6b082e5cb37e12bc", "sha256": "7ea67cca8a8b19c6bc2d576a5d48bb7e73807cdc47990d0a5855dc131616a6cd" }, "downloads": -1, "filename": "geeup-0.4.8-py3-none-any.whl", "has_sig": false, "md5_digest": "02d0b4adad5b61dd6b082e5cb37e12bc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 33528, "upload_time": "2021-05-06T17:59:43", "upload_time_iso_8601": "2021-05-06T17:59:43.310780Z", "url": "https://files.pythonhosted.org/packages/90/37/076eb278c96507f409955c5cf56ede8149db67ed5032635f2e392184af50/geeup-0.4.8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5683f3540b15dcf64524d23139f69aef", "sha256": "ead72863aa78b51441542cd424940ab958533fa7376e2b63e21a4ac0ea3eaae1" }, "downloads": -1, "filename": "geeup-0.4.8.tar.gz", "has_sig": false, "md5_digest": "5683f3540b15dcf64524d23139f69aef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32323, "upload_time": "2021-05-06T17:59:45", "upload_time_iso_8601": "2021-05-06T17:59:45.859037Z", "url": "https://files.pythonhosted.org/packages/23/c0/b4c4d740b035cd64ed542697cc0b2257ef1efb7f38f0a73f54cfc7f08fd4/geeup-0.4.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.9": [ { "comment_text": "", "digests": { "md5": "205688c0a4707a998552f501eaae0d1b", "sha256": "1e926f70ddab87e045ed4988701bb66e5e06e36316f0645ed5fd08690d737390" }, "downloads": -1, "filename": "geeup-0.4.9-py3-none-any.whl", "has_sig": false, "md5_digest": "205688c0a4707a998552f501eaae0d1b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 33774, "upload_time": "2021-05-29T21:28:04", "upload_time_iso_8601": "2021-05-29T21:28:04.887958Z", "url": "https://files.pythonhosted.org/packages/27/43/4463bf91c84a1f56ec3b9721bb1077ed141464e6ea970b9e85871e426ed2/geeup-0.4.9-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8adcfe99d2e651df22fb8f4e2aa07bc9", "sha256": "f9b97a2641537bea411dd34f023d8d32f0f25ed20f3202deb535c3403a9d5ff0" }, "downloads": -1, "filename": "geeup-0.4.9.tar.gz", "has_sig": false, "md5_digest": "8adcfe99d2e651df22fb8f4e2aa07bc9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32601, "upload_time": "2021-05-29T21:28:06", "upload_time_iso_8601": "2021-05-29T21:28:06.386748Z", "url": "https://files.pythonhosted.org/packages/0b/9a/e943ba86930857f4edfab31b0fe8c4533992de93550abc6e40c19d12e859/geeup-0.4.9.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "fef473fc7cc8bc59744fc4dcf2c87552", "sha256": "9d81f8c64adb6b0532d36b6cbda3e469ce55f9b0d28e268acc299e9b11010228" }, "downloads": -1, "filename": "geeup-0.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "fef473fc7cc8bc59744fc4dcf2c87552", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 33785, "upload_time": "2021-06-16T05:28:44", "upload_time_iso_8601": "2021-06-16T05:28:44.419362Z", "url": "https://files.pythonhosted.org/packages/73/2c/b7c58fd97dd1191f4db7a8eca2661119fa7d4c45b68965fb3524166d298d/geeup-0.5.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c26afd280be56fb7873d49792ce72c3b", "sha256": "ab8413708971183d633d97b593af54e4fe226cef3c565a2f91a86bdad289e98d" }, "downloads": -1, "filename": "geeup-0.5.0.tar.gz", "has_sig": false, "md5_digest": "c26afd280be56fb7873d49792ce72c3b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32636, "upload_time": "2021-06-16T05:28:46", "upload_time_iso_8601": "2021-06-16T05:28:46.029692Z", "url": "https://files.pythonhosted.org/packages/b0/90/04af637327e4e20425728535dfeba49c532b35a09ed46b25033b4cae6436/geeup-0.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "6abc2669d19dd61e19f17a85b159571c", "sha256": "24fa7de1987cc2a8472b72758a10296de86d5e284fe37d18b4b3210ac4cb9794" }, "downloads": -1, "filename": "geeup-0.5.1-py3-none-any.whl", "has_sig": false, "md5_digest": "6abc2669d19dd61e19f17a85b159571c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 34101, "upload_time": "2021-07-29T04:53:40", "upload_time_iso_8601": "2021-07-29T04:53:40.378783Z", "url": "https://files.pythonhosted.org/packages/31/d2/750b66b87d2f8c4dbe12371e57e4613bfd9c22ecabd612b85df3185aa71d/geeup-0.5.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b57452adcc9667354f6ead11d714c4e8", "sha256": "eeb226d1c29cf473c7a7d15447e3058b8e8cec8c0e39dec23e6124d994467a42" }, "downloads": -1, "filename": "geeup-0.5.1.tar.gz", "has_sig": false, "md5_digest": "b57452adcc9667354f6ead11d714c4e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33099, "upload_time": "2021-07-29T04:53:42", "upload_time_iso_8601": "2021-07-29T04:53:42.557318Z", "url": "https://files.pythonhosted.org/packages/17/19/809cd3c44a027ad7972d1b7b3db0b4c377f9180a23ce193cadbd29cc8d55/geeup-0.5.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "eb3056cbeb7e70c1b8913a2cd5c2cbbb", "sha256": "068f0879ed75e461b59649eef80ac8faa578d2443fee70e270bd9b462cd7e9a8" }, "downloads": -1, "filename": "geeup-0.5.2-py3-none-any.whl", "has_sig": false, "md5_digest": "eb3056cbeb7e70c1b8913a2cd5c2cbbb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 34182, "upload_time": "2021-09-21T04:30:56", "upload_time_iso_8601": "2021-09-21T04:30:56.779784Z", "url": "https://files.pythonhosted.org/packages/16/5e/8f01cf9d23e5fd2e96b4e9dbad799335377a169705cf5d7b2f3f98e0fcfa/geeup-0.5.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ead6932da2b4ef550b4a3b4521f2ec82", "sha256": "34d7a5eb5f52c05eb8de52ec3fb86700ff8f5393218455644860c93da45c4e8a" }, "downloads": -1, "filename": "geeup-0.5.2.tar.gz", "has_sig": false, "md5_digest": "ead6932da2b4ef550b4a3b4521f2ec82", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33648, "upload_time": "2021-09-21T04:30:58", "upload_time_iso_8601": "2021-09-21T04:30:58.285874Z", "url": "https://files.pythonhosted.org/packages/7b/df/7633b624af18b530070765b361f7da15e033dfcaa612f5939824efbb64b2/geeup-0.5.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "793b0940d4cc56b14b23c60ad7d4a3d0", "sha256": "8ebfc377f0a1afd82c0118eec61e2061d0b1b1c7f5f77cdd1e2af6336a352b07" }, "downloads": -1, "filename": "geeup-0.5.3-py3-none-any.whl", "has_sig": false, "md5_digest": "793b0940d4cc56b14b23c60ad7d4a3d0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 29596, "upload_time": "2022-01-03T03:12:17", "upload_time_iso_8601": "2022-01-03T03:12:17.267898Z", "url": "https://files.pythonhosted.org/packages/83/0d/704787a2569915637c7b53005e3ba16985c1baffdb8eee695ef0db0b2717/geeup-0.5.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6556c5fc7d075b29c202cecff2eb6927", "sha256": "99488607980b90bbf366de144915d96c7348dc1ba17a6afa5e59ea44ef568f99" }, "downloads": -1, "filename": "geeup-0.5.3.tar.gz", "has_sig": false, "md5_digest": "6556c5fc7d075b29c202cecff2eb6927", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31140, "upload_time": "2022-01-03T03:12:18", "upload_time_iso_8601": "2022-01-03T03:12:18.987711Z", "url": "https://files.pythonhosted.org/packages/cc/3f/fa62c91c643d3fffd2dee763814a718aec800fb616a1beee8bf1143e4303/geeup-0.5.3.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "793b0940d4cc56b14b23c60ad7d4a3d0", "sha256": "8ebfc377f0a1afd82c0118eec61e2061d0b1b1c7f5f77cdd1e2af6336a352b07" }, "downloads": -1, "filename": "geeup-0.5.3-py3-none-any.whl", "has_sig": false, "md5_digest": "793b0940d4cc56b14b23c60ad7d4a3d0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 29596, "upload_time": "2022-01-03T03:12:17", "upload_time_iso_8601": "2022-01-03T03:12:17.267898Z", "url": "https://files.pythonhosted.org/packages/83/0d/704787a2569915637c7b53005e3ba16985c1baffdb8eee695ef0db0b2717/geeup-0.5.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6556c5fc7d075b29c202cecff2eb6927", "sha256": "99488607980b90bbf366de144915d96c7348dc1ba17a6afa5e59ea44ef568f99" }, "downloads": -1, "filename": "geeup-0.5.3.tar.gz", "has_sig": false, "md5_digest": "6556c5fc7d075b29c202cecff2eb6927", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31140, "upload_time": "2022-01-03T03:12:18", "upload_time_iso_8601": "2022-01-03T03:12:18.987711Z", "url": "https://files.pythonhosted.org/packages/cc/3f/fa62c91c643d3fffd2dee763814a718aec800fb616a1beee8bf1143e4303/geeup-0.5.3.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }