{ "info": { "author": "Mike Jarvis", "author_email": "michael@jarvis.net", "bugtrack_url": null, "classifiers": [], "description": ".. image:: https://travis-ci.org/rmjarvis/TreeCorr.svg?branch=master\n :target: https://travis-ci.org/rmjarvis/TreeCorr\n.. image:: https://codecov.io/gh/rmjarvis/TreeCorr/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/rmjarvis/TreeCorr\n\n\nTreeCorr is a package for efficiently computing 2-point and 3-point correlation\nfunctions.\n\n- The code is hosted at https://github.com/rmjarvis/TreeCorr\n- It can compute correlations of regular number counts, weak lensing shears, or\n scalar quantities such as convergence or CMB temperature fluctutations.\n- 2-point correlations may be auto-correlations or cross-correlations. This\n includes shear-shear, count-shear, count-count, kappa-kappa, etc. (Any\n combination of shear, kappa, and counts.)\n- 3-point correlations currently can only be auto-correlations. This includes\n shear-shear-shear, count-count-count, and kappa-kappa-kappa. The cross\n varieties are planned to be added in the near future.\n- Both 2- and 3-point functions can be done with the correct curved-sky\n calculation using RA, Dec coordinates, on a Euclidean tangent plane, or in\n 3D using either (RA,Dec,r) or (x,y,z) positions.\n- The front end is in Python, which can be used as a Python module or as a\n standalone executable using configuration files. (The executable is corr2\n for 2-point and corr3 for 3-point.)\n- The actual computation of the correlation functions is done in C++ using ball\n trees (similar to kd trees), which make the calculation extremely efficient.\n- When available, OpenMP is used to run in parallel on multi-core machines.\n- Approximate running time for 2-point shear-shear is ~30 sec * (N/10^6) / core\n for a bin size b=0.1 in log(r). It scales as b^(-2). This is the slowest\n of the various kinds of 2-point correlations, so others will be a bit faster,\n but with the same scaling with N and b.\n- The running time for 3-point functions are highly variable depending on the\n range of triangle geometries you are calculating. They are significantly\n slower than the 2-point functions, but many orders of magnitude faster than\n brute force algorithms.\n- **If you use TreeCorr in published research, please reference:\n Jarvis, Bernstein, & Jain, 2004, MNRAS, 352, 338**\n (I'm working on new paper about TreeCorr, including some of the improvements\n I've made since then, but this will suffice as a reference for now.)\n- Record on the Astrophyics Source Code Library: http://ascl.net/1508.007\n- Developed by Mike Jarvis. Fee free to contact me with questions or comments\n at mikejarvis17 at gmail. Or post an issue (see below) if you have any\n problems with the code.\n\nThe code is licensed under a FreeBSD license. Essentially, you can use the\ncode in any way you want, but if you distribute it, you need to include the\nfile ``TreeCorr_LICENSE`` with the distribution. See that file for details.\n\n\nInstallation\n------------\n\nThe easiest way to install TreeCorr is with pip::\n\n pip install treecorr\n\nIf you have previously installed TreeCorr, and want to upgrade to a new\nreleased version, you should do::\n\n pip install treecorr --upgrade\n\nDepending on the write permissions of the python distribution for your specific\nsystem, you might need to use one of the following variants::\n\n sudo pip install treecorr\n pip install treecorr --user\n\nThe latter installs the Python module into ``~/.local/lib/python3.7/site-packages``,\nwhich is normally already in your PYTHONPATH, but it puts the executables\n``corr2`` and ``corr3`` into ``~/.local/bin`` which is probably not in your PATH.\nTo use these scripts, you should add this directory to your PATH. If you would\nrather install into a different prefix rather than ~/.local, you can use::\n\n pip install treecorr --install-option=\"--prefix=PREFIX\"\n\nThis would install the executables into ``PREFIX/bin`` and the Python module\ninto ``PREFIX/lib/python3.7/site-packages``.\n\n\nIf you would rather download the tarball and install TreeCorr yourself,\nthat is also relatively straightforward:\n\n1. Install dependencies\n^^^^^^^^^^^^^^^^^^^^^^^\n\n All required dependencies should be installed automatically for you by\n setup.py, so you should not need to worry about these. But if you are\n interested, the dependencies are:\n\n - numpy\n - pyyaml\n - LSSTDESC.Coord\n - cffi\n\n They can all be installed at once by running::\n\n pip install -r requirements.txt\n\n The last dependency is the only one that typically could cause any problems, since it in\n turn depends on a library called libffi. This is a common thing to have installed already\n on linux machines, so it is likely that you won't have any trouble with it, but if you get\n errors about \"ffi.h\" not being found, then you may need to either install it yourself or\n update your paths to include the directory where ffi.h is found.\n\n See https://cffi.readthedocs.io/en/latest/installation.html for more information about\n installing cffi, including its libffi dependency.\n\n\n .. note::\n\n Two additional modules are not required for basic TreeCorr operations, but are\n potentially useful.\n\n a) fitsio is required for reading FITS catalogs or writing to FITS output files.\n\n b) pandas will signficantly speed up reading from ASCII catalogs.\n\n These are both pip installable::\n\n pip install fitsio\n pip install pandas\n\n But they are not installed with TreeCorr automatically.\n\n\n2. Download TreeCorr\n^^^^^^^^^^^^^^^^^^^^\n\n You can download the latest tarball from::\n\n https://github.com/rmjarvis/TreeCorr/releases/\n\n Or you can clone the repository using either of the following::\n\n git clone git@github.com:GalSim-developers/GalSim.git\n git clone https://github.com/GalSim-developers/GalSim.git\n\n which will start out in the current stable release branch.\n\n Either way, cd into the TreeCorr directory.\n\n\n3. Install\n^^^^^^^^^^\n\n You can then install TreeCorr in the normal way with setup.py. Typically this would be the\n command::\n\n python setup.py install\n\n If you don't have write permission in your python distribution, you might need\n to use::\n\n python setup.py install --user\n\n In addition to installing the Python module ``treecorr``, this will install\n the executables ``corr2`` and ``corr3`` in a ``bin`` folder somewhere on your\n system. Look for a line like::\n\n Installing corr2 script to /anaconda3/bin\n\n or similar in the output to see where the scripts are installed. If the\n directory is not in your path, you will also get a warning message at the\n end letting you know which directory you should add to your path if you want\n to run these scripts.\n\n\n4. Run Tests (optional)\n^^^^^^^^^^^^^^^^^^^^^^^\n\n If you want to run the unit tests, you can do the following::\n\n pip install -r test_requirements.txt\n cd tests\n nosetests\n\n\n\nTwo-point Correlations\n----------------------\n\nThis software is able to compute a variety of two-point correlations:\n\n:NN: The normal two-point correlation function of number counts (typically\n galaxy counts).\n\n:GG: Two-point shear-shear correlation function.\n\n:KK: Nominally the two-point kappa-kappa correlation function, although any\n scalar quantity can be used as \"kappa\". In lensing, kappa is the\n convergence, but this could be used for temperature, size, etc.\n\n:NG: Cross-correlation of counts with shear. This is what is often called\n galaxy-galaxy lensing.\n\n:NK: Cross-correlation of counts with kappa. Again, \"kappa\" here can be any scalar\n quantity.\n\n:KG: Cross-correlation of convergence with shear. Like the NG calculation, but\n weighting the pairs by the kappa values the foreground points.\n\nSee `Two-point Correlation Functions\n`_ for more details.\n\nThree-point Correlations\n------------------------\n\nThis software is not yet able to compute three-point cross-correlations, so the\nonly avaiable three-point correlations are:\n\n:NNN: Three-point correlation function of number counts.\n\n:GGG: Three-point shear correlation function. We use the \"natural components\"\n called Gamma, described by Schneider & Lombardi (2003) (Astron.Astrophys.\n 397, 809) using the triangle centroid as the reference point.\n\n:KKK: Three-point kappa correlation function. Again, \"kappa\" here can be any\n scalar quantity.\n\nSee `Three-point Correlation Functions\n`_ for more details.\n\nRunning corr2 and corr3\n-----------------------\n\nThe executables corr2 and corr3 each take one required command-line argument,\nwhich is the name of a configuration file::\n\n corr2 config_file\n corr3 config_file\n\nA sample configuration file for corr2 is provided, called sample.params.\nSee `Configuration Parameters `_\nfor the complete documentation about the allowed parameters.\n\nYou can also specify parameters on the command line after the name of\nthe configuration file. e.g.::\n\n corr2 config_file file_name=file1.dat gg_file_name=file1.out\n corr2 config_file file_name=file2.dat gg_file_name=file2.out\n ...\n\nThis can be useful when running the program from a script for lots of input\nfiles.\n\nSee `Using configuration files `_\nfor more details.\n\nUsing the Python module\n-----------------------\n\nThe typical usage in python is in three stages:\n\n1. Define one or more Catalogs with the input data to be correlated.\n2. Define the correlation function that you want to perform on those data.\n3. Run the correlation by calling ``process``.\n4. Maybe write the results to a file or use them in some way.\n\nFor instance, computing a shear-shear correlation from an input file stored\nin a fits file would look something like the following::\n\n >>> import treecorr\n >>> cat = treecorr.Catalog('cat.fits', ra_col='RA', dec_col='DEC',\n ... ra_units='degrees', dec_units='degrees',\n ... g1_col='GAMMA1', g2_col='GAMMA2')\n >>> gg = treecorr.GGCorrelation(min_sep=1., max_sep=100., bin_size=0.1,\n ... sep_units='arcmin')\n >>> gg.process(cat)\n >>> xip = gg.xip # The xi_plus correlation function\n >>> xim = gg.xim # The xi_minus correlation function\n\nFor more involved worked examples, see our `Jupyter notebook tutorial\n`_.\n\nAnd for the complete details about all aspects of the code, see the `Sphinx-generated\ndocumentation `_.\n\nIf you are used to using ``corr2`` with a configuration file,\nand want to learn how to do the same thing in pythonn, there is also a\n`guide `_\nto migrating over.\n\n\nReporting bugs\n--------------\n\nIf you find a bug running the code, please report it at:\n\nhttps://github.com/rmjarvis/TreeCorr/issues\n\nClick \"New Issue\", which will open up a form for you to fill in with the\ndetails of the problem you are having.\n\n\nRequesting features\n-------------------\n\nIf you would like to request a new feature, do the same thing. Open a new\nissue and fill in the details of the feature you would like added to TreeCorr.\nOr if there is already an issue for your desired feature, please add to the\ndiscussion, describing your use case. The more people who say they want a\nfeature, the more likely I am to get around to it sooner than later.", "description_content_type": "", "docs_url": null, "download_url": "https://github.com/rmjarvis/TreeCorr/releases/tag/v4.0.8.zip", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/rmjarvis/TreeCorr", "keywords": "", "license": "BSD License", "maintainer": "", "maintainer_email": "", "name": "TreeCorr", "package_url": "https://pypi.org/project/TreeCorr/", "platform": "", "project_url": "https://pypi.org/project/TreeCorr/", "project_urls": { "Download": "https://github.com/rmjarvis/TreeCorr/releases/tag/v4.0.8.zip", "Homepage": "https://github.com/rmjarvis/TreeCorr" }, "release_url": "https://pypi.org/project/TreeCorr/4.0.8/", "requires_dist": null, "requires_python": "", "summary": "Python module for computing 2-point correlation functions", "version": "4.0.8" }, "last_serial": 5742514, "releases": { "3.0.0": [ { "comment_text": "", "digests": { "md5": "863d753ebf9b344f0b91fa20b9ad2044", "sha256": "b1971fa8ad7a46424b9492a5a05d3564706f3c63664b9a5e6b7ce68fd1f515fa" }, "downloads": -1, "filename": "TreeCorr-3.0.0.tar.gz", "has_sig": false, "md5_digest": "863d753ebf9b344f0b91fa20b9ad2044", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80442, "upload_time": "2014-08-21T08:03:42", "url": "https://files.pythonhosted.org/packages/c3/55/893da8393ff35b3c4076dfad2fc32a9ba4a465fc63135dd5f46f640934f0/TreeCorr-3.0.0.tar.gz" } ], "3.0.1": [ { "comment_text": "", "digests": { "md5": "b39c346e8e2ef2deb21973526a1da8a3", "sha256": "35526082407dbbac756782aa5898063b67fdb8044e7a421c9583a7601a1b469f" }, "downloads": -1, "filename": "TreeCorr-3.0.1.tar.gz", "has_sig": false, "md5_digest": "b39c346e8e2ef2deb21973526a1da8a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80600, "upload_time": "2014-08-21T22:22:46", "url": "https://files.pythonhosted.org/packages/9b/b4/7524c5415adf0e860495a9239464cfcf70cc9a8d10a29072b0c535c0f18a/TreeCorr-3.0.1.tar.gz" } ], "3.0.2": [ { "comment_text": "", "digests": { "md5": "a721ed3a3d227fdc8d1475d6963597b1", "sha256": "4c66c4f873a96bca7facbb6d2417f213704c9fc76d2ef51763613296ec1644e4" }, "downloads": -1, "filename": "TreeCorr-3.0.2.tar.gz", "has_sig": false, "md5_digest": "a721ed3a3d227fdc8d1475d6963597b1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80615, "upload_time": "2014-08-21T22:30:43", "url": "https://files.pythonhosted.org/packages/85/84/47db1fd83442508e7b6aea532a3f3832d405095308483277e3a47a819d88/TreeCorr-3.0.2.tar.gz" } ], "3.1.0": [ { "comment_text": "", "digests": { "md5": "31f5abc7385a44d0c8e27b999b3d7d96", "sha256": "0f104f1a70fb0cb43b3184442bff26c09a70ac80a65a1063420ae73fee2dbe49" }, "downloads": -1, "filename": "TreeCorr-3.1.0.tar.gz", "has_sig": false, "md5_digest": "31f5abc7385a44d0c8e27b999b3d7d96", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90387, "upload_time": "2014-08-30T03:13:26", "url": "https://files.pythonhosted.org/packages/93/16/c185043fbd511bed828af7b67425892f7fc6cf057d239be8ce366fcba7b2/TreeCorr-3.1.0.tar.gz" } ], "3.1.1": [ { "comment_text": "", "digests": { "md5": "55b37ccf565afbaf304131336f1ffbab", "sha256": "dd02daedd39f3b9942ea98781567545d89253181ff88117555c850b4942419b9" }, "downloads": -1, "filename": "TreeCorr-3.1.1.tar.gz", "has_sig": false, "md5_digest": "55b37ccf565afbaf304131336f1ffbab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90439, "upload_time": "2015-03-18T23:37:22", "url": "https://files.pythonhosted.org/packages/68/97/dd7c2d9edbb6844dfe9770293de1e1a7a5e78e62debfca3a6ed13d051fe8/TreeCorr-3.1.1.tar.gz" } ], "3.1.2": [ { "comment_text": "", "digests": { "md5": "209df900b38b97d8e2c0a16600028ccf", "sha256": "99973bf96c2bc1ca06ba271d054cae610cd3b8602f03a6264318de10f5c8720a" }, "downloads": -1, "filename": "TreeCorr-3.1.2.tar.gz", "has_sig": false, "md5_digest": "209df900b38b97d8e2c0a16600028ccf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 91107, "upload_time": "2015-09-26T23:12:02", "url": "https://files.pythonhosted.org/packages/eb/08/09f55771900c2bb25eda85df836ca6c166dfb040f4af6e2590640dded026/TreeCorr-3.1.2.tar.gz" } ], "3.2.0": [ { "comment_text": "", "digests": { "md5": "c29c2e9348647ad0c65ed42fe918c8fa", "sha256": "86fa7385d7d6a4b69ade64362d13a2034a702fd7c448c5d2282bb0d8a39e288d" }, "downloads": -1, "filename": "TreeCorr-3.2.0.zip", "has_sig": false, "md5_digest": "c29c2e9348647ad0c65ed42fe918c8fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 230693, "upload_time": "2015-10-01T22:07:36", "url": "https://files.pythonhosted.org/packages/74/e1/54e4976f29c406f1e9be323b6e91fdde0ef9b6132c963e3015bd43b01f5e/TreeCorr-3.2.0.zip" } ], "3.2.1": [ { "comment_text": "", "digests": { "md5": "2050deb34ebb20856e3113efec3e2b10", "sha256": "73cd7830caef98dd0b3611db727e2f232772480f2873ad3418d37b810c692a31" }, "downloads": -1, "filename": "TreeCorr-3.2.1.tar.gz", "has_sig": false, "md5_digest": "2050deb34ebb20856e3113efec3e2b10", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 162849, "upload_time": "2015-10-10T12:57:39", "url": "https://files.pythonhosted.org/packages/e0/79/afc928f1be56a1d156898970497abe7b2a9706e4f57a59f08305ea42a427/TreeCorr-3.2.1.tar.gz" } ], "3.2.2": [ { "comment_text": "", "digests": { "md5": "856caa0b988f557053b82c98ea6c9730", "sha256": "de64c2dd868f988d034abe7ba7cf8437e3297cb9cf19f67f1f15865351f99e22" }, "downloads": -1, "filename": "TreeCorr-3.2.2.tar.gz", "has_sig": false, "md5_digest": "856caa0b988f557053b82c98ea6c9730", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 163027, "upload_time": "2015-10-21T14:39:50", "url": "https://files.pythonhosted.org/packages/81/cc/3ef171b96c1a587e462a6bc2c832c677db61a8c9f5857e978408f3009ded/TreeCorr-3.2.2.tar.gz" } ], "3.2.3": [ { "comment_text": "", "digests": { "md5": "976b041625145eb299dc145f232e68ef", "sha256": "710256142f9d29a6d077381ae028c06436ea4ab5cf61519377019bbb9fee7312" }, "downloads": -1, "filename": "TreeCorr-3.2.3.tar.gz", "has_sig": false, "md5_digest": "976b041625145eb299dc145f232e68ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 163066, "upload_time": "2015-11-06T17:58:16", "url": "https://files.pythonhosted.org/packages/81/a2/8f9340809d9a20f21dc96846b5c847aeeeaab2a18331279051a4a57f2f4f/TreeCorr-3.2.3.tar.gz" } ], "3.3.0": [ { "comment_text": "", "digests": { "md5": "2f56d41dc42454c6a1c98a6e98b7baa1", "sha256": "a2e2c6b5528ffcc0db7b4c2c1df2d283af21da69ddb190fa74e184cc58d6be51" }, "downloads": -1, "filename": "TreeCorr-3.3.0.tar.gz", "has_sig": false, "md5_digest": "2f56d41dc42454c6a1c98a6e98b7baa1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 179475, "upload_time": "2016-06-13T20:04:26", "url": "https://files.pythonhosted.org/packages/f0/bc/e7392ba32ac9a140babf0c28717b719ab08271ed7b614359cf6d2dfd0acb/TreeCorr-3.3.0.tar.gz" } ], "3.3.1": [ { "comment_text": "", "digests": { "md5": "3c3619b701650b030932ee205854508e", "sha256": "3399876b824dc14d20d102c4693f6f040ea7bcf418e29691598f3574d8731fbc" }, "downloads": -1, "filename": "TreeCorr-3.3.1.tar.gz", "has_sig": false, "md5_digest": "3c3619b701650b030932ee205854508e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 179747, "upload_time": "2016-06-17T16:29:21", "url": "https://files.pythonhosted.org/packages/41/8a/64be9a0b09c3fa5b9270e500206c77555458d352ad1cc1fb01a351cdbeed/TreeCorr-3.3.1.tar.gz" } ], "3.3.10": [ { "comment_text": "", "digests": { "md5": "7b4c46798d6a49c2795a00d6778e58fd", "sha256": "d5821dcb55393d8c24acf7e2844f9f3c168c3aedecbc68d0c4cf7c6a4805a92d" }, "downloads": -1, "filename": "TreeCorr-3.3.10.tar.gz", "has_sig": false, "md5_digest": "7b4c46798d6a49c2795a00d6778e58fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 429077, "upload_time": "2018-10-01T22:31:08", "url": "https://files.pythonhosted.org/packages/50/a6/f6945db6b3b98ce914fd91fb97ce08d748cc15cefdd5394e5b321d9a716b/TreeCorr-3.3.10.tar.gz" } ], "3.3.11": [ { "comment_text": "", "digests": { "md5": "7abc118834648e3d0019214390569ff8", "sha256": "e0acf0283fa3f5677061358621f6ae0fd7cc6bda8bfced1343256dd4f127b366" }, "downloads": -1, "filename": "TreeCorr-3.3.11.tar.gz", "has_sig": false, "md5_digest": "7abc118834648e3d0019214390569ff8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1086802, "upload_time": "2018-10-15T17:01:13", "url": "https://files.pythonhosted.org/packages/b1/17/8b1cb2c860a0de50254b49cf63629b2841392a1bb0ddb2dbb2a9dbb12cd8/TreeCorr-3.3.11.tar.gz" } ], "3.3.2": [ { "comment_text": "", "digests": { "md5": "d2965a6b34797a09c74154b934ee5577", "sha256": "847f6b8716e32c2bc38ec53794694cb19dbb6feeff6180d2f1f4f39d9783929c" }, "downloads": -1, "filename": "TreeCorr-3.3.2.tar.gz", "has_sig": false, "md5_digest": "d2965a6b34797a09c74154b934ee5577", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 425030, "upload_time": "2016-06-24T18:56:48", "url": "https://files.pythonhosted.org/packages/47/3c/674dffa1774c73afea99c318d6bb7ef9fe570de2cda4d48b6594c2513562/TreeCorr-3.3.2.tar.gz" } ], "3.3.3": [ { "comment_text": "", "digests": { "md5": "86395334be4b2ecbaaf1cecffeb72f98", "sha256": "05f898572eeec0ebff1a1c38ba235613d838a86b51823613c54076b3cc7f2405" }, "downloads": -1, "filename": "TreeCorr-3.3.3.tar.gz", "has_sig": false, "md5_digest": "86395334be4b2ecbaaf1cecffeb72f98", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 425231, "upload_time": "2016-06-25T18:32:27", "url": "https://files.pythonhosted.org/packages/00/2a/6f0f58b3971076fc369452a413542e1e32b9b27744dd1cb49c75c9808e07/TreeCorr-3.3.3.tar.gz" } ], "3.3.4": [ { "comment_text": "", "digests": { "md5": "24f82c5d50ce7c6d70b9a9a9b5c8e95d", "sha256": "45293fe8205c46a8f066f4ee10f7cbe202c1fbcf84ce99dd73fd3f54ecaa9896" }, "downloads": -1, "filename": "TreeCorr-3.3.4.tar.gz", "has_sig": false, "md5_digest": "24f82c5d50ce7c6d70b9a9a9b5c8e95d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 425276, "upload_time": "2016-08-03T17:58:12", "url": "https://files.pythonhosted.org/packages/3e/aa/0cde5ad021805947c3c68436e4db1cacddd63377b17857fa6f4b1135fb73/TreeCorr-3.3.4.tar.gz" } ], "3.3.5": [ { "comment_text": "", "digests": { "md5": "9d76b8a77b3fd36670b67d220d5a0d79", "sha256": "963f918e7dd4f45500429404065292df8b29e025db5469f74f2573c3e2611f30" }, "downloads": -1, "filename": "TreeCorr-3.3.5.tar.gz", "has_sig": false, "md5_digest": "9d76b8a77b3fd36670b67d220d5a0d79", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 425661, "upload_time": "2016-10-03T19:06:45", "url": "https://files.pythonhosted.org/packages/fb/3b/a5b95f83cdab40fd75c618354a5de5ee8c9b747c3e4d3cc18751f5678e0e/TreeCorr-3.3.5.tar.gz" } ], "3.3.6": [ { "comment_text": "", "digests": { "md5": "f2b59f81b273f7215945ba5216d92584", "sha256": "67f75c64baca55400d463b275c1ad65708b366f7f20a907b64e4fa25e26c0ae2" }, "downloads": -1, "filename": "TreeCorr-3.3.6.tar.gz", "has_sig": false, "md5_digest": "f2b59f81b273f7215945ba5216d92584", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 426370, "upload_time": "2016-11-28T02:53:52", "url": "https://files.pythonhosted.org/packages/6f/d7/7e39ee4b48ab3385c169bcfc8aaf6aaea62c5093f585b1d3022971512ac4/TreeCorr-3.3.6.tar.gz" } ], "3.3.7": [ { "comment_text": "", "digests": { "md5": "54bdf201d7e8a52b5fa9ea5e1ff1d101", "sha256": "bcd4c6b3525ba4843451121cfc0f08ed19e0b6284bad8ba6bc54a119304238ea" }, "downloads": -1, "filename": "TreeCorr-3.3.7.tar.gz", "has_sig": false, "md5_digest": "54bdf201d7e8a52b5fa9ea5e1ff1d101", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 428204, "upload_time": "2017-04-12T20:45:33", "url": "https://files.pythonhosted.org/packages/5a/59/466fca95804e60a4ad0cf34de70e92fd57e6a711d09fbf1f0f8d00f833de/TreeCorr-3.3.7.tar.gz" } ], "3.3.8": [ { "comment_text": "", "digests": { "md5": "79fb85aa2dcc2e3bf1fca7895491b0d6", "sha256": "ab7e237fc7d132932215a9d5d43e54495ed78598a13486083cae60926841aa72" }, "downloads": -1, "filename": "TreeCorr-3.3.8.tar.gz", "has_sig": false, "md5_digest": "79fb85aa2dcc2e3bf1fca7895491b0d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 429166, "upload_time": "2018-10-01T21:17:34", "url": "https://files.pythonhosted.org/packages/9b/39/0deb36f8608c27e253fefc5dfd5b0357540a3fc25d8644dca9083f099e41/TreeCorr-3.3.8.tar.gz" } ], "3.3.9": [ { "comment_text": "", "digests": { "md5": "5baa10e18316bfa85a94aa3155925486", "sha256": "c1d0c2e63a9b09edfd8a31f931ccf3a131df8e385501607acde04c5f178cc434" }, "downloads": -1, "filename": "TreeCorr-3.3.9.tar.gz", "has_sig": false, "md5_digest": "5baa10e18316bfa85a94aa3155925486", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 429197, "upload_time": "2018-10-01T21:26:50", "url": "https://files.pythonhosted.org/packages/0f/ac/30118682cccf1acb46140bf83a872d2e6519bcddca1df2ba9ba4173d6ba4/TreeCorr-3.3.9.tar.gz" } ], "4.0.0": [ { "comment_text": "", "digests": { "md5": "1e132fd7684db89c23a895a16510ce96", "sha256": "de9a198badb70c37f995c9fe21a07d57a41b3a9e3a22bd38023bba61ed070353" }, "downloads": -1, "filename": "TreeCorr-4.0.0.tar.gz", "has_sig": false, "md5_digest": "1e132fd7684db89c23a895a16510ce96", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1256348, "upload_time": "2019-04-12T04:47:40", "url": "https://files.pythonhosted.org/packages/c8/62/4f3628673ef8a1a22d7b17b06ad7e9cb3df2d24fbfa187bdfbdb8d85f453/TreeCorr-4.0.0.tar.gz" } ], "4.0.1": [ { "comment_text": "", "digests": { "md5": "8b5e1fde089d636d909093c6d197ec57", "sha256": "d71ad0f08ac4706ecc6d746e2d8fdf3cc589d7023b78bac3a6aeaa33b4a64754" }, "downloads": -1, "filename": "TreeCorr-4.0.1.tar.gz", "has_sig": false, "md5_digest": "8b5e1fde089d636d909093c6d197ec57", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1256435, "upload_time": "2019-04-12T18:10:03", "url": "https://files.pythonhosted.org/packages/58/41/3ff4313457a38ff69b9f155b44a9fa76e89c724d550acb2d14fbbde363f7/TreeCorr-4.0.1.tar.gz" } ], "4.0.2": [ { "comment_text": "", "digests": { "md5": "2950e4198773850b9a535ff90370d008", "sha256": "3332f51e178a1ae6b6e32900d89623eab573df2c7c2df4c719a280302822839d" }, "downloads": -1, "filename": "TreeCorr-4.0.2.tar.gz", "has_sig": false, "md5_digest": "2950e4198773850b9a535ff90370d008", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1390435, "upload_time": "2019-06-02T19:18:13", "url": "https://files.pythonhosted.org/packages/89/de/7b39b50ae6f4560f465419612ce7b169bed6d887adb6c2e1f384ca9bb698/TreeCorr-4.0.2.tar.gz" } ], "4.0.3": [ { "comment_text": "", "digests": { "md5": "f4fe998a042065b79224468fa0e6cdbd", "sha256": "051618858552c3eef53c851f1e7d1d9b285e52e615c03f363c44576a41bd2686" }, "downloads": -1, "filename": "TreeCorr-4.0.3.tar.gz", "has_sig": false, "md5_digest": "f4fe998a042065b79224468fa0e6cdbd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1390709, "upload_time": "2019-06-06T01:17:52", "url": "https://files.pythonhosted.org/packages/3b/6d/a93807f56f71795e9123e7b7097a1b68b92b3613df288eec7f8c89254f5a/TreeCorr-4.0.3.tar.gz" } ], "4.0.4": [ { "comment_text": "", "digests": { "md5": "0bedfb085aead375b32fb342b2d603db", "sha256": "a02206c46f85efb9908aac7d221c2e612e65f91adbb0a3dc7270b9f7bab61da7" }, "downloads": -1, "filename": "TreeCorr-4.0.4.tar.gz", "has_sig": false, "md5_digest": "0bedfb085aead375b32fb342b2d603db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1391379, "upload_time": "2019-06-06T18:19:10", "url": "https://files.pythonhosted.org/packages/06/72/0b86c778e815a0611a7fc7bd5239d17ed346d9f382b8733f6cab1b38a06e/TreeCorr-4.0.4.tar.gz" } ], "4.0.5": [ { "comment_text": "", "digests": { "md5": "8634bfeb4abf451201d0980da30eaa0e", "sha256": "989e97b8eed4b4a779b4dd16191615f4ef8fa5e45eac03288a96a411310e5df6" }, "downloads": -1, "filename": "TreeCorr-4.0.5.tar.gz", "has_sig": false, "md5_digest": "8634bfeb4abf451201d0980da30eaa0e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1391814, "upload_time": "2019-07-13T05:28:28", "url": "https://files.pythonhosted.org/packages/47/0b/f4a9c7e1b7b96c246c8ab5556c1c2c1f96cdf0de4512bd8bbd43ea186c31/TreeCorr-4.0.5.tar.gz" } ], "4.0.6": [ { "comment_text": "", "digests": { "md5": "9fbdad1e2a7030faad8ab09b456e777d", "sha256": "bb1e06f4c1612afd8038137e3a5ded5da5eef2252577009afba2c8bea321ebe0" }, "downloads": -1, "filename": "TreeCorr-4.0.6.tar.gz", "has_sig": false, "md5_digest": "9fbdad1e2a7030faad8ab09b456e777d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1392266, "upload_time": "2019-07-30T12:27:56", "url": "https://files.pythonhosted.org/packages/66/3f/1e600a8df6f640f43048a10323d5d6adad7ac100718dcfed9fe7a5d224cf/TreeCorr-4.0.6.tar.gz" } ], "4.0.7": [ { "comment_text": "", "digests": { "md5": "8705035cd1fceee7490b5bf24b416c50", "sha256": "e5464eab759163360c205200ebc4dc0ef5e0a868dd551993009bc2220d51ff7a" }, "downloads": -1, "filename": "TreeCorr-4.0.7.tar.gz", "has_sig": false, "md5_digest": "8705035cd1fceee7490b5bf24b416c50", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1370927, "upload_time": "2019-08-27T21:33:16", "url": "https://files.pythonhosted.org/packages/76/7d/c2289071c26114223d5541c93dd4fb32f8f3b2dbe1eb4a4e5682f882aba5/TreeCorr-4.0.7.tar.gz" } ], "4.0.8": [ { "comment_text": "", "digests": { "md5": "08fbc3cd66896ad2f7d6150233ce6da9", "sha256": "28083dfc442d9a33146be816d7ea3de4f35409e0848bea8e4ebfc536fa55b91a" }, "downloads": -1, "filename": "TreeCorr-4.0.8.tar.gz", "has_sig": false, "md5_digest": "08fbc3cd66896ad2f7d6150233ce6da9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1392972, "upload_time": "2019-08-28T13:20:48", "url": "https://files.pythonhosted.org/packages/b1/1f/6940f05e3ee7b529631c9982dc42e3361d0cf850f7eefe0e7ed741f3d8cc/TreeCorr-4.0.8.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "08fbc3cd66896ad2f7d6150233ce6da9", "sha256": "28083dfc442d9a33146be816d7ea3de4f35409e0848bea8e4ebfc536fa55b91a" }, "downloads": -1, "filename": "TreeCorr-4.0.8.tar.gz", "has_sig": false, "md5_digest": "08fbc3cd66896ad2f7d6150233ce6da9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1392972, "upload_time": "2019-08-28T13:20:48", "url": "https://files.pythonhosted.org/packages/b1/1f/6940f05e3ee7b529631c9982dc42e3361d0cf850f7eefe0e7ed741f3d8cc/TreeCorr-4.0.8.tar.gz" } ] }