-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathgevent.json
10234 lines (10234 loc) · 519 KB
/
gevent.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"info": {
"author": "Denis Bilenko",
"author_email": "denis.bilenko@gmail.com",
"bugtrack_url": "",
"classifiers": [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules"
],
"description": "========\n gevent\n========\n\n.. image:: https://travis-ci.org/gevent/gevent.svg?branch=master\n :target: https://travis-ci.org/gevent/gevent\n\n.. image:: https://ci.appveyor.com/api/projects/status/q4kl21ng2yo2ixur?svg=true\n :target: https://ci.appveyor.com/project/denik/gevent\n\n.. image:: https://coveralls.io/repos/gevent/gevent/badge.svg?branch=master&service=github\n :target: https://coveralls.io/github/gevent/gevent?branch=master\n\n..\n This file is included in README.rst from the top-level\n so it is limited to pure ReST markup, not Sphinx.\n\n\n\ngevent is a coroutine_ -based Python_ networking library that uses\n`greenlet <https://greenlet.readthedocs.io>`_ to provide a high-level synchronous API on top of the `libev`_\nor `libuv`_ event loop.\n\nFeatures include:\n\n\n* Fast event loop based on `libev`_ or `libuv`_.\n* Lightweight execution units based on greenlets.\n* API that re-uses concepts from the Python standard library (for\n examples there are `events`_ and\n `queues`_).\n* `Cooperative sockets with SSL support <http://www.gevent.org/api/index.html#networking>`_\n* `Cooperative DNS queries <http://www.gevent.org/dns.html>`_ performed through a threadpool,\n dnspython, or c-ares.\n* `Monkey patching utility <http://www.gevent.org/intro.html#monkey-patching>`_ to get 3rd party modules to become cooperative\n* TCP/UDP/HTTP servers\n* Subprocess support (through `gevent.subprocess`_)\n* Thread pools\n\ngevent is `inspired by eventlet`_ but features a more consistent API,\nsimpler implementation and better performance. Read why others `use\ngevent`_ and check out the list of the `open source projects based on\ngevent`_.\n\ngevent was written by `Denis Bilenko <http://denisbilenko.com/>`_.\n\nSince version 1.1, gevent is maintained by Jason Madden for\n`NextThought <https://nextthought.com>`_ with help from the\n`contributors <https://github.com/gevent/gevent/graphs/contributors>`_\nand is licensed under the MIT license.\n\nSee `what's new`_ in the latest major release.\n\nCheck out the detailed changelog_ for this version.\n\n.. _events: http://www.gevent.org/api/gevent.event.html#gevent.event.Event\n.. _queues: http://www.gevent.org/api/gevent.queue.html#gevent.queue.Queue\n.. _gevent.subprocess: http://www.gevent.org/api/gevent.subprocess.html#module-gevent.subprocess\n\n.. _coroutine: https://en.wikipedia.org/wiki/Coroutine\n.. _Python: http://python.org\n.. _libev: http://software.schmorp.de/pkg/libev.html\n.. _libuv: http://libuv.org\n.. _inspired by eventlet: http://blog.gevent.org/2010/02/27/why-gevent/\n.. _use gevent: http://groups.google.com/group/gevent/browse_thread/thread/4de9703e5dca8271\n.. _open source projects based on gevent: https://github.com/gevent/gevent/wiki/Projects\n.. _what's new: http://www.gevent.org/whatsnew_1_3.html\n.. _changelog: http://www.gevent.org/changelog.html\n\n\nRead the documentation online at http://www.gevent.org.\n\nPost feedback and issues on the `bug tracker`_, `mailing list`_, blog_\nand `twitter (@gevent)`_.\n\n\n===============================\n Installation and Requirements\n===============================\n\n.. _installation:\n\n..\n This file is included in README.rst so it is limited to plain\n ReST markup, not Sphinx.\n\nSupported Platforms\n===================\n\n`gevent 1.3`_ runs on Python 2.7 and Python 3. Releases 3.4, 3.5 and\n3.6 of Python 3 are supported. (Users of older versions of Python 2\nneed to install gevent 1.0.x (2.5), 1.1.x (2.6) or 1.2.x (<=2.7.8);\ngevent 1.2 can be installed on Python 3.3.) gevent requires the\n`greenlet <https://greenlet.readthedocs.io>`_ library and will install\nthe `cffi`_ library by default on Windows.\n\ngevent 1.3 also runs on PyPy 5.5 and above, although 5.9 or above is\nstrongly recommended. On PyPy, there are no external dependencies.\n\ngevent is tested on Windows, OS X, and Linux, and should run on most\nother Unix-like operating systems (e.g., FreeBSD, Solaris, etc.)\n\n.. note:: On Windows using the libev backend, gevent is\n limited to a maximum of 1024 open sockets due to\n `limitations in libev`_. This limitation should not exist\n with the default libuv backend.\n\nInstallation\n============\n\n.. note::\n\n This section is about installing released versions of gevent\n as distributed on the `Python Package Index`_\n\n.. _Python Package Index: http://pypi.org/project/gevent\n\ngevent and greenlet can both be installed with `pip`_, e.g., ``pip\ninstall gevent``. Installation using `buildout\n<http://docs.buildout.org/en/latest/>`_ is also supported.\n\nOn Windows, OS X, and Linux, both gevent and greenlet are\ndistributed as binary `wheels`_.\n\n.. tip::\n\n You need Pip 8.0 or later, or buildout 2.10.0 to install the\n binary wheels.\n\n.. tip::\n\n On Linux, you'll need to install gevent from source if you wish to\n use the libuv loop implementation. This is because the `manylinux1\n <https://www.python.org/dev/peps/pep-0513/>`_ specification for the\n distributed wheels does not support libuv. The `cffi`_ library\n *must* be installed at build time.\n\n\nInstalling From Source\n----------------------\n\nIf you are unable to use the binary wheels (for platforms where no\npre-built wheels are available or if wheel installation is disabled,\ne.g., for libuv support on Linux), here are some things you need to know.\n\n- You can install gevent from source with ``pip install --no-binary\n gevent gevent``.\n\n- You'll need a working C compiler that can build Python extensions.\n On some platforms, you may need to install Python development\n packages.\n\n- Installing from source requires ``setuptools``. This is installed\n automatically in virtual environments and by buildout. However, gevent uses\n :pep:`496` environment markers in ``setup.py``. Consequently, you'll\n need a version of setuptools newer than 25 (mid 2016) to install\n gevent from source. Older versions of pipenv may also `have issues\n installing gevent for this reason\n <https://github.com/pypa/pipenv/issues/2113>`_.\n\n- To build the libuv backend (which is required on Windows and\n optional elsewhere), or the CFFI-based libev backend, you must\n install `cffi`_ before attempting to install gevent on CPython (on\n PyPy this step is not necessary).\n\n\nCommon Installation Issues\n--------------------------\n\nThe following are some common installation problems and solutions for\nthose compiling gevent from source.\n\n- Some Linux distributions are now mounting their temporary\n directories with the ``noexec`` option. This can cause a standard\n ``pip install gevent`` to fail with an error like ``cannot run C\n compiled programs``. One fix is to mount the temporary directory\n without that option. Another may be to use the ``--build`` option to\n ``pip install`` to specify another directory. See `issue #570\n <https://github.com/gevent/gevent/issues/570>`_ and `issue #612\n <https://github.com/gevent/gevent/issues/612>`_ for examples.\n\n- Also check for conflicts with environment variables like ``CFLAGS``. For\n example, see `Library Updates <http://www.gevent.org/whatsnew_1_1.html#library-updates-label>`_.\n\n- Users of a recent SmartOS release may need to customize the\n ``CPPFLAGS`` (the environment variable containing the default\n options for the C preprocessor) if they are using the libev shipped\n with gevent. See `Operating Systems\n <http://www.gevent.org/whatsnew_1_1.html#operating-systems-label>`_\n for more information.\n\n\nExtra Dependencies\n==================\n\ngevent has no runtime dependencies outside the standard library,\ngreenlet and (on some platforms) `cffi`_. However, there are a\nnumber of additional libraries that extend gevent's functionality and\nwill be used if they are available.\n\nThe `psutil <https://pypi.org/project/psutil>`_ library is needed to\nmonitor memory usage.\n\n`zope.event <https://pypi.org/project/zope.event>`_ is highly\nrecommended for configurable event support; it can be installed with\nthe ``events`` extra, e.g., ``pip install gevent[events]``.\n\n`dnspython <https://pypi.org/project/dnspython>`_ is required for the\nnew pure-Python resolver, and on Python 2, so is `idna\n<https://pypi.org/project/idna>`_. They can be installed with the\n``dnspython`` extra.\n\n\nDevelopment\n===========\n\nTo install the latest development version::\n\n pip install setuptools cffi 'cython>=0.28' git+git://github.com/gevent/gevent.git#egg=gevent\n\n.. note::\n\n You will not be able to run gevent's test suite using that method.\n\nTo hack on gevent (using a virtualenv)::\n\n $ git clone https://github.com/gevent/gevent.git\n $ cd gevent\n $ virtualenv env\n $ source env/bin/activate\n (env) $ pip install -r dev-requirements.txt\n\n.. note::\n\n The notes above about installing from source apply here as well.\n The ``dev-requirements.txt`` file takes care of the library\n prerequisites (CFFI, Cython), but having a working C compiler that\n can create Python extensions is up to you.\n\n\nRunning Tests\n-------------\n\nThere are a few different ways to run the tests. To simply run the\ntests on one version of Python during development, begin with the\nabove instructions to install gevent in a virtual environment and then\nrun::\n\n (env) $ cd src/greentest\n (env) $ python ./testrunner.py\n\nBefore submitting a pull request, it's a good idea to run the tests\nacross all supported versions of Python, and to check the code quality\nusing prospector. This is what is done on Travis CI. Locally it\ncan be done using tox::\n\n pip install tox\n tox\n\nThe testrunner accepts a ``--coverage`` argument to enable code\ncoverage metrics through the `coverage.py`_ package. That would go\nsomething like this::\n\n cd src/greentest\n python testrunner.py --coverage\n coverage combine\n coverage html -i\n <open htmlcov/index.html>\n\nContinuous integration\n----------------------\n\nA test suite is run for every push and pull request submitted. Travis\nCI is used to test on Linux, and `AppVeyor`_ runs the builds on\nWindows.\n\n.. image:: https://travis-ci.org/gevent/gevent.svg?branch=master\n :target: https://travis-ci.org/gevent/gevent\n\n.. image:: https://ci.appveyor.com/api/projects/status/q4kl21ng2yo2ixur?svg=true\n :target: https://ci.appveyor.com/project/denik/gevent\n\n\nBuilds on Travis CI automatically submit updates to `coveralls.io`_ to\nmonitor test coverage.\n\n.. image:: https://coveralls.io/repos/gevent/gevent/badge.svg?branch=master&service=github\n :target: https://coveralls.io/github/gevent/gevent?branch=master\n\n.. note:: On Debian, you will probably need ``libpythonX.Y-testsuite``\n installed to run all the tests.\n\n.. _coverage.py: https://pypi.python.org/pypi/coverage/\n.. _coveralls.io: https://coveralls.io/github/gevent/gevent\n.. _`pip`: https://pip.pypa.io/en/stable/installing/\n.. _`wheels`: http://pythonwheels.com\n.. _`gevent 1.3`: whatsnew_1_3.html\n\n.. _`cffi`: https://cffi.readthedocs.io\n.. _`limitations in libev`: http://pod.tst.eu/http://cvs.schmorp.de/libev/ev.pod#WIN32_PLATFORM_LIMITATIONS_AND_WORKA\n.. _AppVeyor: https://ci.appveyor.com/project/denik/gevent\n\n\n.. _bug tracker: https://github.com/gevent/gevent/wiki/Projects\n.. _mailing list: http://groups.google.com/group/gevent\n.. _blog: http://blog.gevent.org\n.. _twitter (@gevent): http://twitter.com/gevent\n\n\n",
"description_content_type": "text/x-rst",
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "http://www.gevent.org/",
"keywords": "greenlet coroutine cooperative multitasking light threads monkey",
"license": "MIT",
"maintainer": "Jason Madden",
"maintainer_email": "jason@nextthought.com",
"name": "gevent",
"package_url": "https://pypi.org/project/gevent/",
"platform": "",
"project_url": "https://pypi.org/project/gevent/",
"release_url": "https://pypi.org/project/gevent/1.3.2.post0/",
"requires_dist": [
"coveralls (>=1.0); (sys_platform != \"win32\") and extra == 'test'",
"coverage (>=4.0); (sys_platform != \"win32\") and extra == 'test'",
"mock; (python_version == \"2.7\") and extra == 'test'",
"futures; (python_version == \"2.7\") and extra == 'test'",
"psutil; (platform_python_implementation == \"CPython\" or sys_platform != \"win32\") and extra == 'test'",
"objgraph; extra == 'test'",
"requests; extra == 'test'",
"zope.event; extra == 'test'",
"zope.interface; extra == 'test'",
"zope.interface; extra == 'events'",
"zope.event; extra == 'events'",
"repoze.sphinx.autointerface; extra == 'doc'",
"idna; extra == 'dnspython'",
"dnspython; extra == 'dnspython'",
"cffi (>=1.11.5); sys_platform == \"win32\" and platform_python_implementation == \"CPython\"",
"greenlet (>=0.4.13); platform_python_implementation == \"CPython\""
],
"requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*",
"summary": "Coroutine-based network library",
"version": "1.3.2.post0"
},
"last_serial": 3913321,
"releases": {
"0.10.0": [
{
"comment_text": "",
"digests": {
"md5": "c992ad70590396584e510b838e432e35",
"sha256": "1e27c07377c56318990c08494434c79e93b0952ed1f4e910ca21edabaf77d2d2"
},
"downloads": -1,
"filename": "gevent-0.10.0.tar.gz",
"has_sig": false,
"md5_digest": "c992ad70590396584e510b838e432e35",
"packagetype": "sdist",
"python_version": "source",
"size": 147175,
"upload_time": "2009-08-26T09:15:06",
"url": "https://files.pythonhosted.org/packages/ee/1c/fac2b7bbe27cddbfa41277e26ed2c00e0abf415ca70fd8ae0e5e32ece648/gevent-0.10.0.tar.gz"
}
],
"0.11.0": [
{
"comment_text": "",
"digests": {
"md5": "1d069d38b67fafe2ba917550b7dccc31",
"sha256": "bf17b44efeb4f20cc050e9b6c3cb15551772e796208d014d73bc5fc3af121982"
},
"downloads": -1,
"filename": "gevent-0.11.0.tar.gz",
"has_sig": false,
"md5_digest": "1d069d38b67fafe2ba917550b7dccc31",
"packagetype": "sdist",
"python_version": "source",
"size": 210688,
"upload_time": "2009-10-09T10:06:39",
"url": "https://files.pythonhosted.org/packages/c6/b1/3b481baa97cea3765caa81f69ae6ec73fe84850633d736bf255de9455fff/gevent-0.11.0.tar.gz"
}
],
"0.11.1": [
{
"comment_text": "",
"digests": {
"md5": "d2f2e641676e84262cc7c9a32ab2b926",
"sha256": "cb20302f699b29ce9100e7191ceeadbbbb6bdb926163eeb3e5d89e42e5f90f03"
},
"downloads": -1,
"filename": "gevent-0.11.1.tar.gz",
"has_sig": false,
"md5_digest": "d2f2e641676e84262cc7c9a32ab2b926",
"packagetype": "sdist",
"python_version": "source",
"size": 210633,
"upload_time": "2009-11-15T11:16:11",
"url": "https://files.pythonhosted.org/packages/8a/6f/0437f2d0b1bf3da97da9c12156fb1b7cc9a400fb8d3124a8ee07664cee34/gevent-0.11.1.tar.gz"
}
],
"0.11.2": [
{
"comment_text": "",
"digests": {
"md5": "bf4c93c4d3210bba6afbdc4c40e9d261",
"sha256": "ea494fc47ff73db07c0ef057805228b019777390e8fcc0ac417adac40ed75b28"
},
"downloads": -1,
"filename": "gevent-0.11.2.tar.gz",
"has_sig": false,
"md5_digest": "bf4c93c4d3210bba6afbdc4c40e9d261",
"packagetype": "sdist",
"python_version": "source",
"size": 210590,
"upload_time": "2009-12-10T10:28:53",
"url": "https://files.pythonhosted.org/packages/10/64/48945463cab94cabb79c5e6fecc3a7d016993db939c00d6dd7577c052a02/gevent-0.11.2.tar.gz"
}
],
"0.12.0": [
{
"comment_text": "",
"digests": {
"md5": "2fbf9902013e4452efa0d31bf2b5efb2",
"sha256": "a011289b16d06c1367929f8d4cc16dec4f3528554438b1810914db95bc38f3cd"
},
"downloads": -1,
"filename": "gevent-0.12.0.tar.gz",
"has_sig": false,
"md5_digest": "2fbf9902013e4452efa0d31bf2b5efb2",
"packagetype": "sdist",
"python_version": "source",
"size": 208238,
"upload_time": "2010-02-05T08:09:42",
"url": "https://files.pythonhosted.org/packages/3e/72/f0d6d457fb10c9458f88ce76aa24c33be9ff838d17995a0cbb7247bc94ec/gevent-0.12.0.tar.gz"
}
],
"0.12.1": [
{
"comment_text": "",
"digests": {
"md5": "060fdc1c292f4d3705ea4d29422b0ff2",
"sha256": "a97ba75b790b4250ce357189bf5f8b0efd4a4cf5007733f2cdd757cf37328e9b"
},
"downloads": -1,
"filename": "gevent-0.12.1.tar.gz",
"has_sig": false,
"md5_digest": "060fdc1c292f4d3705ea4d29422b0ff2",
"packagetype": "sdist",
"python_version": "source",
"size": 206478,
"upload_time": "2010-02-26T04:37:21",
"url": "https://files.pythonhosted.org/packages/f3/bf/148e39c7e9af9df9fac6d754996718d9b501e469464fd815021b9137060e/gevent-0.12.1.tar.gz"
}
],
"0.12.2": [
{
"comment_text": "",
"digests": {
"md5": "97c75039a67593d3f5375fb77f73bbe7",
"sha256": "05b3c83e1238b67f837381b7469cff570f7967a3cfdd1371358e0976d43b652f"
},
"downloads": -1,
"filename": "gevent-0.12.2.tar.gz",
"has_sig": false,
"md5_digest": "97c75039a67593d3f5375fb77f73bbe7",
"packagetype": "sdist",
"python_version": "source",
"size": 206540,
"upload_time": "2010-03-02T09:53:44",
"url": "https://files.pythonhosted.org/packages/f9/9d/34801e8a25656bbb02f4e7bf361ac8b69b5bdb08e1a3a758042085d587b6/gevent-0.12.2.tar.gz"
}
],
"0.13.0": [
{
"comment_text": "statically linked against libevent-1.4.14b-stable",
"digests": {
"md5": "1267e84fe52d684440f80441f04f6333",
"sha256": "bedc7e7bd249d1ace67ab41382951ec41cecb37c4e9c4c129b7558d77acbb0ab"
},
"downloads": -1,
"filename": "gevent-0.13.0-py2.6-win32.egg",
"has_sig": false,
"md5_digest": "1267e84fe52d684440f80441f04f6333",
"packagetype": "bdist_egg",
"python_version": "2.6",
"size": 238990,
"upload_time": "2010-07-14T22:00:28",
"url": "https://files.pythonhosted.org/packages/e4/c6/b7f8244bfb7bdf7dd38bd0be457ae3d2e1a52358ed489ee2365567925758/gevent-0.13.0-py2.6-win32.egg"
},
{
"comment_text": "statically linked against libevent-1.4.14b-stable",
"digests": {
"md5": "bccd983760a3c3edf3bbe73b96065722",
"sha256": "cad8f76514ee71e7b89d0f6878f368c345d8d8f3f956d3fffd9ccbbd390564c2"
},
"downloads": -1,
"filename": "gevent-0.13.0-py2.7-win32.egg",
"has_sig": false,
"md5_digest": "bccd983760a3c3edf3bbe73b96065722",
"packagetype": "bdist_egg",
"python_version": "2.7",
"size": 238558,
"upload_time": "2010-07-14T22:01:27",
"url": "https://files.pythonhosted.org/packages/b8/4e/1ba6686f2d3d4756cbd1a6b604c12ed40b671f532a611b949b55726fce84/gevent-0.13.0-py2.7-win32.egg"
},
{
"comment_text": "",
"digests": {
"md5": "8f687002c6fcbdf8b323319f451ba4af",
"sha256": "8d4fe611810245413466f7c9144a6c1dd8465eeb1a589e544e6e88ba64878b8d"
},
"downloads": -1,
"filename": "gevent-0.13.0.tar.gz",
"has_sig": false,
"md5_digest": "8f687002c6fcbdf8b323319f451ba4af",
"packagetype": "sdist",
"python_version": "source",
"size": 252822,
"upload_time": "2010-07-14T21:58:22",
"url": "https://files.pythonhosted.org/packages/f2/7a/ec113776d0587f6b5e4ef5523ec57c1e83491e4a0a54ade896820e4254b7/gevent-0.13.0.tar.gz"
},
{
"comment_text": "statically linked against libevent-1.4.14b-stable",
"digests": {
"md5": "1c14420a4c0ad03d14b8f8cd5d6fd873",
"sha256": "d37e5a5a935dc489f62648106cf15f388a074fa26c83cb65e05c759ad36a0d86"
},
"downloads": -1,
"filename": "gevent-0.13.0.win32-py2.6.exe",
"has_sig": false,
"md5_digest": "1c14420a4c0ad03d14b8f8cd5d6fd873",
"packagetype": "bdist_wininst",
"python_version": "2.6",
"size": 350811,
"upload_time": "2010-07-14T22:00:09",
"url": "https://files.pythonhosted.org/packages/03/a8/0ea761dac94cc0e579e53302542fbf10aff192c343a7454702790a2c8131/gevent-0.13.0.win32-py2.6.exe"
},
{
"comment_text": "statically linked against libevent-1.4.14b-stable",
"digests": {
"md5": "497895d49d5619cb6693e8f8255cd9bc",
"sha256": "2cd76d222d423bbd1a911b18f2276deceffeb05670f97081bb948b58ef48a501"
},
"downloads": -1,
"filename": "gevent-0.13.0.win32-py2.6.msi",
"has_sig": false,
"md5_digest": "497895d49d5619cb6693e8f8255cd9bc",
"packagetype": "bdist_msi",
"python_version": "2.6",
"size": 262144,
"upload_time": "2010-07-14T21:59:49",
"url": "https://files.pythonhosted.org/packages/c2/56/df31bc7f1411900a1afb06ad49c110352fb5b1649fa0417a48e6faf9d58e/gevent-0.13.0.win32-py2.6.msi"
},
{
"comment_text": "statically linked against libevent-1.4.14b-stable",
"digests": {
"md5": "91acaee4c32864ded1804c87a4bceee1",
"sha256": "8590075275c88da4541e9e31be43fcfe31b253ad3ade580d8f397f9a5e33a891"
},
"downloads": -1,
"filename": "gevent-0.13.0.win32-py2.7.exe",
"has_sig": false,
"md5_digest": "91acaee4c32864ded1804c87a4bceee1",
"packagetype": "bdist_wininst",
"python_version": "2.7",
"size": 350785,
"upload_time": "2010-07-14T22:01:09",
"url": "https://files.pythonhosted.org/packages/9c/40/32f75fea7cdb3655af4b0efb29f7c99e85bb8e426506b0adbed340ff4ac0/gevent-0.13.0.win32-py2.7.exe"
},
{
"comment_text": "statically linked against libevent-1.4.14b-stable",
"digests": {
"md5": "1018c8f6e2c715eff9c2a1dd7c42d034",
"sha256": "45fd38087fc66571ae5a91a4e56c37cbc50afc2260efff008f1c21654a446334"
},
"downloads": -1,
"filename": "gevent-0.13.0.win32-py2.7.msi",
"has_sig": false,
"md5_digest": "1018c8f6e2c715eff9c2a1dd7c42d034",
"packagetype": "bdist_msi",
"python_version": "2.7",
"size": 262144,
"upload_time": "2010-07-14T22:00:54",
"url": "https://files.pythonhosted.org/packages/ec/a8/3ed38ff8a4c341920ec1fac6574cbe9613afd8108a60f16822db5f980dd3/gevent-0.13.0.win32-py2.7.msi"
}
],
"0.13.1": [
{
"comment_text": "statically linked against libevent-1.4.14b-stable",
"digests": {
"md5": "04a4e1111494fc442c9374a472cfd87e",
"sha256": "6c951f30f0d2a456c80fe68ca7a07ef43820f74577e484d81c9800256e3fc538"
},
"downloads": -1,
"filename": "gevent-0.13.1-py2.6-win32.egg",
"has_sig": false,
"md5_digest": "04a4e1111494fc442c9374a472cfd87e",
"packagetype": "bdist_egg",
"python_version": "2.6",
"size": 240149,
"upload_time": "2010-09-23T13:31:59",
"url": "https://files.pythonhosted.org/packages/45/52/668b34c16f3335b28c5dc3b928f5bb81f1c2fa8af0c3c7793a14fa332c34/gevent-0.13.1-py2.6-win32.egg"
},
{
"comment_text": "",
"digests": {
"md5": "31a3c2a3c61cdc2600560f08d9604d4c",
"sha256": "de2672777484ecf49246a11eaddae148e9f8e91a02cbc2033271281e0627a86a"
},
"downloads": -1,
"filename": "gevent-0.13.1-py2.7-win32.egg",
"has_sig": false,
"md5_digest": "31a3c2a3c61cdc2600560f08d9604d4c",
"packagetype": "bdist_egg",
"python_version": "2.7",
"size": 239708,
"upload_time": "2010-10-12T16:46:25",
"url": "https://files.pythonhosted.org/packages/c5/2d/ff13a58e0ede44610f999932f07a1d39ca75f80d1cc13e53549df05c8460/gevent-0.13.1-py2.7-win32.egg"
},
{
"comment_text": "",
"digests": {
"md5": "5c1b03d9ce39fee4cfe5ea8befb1d4c4",
"sha256": "89cfea6b51e12a207923354b2732e36525249c570f3693f04b557e4856d59b8d"
},
"downloads": -1,
"filename": "gevent-0.13.1.tar.gz",
"has_sig": false,
"md5_digest": "5c1b03d9ce39fee4cfe5ea8befb1d4c4",
"packagetype": "sdist",
"python_version": "source",
"size": 266205,
"upload_time": "2010-09-23T13:29:34",
"url": "https://files.pythonhosted.org/packages/05/fe/8dff3ae082309c3e8f0e3c688ba47308ed4669097a48e50d6fe503a7f431/gevent-0.13.1.tar.gz"
},
{
"comment_text": "statically linked against libevent-1.4.14b-stable",
"digests": {
"md5": "65cdc6078857330f371bbd6a431ec0e6",
"sha256": "83feba63813b87db1d3b05bffaf73e47ea0785a14089eae6fb22d8c52d6a834b"
},
"downloads": -1,
"filename": "gevent-0.13.1.win32-py2.6.exe",
"has_sig": false,
"md5_digest": "65cdc6078857330f371bbd6a431ec0e6",
"packagetype": "bdist_wininst",
"python_version": "2.6",
"size": 352751,
"upload_time": "2010-09-23T13:30:08",
"url": "https://files.pythonhosted.org/packages/28/17/1b987344b0f693afab66ffedacdc0d0618fbc87b75211709753cc3cdceba/gevent-0.13.1.win32-py2.6.exe"
},
{
"comment_text": "statically linked against libevent-1.4.14b-stable",
"digests": {
"md5": "645fade47d87dd03013b91661b338c32",
"sha256": "49885807c57b040109462867699b4a48dcbc433a03b6760b3d444f07d550f5fe"
},
"downloads": -1,
"filename": "gevent-0.13.1.win32-py2.6.msi",
"has_sig": false,
"md5_digest": "645fade47d87dd03013b91661b338c32",
"packagetype": "bdist_msi",
"python_version": "2.6",
"size": 262144,
"upload_time": "2010-09-23T13:30:27",
"url": "https://files.pythonhosted.org/packages/0a/36/8f35158ebda8a8407b99eefa04d46a913761ff33f871ae2a9cc309b400ad/gevent-0.13.1.win32-py2.6.msi"
},
{
"comment_text": "statically linked against libevent-1.4.14b-stable",
"digests": {
"md5": "8b3ca48d46c0d36fa9128926cf7f80c0",
"sha256": "a3216a2650bcd8ce04f87bfede3cf68edcbe276cdd072fb8822337592fa2df8b"
},
"downloads": -1,
"filename": "gevent-0.13.1.win32-py2.7.exe",
"has_sig": false,
"md5_digest": "8b3ca48d46c0d36fa9128926cf7f80c0",
"packagetype": "bdist_wininst",
"python_version": "2.7",
"size": 352665,
"upload_time": "2010-09-23T13:30:52",
"url": "https://files.pythonhosted.org/packages/9b/1a/3f93a3823a4dbad91f68af2d17e065a279df4bb510a8c66930ae960eebf5/gevent-0.13.1.win32-py2.7.exe"
},
{
"comment_text": "statically linked against libevent-1.4.14b-stable",
"digests": {
"md5": "286f6d08433bae674f61f9bab718d5b6",
"sha256": "9e31c1c4df7ea10ec021af5aac18b3f031cf0e9e6e59d33a86b550716e4c23b0"
},
"downloads": -1,
"filename": "gevent-0.13.1.win32-py2.7.msi",
"has_sig": false,
"md5_digest": "286f6d08433bae674f61f9bab718d5b6",
"packagetype": "bdist_msi",
"python_version": "2.7",
"size": 262144,
"upload_time": "2010-09-23T13:31:09",
"url": "https://files.pythonhosted.org/packages/f4/d4/054308c333884f7f33f675fae98b38d4a13c3d0c0dff23f676a179625904/gevent-0.13.1.win32-py2.7.msi"
}
],
"0.13.2": [
{
"comment_text": "statically linked against libevent-1.4.14b-stable",
"digests": {
"md5": "4d9b15aaec7ca996913ae642eee7986d",
"sha256": "33ce444ed95818d555ccb58c4c0a51516c429cd682e0c74365ae9f5c1d13b98c"
},
"downloads": -1,
"filename": "gevent-0.13.2-py2.6-win32.egg",
"has_sig": false,
"md5_digest": "4d9b15aaec7ca996913ae642eee7986d",
"packagetype": "bdist_egg",
"python_version": "2.6",
"size": 253507,
"upload_time": "2011-01-28T15:37:17",
"url": "https://files.pythonhosted.org/packages/16/fb/d202769fa630601d5cdbb257766d719b941d47d74463d51d8a7fd12205ac/gevent-0.13.2-py2.6-win32.egg"
},
{
"comment_text": "",
"digests": {
"md5": "8cb34c65cea38d93112bd3825e6ebf6f",
"sha256": "6a5e328df3888c853bbbe1f13331c91b5d30d66ddd138be17265a7d219ea7be4"
},
"downloads": -1,
"filename": "gevent-0.13.2-py2.7-win32.egg",
"has_sig": false,
"md5_digest": "8cb34c65cea38d93112bd3825e6ebf6f",
"packagetype": "bdist_egg",
"python_version": "2.7",
"size": 253256,
"upload_time": "2011-01-28T15:38:44",
"url": "https://files.pythonhosted.org/packages/d6/86/20138fe7056e56d2acdd288ab62c5768137be3b5162e61273dc4a10713e0/gevent-0.13.2-py2.7-win32.egg"
},
{
"comment_text": "",
"digests": {
"md5": "46cf4a8903a116bd9797f10f749e7c93",
"sha256": "cfbc080034cc287a12dfe060413478e87d68faee07275681d270fd904aafcc5d"
},
"downloads": -1,
"filename": "gevent-0.13.2.tar.gz",
"has_sig": false,
"md5_digest": "46cf4a8903a116bd9797f10f749e7c93",
"packagetype": "sdist",
"python_version": "source",
"size": 287882,
"upload_time": "2011-01-28T15:35:33",
"url": "https://files.pythonhosted.org/packages/87/1e/e65b2197f3233cdfcc705843765b9fab67617c9888f053b04ef6b3afeeaf/gevent-0.13.2.tar.gz"
},
{
"comment_text": "statically linked against libevent-1.4.14b-stable ",
"digests": {
"md5": "62191ccfbbc8ef8e56507fcdd39e2f7c",
"sha256": "3729bafceb857c0bc95af343cd0dada389400671c2e16483d6b48031b9b31536"
},
"downloads": -1,
"filename": "gevent-0.13.2.win32-py2.6.exe",
"has_sig": false,
"md5_digest": "62191ccfbbc8ef8e56507fcdd39e2f7c",
"packagetype": "bdist_wininst",
"python_version": "2.6",
"size": 360961,
"upload_time": "2011-01-28T15:36:27",
"url": "https://files.pythonhosted.org/packages/5b/64/c5672a284051061cd821e23f39a2293fb090c9ec41dedadf4715e6a615eb/gevent-0.13.2.win32-py2.6.exe"
},
{
"comment_text": "statically linked against libevent-1.4.14b-stable ",
"digests": {
"md5": "01e69069beeba3261491d4a7bad1fe34",
"sha256": "b7fb1b00da1622567b7b94a9a812ed334ba4d9ce9e352db8ae0129c27c5468c0"
},
"downloads": -1,
"filename": "gevent-0.13.2.win32-py2.6.msi",
"has_sig": false,
"md5_digest": "01e69069beeba3261491d4a7bad1fe34",
"packagetype": "bdist_msi",
"python_version": "2.6",
"size": 278528,
"upload_time": "2011-01-28T15:36:51",
"url": "https://files.pythonhosted.org/packages/b1/b2/c6da88bee5159a9d3b9ed2abff156ea3f55b97baf89b25fb811e9b055403/gevent-0.13.2.win32-py2.6.msi"
},
{
"comment_text": "statically linked against libevent-1.4.14b-stable",
"digests": {
"md5": "14b053e0589b598bca4a346fab332cfe",
"sha256": "668f5262bbe4d70d8cd5e4bc9412179256eea5d0233d68d588f811f2b41bdcfa"
},
"downloads": -1,
"filename": "gevent-0.13.2.win32-py2.7.exe",
"has_sig": false,
"md5_digest": "14b053e0589b598bca4a346fab332cfe",
"packagetype": "bdist_wininst",
"python_version": "2.7",
"size": 361027,
"upload_time": "2011-01-28T15:37:43",
"url": "https://files.pythonhosted.org/packages/e3/6f/caf0a9f012ce7820b122428d4163a99bd8b45d7bcf4f5097aa61ad15e57a/gevent-0.13.2.win32-py2.7.exe"
},
{
"comment_text": "statically linked against libevent-1.4.14b-stable",
"digests": {
"md5": "2d90d9ceff832b213f117d526d94b99f",
"sha256": "fbec15a8a32f45bb2cea25085069eb4547c2855dfb905f62273be86f16f685a4"
},
"downloads": -1,
"filename": "gevent-0.13.2.win32-py2.7.msi",
"has_sig": false,
"md5_digest": "2d90d9ceff832b213f117d526d94b99f",
"packagetype": "bdist_msi",
"python_version": "2.7",
"size": 278528,
"upload_time": "2011-01-28T15:38:17",
"url": "https://files.pythonhosted.org/packages/5c/af/e135f7bca407731ea90562f1267fcfee6429958cb11c533ac0b8bea22e1b/gevent-0.13.2.win32-py2.7.msi"
}
],
"0.13.3": [
{
"comment_text": "",
"digests": {
"md5": "af1b6438ac62e10ab521f51366e3f0e4",
"sha256": "53b3831cd4410ae66b1293661ff3d4df339d8b5cafb91099fe8cdf2f381a288c"
},
"downloads": -1,
"filename": "gevent-0.13.3.tar.gz",
"has_sig": false,
"md5_digest": "af1b6438ac62e10ab521f51366e3f0e4",
"packagetype": "sdist",
"python_version": "source",
"size": 285183,
"upload_time": "2011-02-07T13:43:18",
"url": "https://files.pythonhosted.org/packages/5f/a8/f3b0843401d1b6d8f64aced77cb6f9f52cd4016fcfbca202c6c3ccfc38ab/gevent-0.13.3.tar.gz"
}
],
"0.13.4": [
{
"comment_text": "",
"digests": {
"md5": "f279c25c913fe7f229cf8016f5ff6e4b",
"sha256": "7871a67e120c42e30a1a050e0618564b5b10805ff1e15e41d0c09c17631a6a80"
},
"downloads": -1,
"filename": "gevent-0.13.4.tar.gz",
"has_sig": false,
"md5_digest": "f279c25c913fe7f229cf8016f5ff6e4b",
"packagetype": "sdist",
"python_version": "source",
"size": 289534,
"upload_time": "2011-04-11T11:04:29",
"url": "https://files.pythonhosted.org/packages/ed/2d/0c879ebee27137c012de952905a8e6e53c9f95e8440ddad037045c3b6f35/gevent-0.13.4.tar.gz"
}
],
"0.13.5": [
{
"comment_text": "",
"digests": {
"md5": "8143d708256eec0579fb65d76ab0b05c",
"sha256": "6eaff69ea30eecc1c52671bd558cd5ee2895e58d21b0ac408323f0591fe4d7f2"
},
"downloads": -1,
"filename": "gevent-0.13.5.tar.gz",
"has_sig": false,
"md5_digest": "8143d708256eec0579fb65d76ab0b05c",
"packagetype": "sdist",
"python_version": "source",
"size": 287254,
"upload_time": "2011-04-21T18:53:09",
"url": "https://files.pythonhosted.org/packages/29/ff/d30e3fbe84c018a98ff15136aace552463d0173926aba8eb641f093079fc/gevent-0.13.5.tar.gz"
}
],
"0.13.6": [
{
"comment_text": "",
"digests": {
"md5": "7c836ce2315d44ba0af6134efbcd38c9",
"sha256": "eb85f7cd39e097b893b8f262ea8b0370a9d478b2083fc15b394a1a3cae7b7d99"
},
"downloads": -1,
"filename": "gevent-0.13.6.tar.gz",
"has_sig": false,
"md5_digest": "7c836ce2315d44ba0af6134efbcd38c9",
"packagetype": "sdist",
"python_version": "source",
"size": 289805,
"upload_time": "2011-05-02T15:05:47",
"url": "https://files.pythonhosted.org/packages/14/83/37f998c61406cb765264db8b68a24296e1f40d05a57b18dbfafa0883b5bd/gevent-0.13.6.tar.gz"
}
],
"0.13.7": [
{
"comment_text": "statically linked against libevent-1.4.14b-stable ",
"digests": {
"md5": "800daea4764a7cb8093407515fe55c36",
"sha256": "b05a1e4928eda8c49a4fe88e6f263af54cc5e7e3c133de48a8a58a675475c0ff"
},
"downloads": -1,
"filename": "gevent-0.13.7-py2.6-win32.egg",
"has_sig": false,
"md5_digest": "800daea4764a7cb8093407515fe55c36",
"packagetype": "bdist_egg",
"python_version": "2.6",
"size": 255619,
"upload_time": "2012-04-12T00:38:39",
"url": "https://files.pythonhosted.org/packages/34/43/f6d45a1856d9a8e3ed1d4703401babc00b83e8a2e49f0c310ead73f8f4b4/gevent-0.13.7-py2.6-win32.egg"
},
{
"comment_text": "statically linked against libevent-1.4.14b-stable ",
"digests": {
"md5": "2a6eed1f319e70e2978ff1147ae97685",
"sha256": "b46e4dd3b07bd977ce2519ebee439325393b1604bf622854aaec65d90398da46"
},
"downloads": -1,
"filename": "gevent-0.13.7-py2.7-win32.egg",
"has_sig": false,
"md5_digest": "2a6eed1f319e70e2978ff1147ae97685",
"packagetype": "bdist_egg",
"python_version": "2.7",
"size": 255187,
"upload_time": "2012-04-12T00:37:22",
"url": "https://files.pythonhosted.org/packages/13/68/8f45007a7eacfaa69aa33def2c815539dc8a2d6e4258958466b6ea153118/gevent-0.13.7-py2.7-win32.egg"
},
{
"comment_text": "",
"digests": {
"md5": "c74004730c2543260b751b0aa782987c",
"sha256": "0754f141d2889fa861918eb75482b9572763bd661479bbfc73a8c250f4eab6c5"
},
"downloads": -1,
"filename": "gevent-0.13.7.tar.gz",
"has_sig": false,
"md5_digest": "c74004730c2543260b751b0aa782987c",
"packagetype": "sdist",
"python_version": "source",
"size": 288284,
"upload_time": "2012-04-12T00:35:52",
"url": "https://files.pythonhosted.org/packages/b5/5e/bb9c7774b7d6e4ebaf2915db7462ca46970984379516218198088bd4f6cf/gevent-0.13.7.tar.gz"
},
{
"comment_text": "statically linked against libevent-1.4.14b-stable ",
"digests": {
"md5": "e9b33f221a346eb856549fdfd5766fc3",
"sha256": "cce608b00c5bb47487bb5dd5b13c638926671bc53ac5bd9d088f66f3fc931f55"
},
"downloads": -1,
"filename": "gevent-0.13.7.win32-py2.6.exe",
"has_sig": false,
"md5_digest": "e9b33f221a346eb856549fdfd5766fc3",
"packagetype": "bdist_wininst",
"python_version": "2.6",
"size": 362697,
"upload_time": "2012-04-12T00:38:16",
"url": "https://files.pythonhosted.org/packages/fd/6a/75656d4b41a25934adc10b0d1354b386592b90f1923c8236754896c36ff3/gevent-0.13.7.win32-py2.6.exe"
},
{
"comment_text": "statically linked against libevent-1.4.14b-stable ",
"digests": {
"md5": "d177d98fb4990b4ba303b4ae81867bd7",
"sha256": "648dd7c2b1ff906d7ba702f92014bc1b336a2fa72b5f9e2ab50648509febdef6"
},
"downloads": -1,
"filename": "gevent-0.13.7.win32-py2.6.msi",
"has_sig": false,
"md5_digest": "d177d98fb4990b4ba303b4ae81867bd7",
"packagetype": "bdist_msi",
"python_version": "2.6",
"size": 278528,
"upload_time": "2012-04-12T00:37:55",
"url": "https://files.pythonhosted.org/packages/b0/5c/f62d6b82dd2e76593ad737c3bfa998dde6df711fb8c34b945fa2d8f4efc7/gevent-0.13.7.win32-py2.6.msi"
},
{
"comment_text": "statically linked against libevent-1.4.14b-stable",
"digests": {
"md5": "d93dafa1a3d22cf0069ceeacfb0c1ab0",
"sha256": "3b4b38c6199bf56d1dd30c3ebd28b8cf406fadf9ab9fedb8c6ae0f134ddc7491"
},
"downloads": -1,
"filename": "gevent-0.13.7.win32-py2.7.exe",
"has_sig": false,
"md5_digest": "d93dafa1a3d22cf0069ceeacfb0c1ab0",
"packagetype": "bdist_wininst",
"python_version": "2.7",
"size": 362611,
"upload_time": "2012-04-12T00:36:54",
"url": "https://files.pythonhosted.org/packages/fd/e4/7a55ae5c6ac672a2a62b5c39a8745e3e9a47bc2dd20e8b30307017348929/gevent-0.13.7.win32-py2.7.exe"
},
{
"comment_text": "statically linked against libevent-1.4.14b-stable ",
"digests": {
"md5": "d131cb20d290cdaf9f6aa5a6bb76d915",
"sha256": "90e1e7cf0734ea4ab767b11d5cc1be1ed4479e36ce58052a40583bd862f12bf8"
},
"downloads": -1,
"filename": "gevent-0.13.7.win32-py2.7.msi",
"has_sig": false,
"md5_digest": "d131cb20d290cdaf9f6aa5a6bb76d915",
"packagetype": "bdist_msi",
"python_version": "2.7",
"size": 278528,
"upload_time": "2012-04-12T00:36:33",
"url": "https://files.pythonhosted.org/packages/f6/48/31290d8dd1f06a83055a56ceba3f10ef35e460d8c866e6d3bf3370040365/gevent-0.13.7.win32-py2.7.msi"
}
],
"0.13.8": [
{
"comment_text": "",
"digests": {
"md5": "ca9dcaa7880762d8ebbc266b11252960",
"sha256": "54b8d26300ce408c0916a3e63ef6cd3e6aca76230833558deb7de15196ed955e"
},
"downloads": -1,
"filename": "gevent-0.13.8.tar.gz",
"has_sig": false,
"md5_digest": "ca9dcaa7880762d8ebbc266b11252960",
"packagetype": "sdist",
"python_version": "source",
"size": 300098,
"upload_time": "2012-09-06T12:29:01",
"url": "https://files.pythonhosted.org/packages/73/1b/513d05b856c32565fea7cd02c10c9deb09aee4d4969ca57e3e86ae12055e/gevent-0.13.8.tar.gz"
},
{
"comment_text": "statically linked against libevent-1.4.14b-stable ",
"digests": {
"md5": "d4e99bfa0313aeb95aafcc0e1f3ebb63",
"sha256": "b531a58900d0718ad780182578f5f95e163e0f2b9b5f47ce400f9788129197d4"
},
"downloads": -1,
"filename": "gevent-0.13.8.win32-py2.6.exe",
"has_sig": false,
"md5_digest": "d4e99bfa0313aeb95aafcc0e1f3ebb63",
"packagetype": "bdist_wininst",
"python_version": "2.6",
"size": 359705,
"upload_time": "2012-09-06T12:31:14",
"url": "https://files.pythonhosted.org/packages/74/8f/c145dcc9b9ea0b0f9198b82304b2e606c5e14d1084b3686f39cd97054ab2/gevent-0.13.8.win32-py2.6.exe"
},
{
"comment_text": "statically linked against libevent-1.4.14b-stable ",
"digests": {
"md5": "2f38fa0bd80ab1b7e70956a27f84bdda",
"sha256": "ec3732c51ac1136b270409a4c5847a3a40cb90d9bfabd5b35296f41da595d84b"
},
"downloads": -1,
"filename": "gevent-0.13.8.win32-py2.6.msi",
"has_sig": false,
"md5_digest": "2f38fa0bd80ab1b7e70956a27f84bdda",
"packagetype": "bdist_msi",
"python_version": "2.6",
"size": 278528,
"upload_time": "2012-09-06T12:30:51",
"url": "https://files.pythonhosted.org/packages/6e/48/f54f519d9ba9920db6b3381e3b49f4e3149b430623313fdf2916046bbdbb/gevent-0.13.8.win32-py2.6.msi"
},
{
"comment_text": "statically linked against libevent-1.4.14b-stable ",
"digests": {
"md5": "cb6b95a59313da422cb38046852dce19",
"sha256": "22b9249ffd4c9259e85ffbc3570c4d152c9c7b943301284aa5b545a22c8db972"
},
"downloads": -1,
"filename": "gevent-0.13.8.win32-py2.7.exe",
"has_sig": false,
"md5_digest": "cb6b95a59313da422cb38046852dce19",
"packagetype": "bdist_wininst",
"python_version": "2.7",
"size": 359453,
"upload_time": "2012-09-06T12:30:14",
"url": "https://files.pythonhosted.org/packages/70/47/8baad06c9625f2389f2e73f877a8f47038ebcd1c01e3eacfbbae49ddb239/gevent-0.13.8.win32-py2.7.exe"
},
{
"comment_text": "statically linked against libevent-1.4.14b-stable ",
"digests": {
"md5": "2844dfd9c43c0688107ea2ba153b644a",
"sha256": "da3b5986177cd508017354e8f24bd8eeba34dd75efd67e90632c909b906011aa"
},
"downloads": -1,
"filename": "gevent-0.13.8.win32-py2.7.msi",
"has_sig": false,
"md5_digest": "2844dfd9c43c0688107ea2ba153b644a",
"packagetype": "bdist_msi",
"python_version": "2.7",
"size": 278528,
"upload_time": "2012-09-06T12:29:55",
"url": "https://files.pythonhosted.org/packages/b5/ac/daaa8faeb02b399974e765474a81c5ead9d1f2d7e776f6ffb6e76284b2c0/gevent-0.13.8.win32-py2.7.msi"
}
],
"0.9.2": [
{
"comment_text": "",
"digests": {
"md5": "d2e90287d18912d6238788ac27ecc9a8",
"sha256": "ed8d49df5d55e62ba361da2fd4e78ad61f7071d8824543f0ab791a8cab77145e"
},
"downloads": -1,
"filename": "gevent-0.9.2.tar.gz",
"has_sig": false,
"md5_digest": "d2e90287d18912d6238788ac27ecc9a8",
"packagetype": "sdist",
"python_version": "source",
"size": 124252,
"upload_time": "2009-07-20T10:45:09",
"url": "https://files.pythonhosted.org/packages/a7/c5/e65285af608a712b410b4204eacc97d13ff0974631a964d5264251f64527/gevent-0.9.2.tar.gz"
}
],
"0.9.3": [
{
"comment_text": "",
"digests": {
"md5": "dc85b9824d1f8e00e0e58d9fddf7b3e9",
"sha256": "281e1ca74d66a919c4cb72d95699e09f635dce316e9b7770de994d4e92b54850"
},
"downloads": -1,
"filename": "gevent-0.9.3.tar.gz",
"has_sig": false,
"md5_digest": "dc85b9824d1f8e00e0e58d9fddf7b3e9",
"packagetype": "sdist",
"python_version": "source",
"size": 133435,
"upload_time": "2009-08-03T08:35:58",
"url": "https://files.pythonhosted.org/packages/77/ed/e5043a63aab945e51563e3bca582a2a2a75d92688e313aa99ce3fa9fa062/gevent-0.9.3.tar.gz"
}
],
"1.0": [
{
"comment_text": "libev and c-ares bundled",
"digests": {
"md5": "33aef51a06268f5903fea378e1388e4d",
"sha256": "bfa9d846db91a7d8b6a36e87353eed641c7e3e7d0bfa0b9975796d227f2db4eb"
},
"downloads": -1,
"filename": "gevent-1.0.tar.gz",
"has_sig": false,
"md5_digest": "33aef51a06268f5903fea378e1388e4d",
"packagetype": "sdist",
"python_version": "source",
"size": 1437122,
"upload_time": "2013-11-26T16:44:59",
"url": "https://files.pythonhosted.org/packages/59/95/197c915ac1fe4338e36b272d89a04907ae8c243adc5f2c9627fb76e962ef/gevent-1.0.tar.gz"
}
],
"1.0.1": [
{
"comment_text": "libev and c-ares bundled",
"digests": {
"md5": "7b952591d1a0174d6eb6ac47bd975ab6",
"sha256": "4627e215d058f71d95e6b26d9e7be4c263788a4756bd2858a93775f6c072df43"
},
"downloads": -1,
"filename": "gevent-1.0.1.tar.gz",
"has_sig": false,
"md5_digest": "7b952591d1a0174d6eb6ac47bd975ab6",
"packagetype": "sdist",
"python_version": "source",
"size": 1455636,
"upload_time": "2014-04-30T19:04:16",
"url": "https://files.pythonhosted.org/packages/6e/92/773892c87654a67669fd936e1fa3c37ef1a4dd464066df6bebfbd00745a1/gevent-1.0.1.tar.gz"
}
],
"1.0.2": [
{
"comment_text": "",
"digests": {
"md5": "dd45e0512fbeb2731309b8ebb6688d72",
"sha256": "704a048005e6389fcb8276113bb9e7d0a3160bc382b9bcc629e398a43645de5c"
},
"downloads": -1,
"filename": "gevent-1.0.2-cp26-none-macosx_10_10_intel.whl",
"has_sig": false,
"md5_digest": "dd45e0512fbeb2731309b8ebb6688d72",
"packagetype": "bdist_wheel",
"python_version": "cp26",
"size": 554897,
"upload_time": "2015-09-24T16:18:02",
"url": "https://files.pythonhosted.org/packages/56/20/ae33c9ef5c4d867d7c1a3fdcf9cac442e2bb60f509107f1dcb74a27e0c0d/gevent-1.0.2-cp26-none-macosx_10_10_intel.whl"
},
{
"comment_text": "",
"digests": {
"md5": "6df61c42564aa9c6919adce2a603c2d0",
"sha256": "004cdbc6c18b4076acfa256c1794abf87bf9b97e0cfd4136f5098535c4b4132e"
},
"downloads": -1,
"filename": "gevent-1.0.2-cp26-none-macosx_10_11_intel.whl",
"has_sig": false,
"md5_digest": "6df61c42564aa9c6919adce2a603c2d0",
"packagetype": "bdist_wheel",
"python_version": "cp26",
"size": 554846,
"upload_time": "2015-09-24T16:15:41",
"url": "https://files.pythonhosted.org/packages/6c/4e/40ede405310f0a444eb7aa44b4d75c1bc2d1018d0f15145d677fd1635a2c/gevent-1.0.2-cp26-none-macosx_10_11_intel.whl"
},
{
"comment_text": "",
"digests": {
"md5": "47934c9461c710b4ab114edff6e4f6c0",
"sha256": "aa224957cbbc028bbdfbec89625c7efa66bb8ddb845ed2fe323bd6b24e919dcf"
},
"downloads": -1,
"filename": "gevent-1.0.2-cp27-none-macosx_10_10_x86_64.whl",
"has_sig": false,
"md5_digest": "47934c9461c710b4ab114edff6e4f6c0",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"size": 337008,
"upload_time": "2015-09-24T16:10:19",
"url": "https://files.pythonhosted.org/packages/64/61/4ed23de95aeec5a891a9b8a7a067417f166ad5780885a97bd182569e9f44/gevent-1.0.2-cp27-none-macosx_10_10_x86_64.whl"
},
{
"comment_text": "",
"digests": {
"md5": "4c16f20ec1faef99a4c5e9e2b7d9f454",
"sha256": "f3e8656f0b7bce355f14896d0b644c0a91e01fa12d9d65e6b09faad1d2c06e65"
},
"downloads": -1,
"filename": "gevent-1.0.2-cp27-none-macosx_10_11_x86_64.whl",
"has_sig": false,
"md5_digest": "4c16f20ec1faef99a4c5e9e2b7d9f454",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"size": 336957,
"upload_time": "2015-09-24T16:04:05",
"url": "https://files.pythonhosted.org/packages/e6/f0/d0cfe13460cd1ccc267bf246ef8ed80a889e72acb5cc65691e0d740ad3e6/gevent-1.0.2-cp27-none-macosx_10_11_x86_64.whl"
},
{
"comment_text": "",
"digests": {
"md5": "98a03cf35c20ff42f2027880eeb14bf3",
"sha256": "80ee22c28dae6dc70c7e4385f0d0292da9eebccf14b90620a32f10d71797838e"
},
"downloads": -1,
"filename": "gevent-1.0.2-cp27-none-macosx_10_6_intel.whl",
"has_sig": false,
"md5_digest": "98a03cf35c20ff42f2027880eeb14bf3",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"size": 344535,
"upload_time": "2015-12-29T13:56:15",
"url": "https://files.pythonhosted.org/packages/4f/4f/bf5fc7b980da5a09de6c41a85a66fe4223a4c71e2cd41c926be3943b7133/gevent-1.0.2-cp27-none-macosx_10_6_intel.whl"
},
{
"comment_text": "",
"digests": {
"md5": "54e685a31d66584ea27235443e4913a2",
"sha256": "222d56542edd2883f9972d30243808e76ad75d2f0218bc219467b170653df5d0"
},
"downloads": -1,
"filename": "gevent-1.0.2-py2.7-macosx-10.6-intel.egg",
"has_sig": false,
"md5_digest": "54e685a31d66584ea27235443e4913a2",
"packagetype": "bdist_egg",
"python_version": "2.7",
"size": 344884,
"upload_time": "2015-12-29T13:56:20",
"url": "https://files.pythonhosted.org/packages/bb/db/f3f0857c7aee4936989377bce230a5189265aa535e2939d5419a64c66c72/gevent-1.0.2-py2.7-macosx-10.6-intel.egg"
},
{
"comment_text": "",
"digests": {
"md5": "117f135d57ca7416203fba3720bf71c1",
"sha256": "3ae1ca0f533ddcb17aab16ce66b424b3f3b855ff3b9508526915d3c6b73fba31"
},
"downloads": -1,
"filename": "gevent-1.0.2.tar.gz",
"has_sig": false,
"md5_digest": "117f135d57ca7416203fba3720bf71c1",
"packagetype": "sdist",
"python_version": "source",
"size": 1735721,
"upload_time": "2015-05-23T12:21:47",
"url": "https://files.pythonhosted.org/packages/8a/71/9bb13513d39c513fa71344d57a11affd6ccad775575458f435ff9142daf5/gevent-1.0.2.tar.gz"
}
],
"1.1.0": [
{
"comment_text": "",
"digests": {
"md5": "82a7a9b4c4c3b2f62e5ba8ae50e41298",
"sha256": "06de0b038f263d1f46c5d9038ffc26b9bd6084d98c5c3b281e75a2717e020ba1"
},
"downloads": -1,
"filename": "gevent-1.1.0-cp26-cp26m-macosx_10_11_intel.whl",
"has_sig": false,
"md5_digest": "82a7a9b4c4c3b2f62e5ba8ae50e41298",
"packagetype": "bdist_wheel",
"python_version": "cp26",