{ "info": { "author": "Jeremy Gillick", "author_email": "none@none.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Environment :: No Input/Output (Daemon)", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: MacOS :: MacOS X", "Operating System :: POSIX", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Topic :: Office/Business :: Financial" ], "description": "Lending Club Auto Investing Tool\n================================\n\nA program that watches your LendingClub account and automatically invests cash as it becomes available based on your personalized investment preferences.\n\n\nDisclaimer\n==========\n\nI have tested this tool to the best of my ability, but understand that it may have bugs. Use at your own risk!\n\n\nWhy?\n====\n\nI built this tool to solve the common annoyance when investing money in\nLendingClub. When not all the loans get funded, it becomes a two steps\nforward, one step back process of reinvesting the cash every few days\nuntil it's all invested. For large sums of money this process can take\nover a month to complete.\n\n\nHow it works\n============\n\nWhen running, it will monitor your account for available cash. If the available cash meets or exceeds a minimum amount you define, it's all automatically invested into a collection of loans that match the criteria that you have set (average interest rates, rate grades, term length, etc.). See the *Options* section for information on these settings.\n\nTo put it simply, the tool does the same thing as if you were to:\n\n* Log into your account\n* Click Invest and select any filters you want to use\n* Select an average interest rate portfolio you want to invest in\n* Now click Continue and to through the following two pages to invest in that portfolio.\n\n\nSource\n======\n\nFind the latest version on github: https://github.com/jgillick/LendingClubAutoInvestor\n\nFeel free to fork and contribute!\n\nRequirements\n============\n\nPython\n------\nPython 2.6 and 2.7 (does **NOT** support Python 3.x)\n\nModules\n-------\n* `lendingclub `_ 0.1.7+\n* `argparse `_\n* `pyyaml `_\n* `pause `_\n* `keyring `_\n\nThese will automatically be installed when using pip.\n\nOptional Modules\n----------------\n* python-daemon\n\nIf this is installed, lcinvestor can be run as a background deamon processes (not supported on windows).\n\n\nInstall (OSX, Linux, Posix)\n===========================\n\nThe easiest way to install is with pip::\n\n sudo pip install lcinvestor\n\nOr manually (assuming all required modules are installed on your system)::\n\n sudo python ./setup.py install\n\n\nInstructions for Windows\n========================\n\n1) Make sure you have Python 2.7 and pip installed\n * http://www.anthonydebarros.com/2011/10/15/setting-up-python-in-windows-7/\n2) Open the command prompt: Start Menu > Accessories > Command Prompt\n3) Run the following command:: ``pip install lcinvestor``\n\n\nRunning lcinvestor\n==================\n\nForeground\n----------\n\nTo start the tool in the foreground, open a command line terminal and enter::\n\n lcinvestor\n\nThe script will run continuously and print all the output to the screen until you exit with CTRL+C.\n\nBackground Daemon\n------------------\n**(This is not supported by Windows)**\n\nTo run it as a background daemon::\n\n lcinvestor start\n\nAll output will be sent to ``/var/log/daemon.log``.\n\nTo stop the daemon run::\n\n lcinvestor stop\n\n\nWith a JSON config file\n-----------------------\n\nYou can pass a JSON config file that has your investment criteria and bypass most of the prompts::\n\n lcinvestor --config ./investing.json\n\n*(See the 'Saved Filters' section below, for how to use existing Lending Club saved searches).*\n\nHere's an example config file (NOTE: Comments are usually not allowed in JSON and are here purely for explanation)::\n\n {\n // The minimum amount of cash you want to invest each round (at least 25)\n \"min_cash\": 1000,\n\n // The minimum average interest rate portfolio that you will accept\n \"min_percent\": 16.5,\n\n // The maximum average interest rate portfolio that you will accept\n \"max_percent\": 19,\n\n // The most you want to invest in each loan note (must be at least $25)\n \"max_per_note\": 25,\n\n // The named portfolio to put all new investments in\n // (only alphanumeric, spaces , _ - # and . are allowed)\n \"portfolio\": \"Autoinvested\",\n\n // Saved filter ID (from LendingClub.com)\n // NOTE: If set, this will override everything in the 'filters' hash, below\n //\"filter_id\": 123456,\n\n // Advanced filters\n \"filters\": {\n\n // Exclude loans you're already invested in\n \"exclude_existing\": true,\n\n // A loan note must be at least this percent funded\n \"funding_progress\": 90,\n\n // Include 60 month term loans\n \"term60month\": true,\n\n // Include 36 month term loans\n \"term36month\": true,\n\n // Loan grades\n \"grades\": {\n // Allow any loan grade\n \"All\": true,\n\n // Or select which loan grades you will accept, A - G\n \"A\": false,\n \"B\": false,\n \"C\": false,\n \"D\": false,\n \"E\": false,\n \"F\": false,\n \"G\": false\n }\n }\n }\n\nTo bypass ALL prompting\n-----------------------\nYou can also pass the command your email and password to bypass all prompts and have it start running right away::\n\n lcinvestor --config=./investing.json --email=you@email.com --pass=mysecret --quiet\n\nTo run it as a daemon, add `start` to the command::\n\n lcinvestor start --config=./investing.json --email=you@email.com --pass=mysecret --quiet\n\nHelp and Usage\n--------------\n\nTo see the usage info, type ``lcinvestor --help``::\n\n lcinvestor --help\n\n usage: lcinvestor [options] [start/stop/status]\n\n A program that watches your LendingClub account and automatically invests cash\n as it becomes available based on your personalized investment preferences.\n\n Daemon Commands:\n start/stop/status Start or stop the this as a background task (daemon).\n Use status to see the current daemon status\n\n Options:\n -h, --help show this help message and exit\n --email EMAIL The email used to login to LendingClub\n --pass pass Your LendingClub password.\n --secure Use your system's secure password storage to retrieve\n password\n -c CONFIG_FILE, --config CONFIG_FILE\n A JSON file with the investment settings you want to\n use.\n -q, --quiet Don't show a confirmation prompt with your investment\n --no-auto-execute Do not execute orders. Merely stage the order and then\n you can manually complete it on the LendingClub site.\n --version Print the lcinvestor version number\n --run-once Try to invest and then end the program. (Best used\n with --config, --email and --pass flags)\n -v, --verbose Verbose output\n\nInvestment Prompts\n===================\n\nWhen you run the tool, it will take you though a series of prompts to define how to invest your cash.\n\nEmail / Password\n----------------\n\nThis is the email and password you use to sign into LendingClub. Your password will be kept in memory but *never* saved to file.\n\nMinimum cash\n------------\n\nWhen the auto investor runs it will attempt to invest **ALL** available cash in your account into a investment portfolio. This option tells the tool how much money should be in the account before investing. i.e. What is the *minimum* amount of cash you want to invest at a time. For example, $25 can only be invested in a single loan note, whereas $1000 could be invested across up to 40 notes.\n\nMin/Max Percent interest rate\n-----------------------------\n\nWhen the minimum available cash option is met, the auto investor will query the LendingClub API and get a list of possible investment portfolios available at that moment. To pick the appropriate one for you, it needs to know what the minimum and maximum *AVERAGE* interest rate value you will accept. The investment option closest to the maximum value will be chosen and all your available cash will be submitted to it.\n\nThis value relates to finding a investment portfolio using the slider on the `Invest page `_ on LendingClub.com. It's not possible, at any given time, to define an absolute interest rate value, so we need to know the range that you will accept.\n\n**Note** This does *NOT* filter out individual notes based on interest rate. It defines the average interest across all notes. Use the Advanced Filters to filter out notes by loan grade.\n\nMax per note\n------------\n\nThis is the most you want to invest in any one note (at least $25). The actual amount invested in each loan will vary, but not go above this amount.\n\nNamed portfolio\n---------------\n\nYou can choose to have all new investments assigned to a named portfolio. You can either choose an existing portfolio or create a new one.\n\nAdvanced Filters\n----------------\n\nThe advanced filters section brings in a few of the filters from the `Invest page `_ on LendingClub, such as:\n\n* Filter by loan grade (A - G)\n* Exclude loans you're already invested in\n* Include loans by their funding progress\n* Filter by term length (36 - 60 months)\n\nSaved Filters\n-------------\nYou can used any of your saved filters on Lending Club in the tool, instead of defining them manually. This will give you finer control over what you're investing in and provide search options not supported in the lcinvestor tool.\n\nGo to LendingClub.com, click Browse Notes and define your search filters there. When you're done click 'Save' and give it a name. Now run `lcinvestor` and when it asks you \"Would you like to select one of your saved filters...\", enter `Y` and choose your filter from the list.\n\nFinal Review\n------------\n\nAfter all the options are set, you will be given a review screen to verify those values. If you approve, type ``Y + `` to start the program. It will now check your account every 30 minutes to see if there is enough available cash in your account to invest.\n\n\nTips and Tricks\n===============\n\nRunning at a specific time\n--------------------------\nWhat if you want to invest at an exact time? For example, you want to setup the program to run when that Lending Club releases new loans.\n\nYou can do this by scheduling a task on your system to call the tool command with the `--run-once` flag (along with the `--email`, `--pass`, `--config` and `--quiet` flags). This will run the program immediately and then end. **NOTE** Forgetting to use the `--run-once` flag will cause the program to continue running in the background and can cause big problems.\n\nExample of the command to call::\n\n lcinvestor --config=./investing.json --email=you@email.com --pass=mysecret --quiet --run-once\n\nUsing system keyring service to avoid exposing password\n-------------------------------------------------------\n\nIf you prefer to use your system's keychain instead of passing ``--pass`` argument, you can use ``--secure``.\n\nOn Mac OS X, in order to use this option, set up a new Keychain Item with Name \"LendingClub\" and Account Name \"LendingClubAutoInvestor\" (`example `_)\n\nRefer to `this list `_ for a list of supported services\n\nHow to schedule a command or task\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nOn OS X or Linux you'll use `crontab `_.\n\nOn Windows you'll setup a `Task Scheduler `_ or the `at command `_\n\nHelp out\n========\n\nPlease help me by forking and committing enhancements!\n\n\nLicense\n=======\nThe MIT License (MIT)\n\nCopyright (c) 2013 Jeremy Gillick\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/jgillick/LendingClubAutoInvestor", "keywords": "lendingclub investing daemon", "license": "The MIT License (MIT)\n\nCopyright (c) 2013 Jeremy Gillick\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.", "maintainer": null, "maintainer_email": null, "name": "lcinvestor", "package_url": "https://pypi.org/project/lcinvestor/", "platform": "osx,posix,linux,windows", "project_url": "https://pypi.org/project/lcinvestor/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/jgillick/LendingClubAutoInvestor" }, "release_url": "https://pypi.org/project/lcinvestor/v2.2.5/", "requires_dist": null, "requires_python": null, "summary": "A simple tool that will watch your LendingClub account and automatically invest cash as it becomes available.", "version": "v2.2.5" }, "last_serial": 2072132, "releases": { "1.0": [ { "comment_text": "", "digests": { "md5": "95d0c69bdbee39e1e66e3febf2fe1656", "sha256": "061253328ae68031309bad63eaa0c349ebfe618a6d54e4ed9120c01c349f060b" }, "downloads": -1, "filename": "lcinvestor-1.0.tar.gz", "has_sig": false, "md5_digest": "95d0c69bdbee39e1e66e3febf2fe1656", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16656, "upload_time": "2013-04-29T21:28:52", "url": "https://files.pythonhosted.org/packages/d2/12/901404193a8af7d24da8dae4ce1f07f39c84da03972b17da4d07537b8511/lcinvestor-1.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "5c4f99f23ea20fde12c4698e7662805a", "sha256": "8e54360bf3067afb8be1add14f74bca024ed3f337060d08dedd0f0a76a6cba6b" }, "downloads": -1, "filename": "lcinvestor-1.0.1.tar.gz", "has_sig": false, "md5_digest": "5c4f99f23ea20fde12c4698e7662805a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18831, "upload_time": "2013-05-01T20:15:29", "url": "https://files.pythonhosted.org/packages/2a/c8/bc56840c8bd9fb55cda47d4a3ee3b85f7ad548169f8db059144a0b6fe34d/lcinvestor-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "3b33268fe636bb6bb047fa7c6dd055df", "sha256": "73a7c794ccdaaf02004da27ff39e08224935cfcde4a18dcf3297b51dfbe89c2a" }, "downloads": -1, "filename": "lcinvestor-1.0.2.tar.gz", "has_sig": false, "md5_digest": "3b33268fe636bb6bb047fa7c6dd055df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22285, "upload_time": "2013-05-03T21:05:47", "url": "https://files.pythonhosted.org/packages/ac/03/47d773f8f1569330c511f2d71f326955c6bd02a4699d2f0b9ae53c225e40/lcinvestor-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "2fd435de2acd2822b3c5f4658f17c025", "sha256": "9adae79991b7ccdfd9f02d0bb203236323367efef3eb0f9357478e03bc7a4bba" }, "downloads": -1, "filename": "lcinvestor-1.0.3.tar.gz", "has_sig": false, "md5_digest": "2fd435de2acd2822b3c5f4658f17c025", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22576, "upload_time": "2013-05-08T17:20:40", "url": "https://files.pythonhosted.org/packages/2f/f7/e5fb2672f41a4e7d1fdde602530f285481f5ec75085826ac3cf0e0a9baa0/lcinvestor-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "194f0236d73d29f8137bb179484a03a9", "sha256": "801f952f99440771f2760eba7f820becce238fa9e9689233215ea030a5178e17" }, "downloads": -1, "filename": "lcinvestor-1.0.4.tar.gz", "has_sig": false, "md5_digest": "194f0236d73d29f8137bb179484a03a9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23345, "upload_time": "2013-05-15T22:42:07", "url": "https://files.pythonhosted.org/packages/bf/77/3d1f657c3ce76467e9367971282e6e9c9be020b804a6ca275c285b155113/lcinvestor-1.0.4.tar.gz" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "fd59ce2965dd0c1499beaf3894f742a8", "sha256": "1eecfad9c8f0f668601fbe4972f4a340ef9aac4e2c26bb89071ec5dfc781d41e" }, "downloads": -1, "filename": "lcinvestor-1.0.5.tar.gz", "has_sig": false, "md5_digest": "fd59ce2965dd0c1499beaf3894f742a8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23571, "upload_time": "2013-05-28T19:54:23", "url": "https://files.pythonhosted.org/packages/c6/00/924811c70ab2730a4ca4a61654c71dfd15fdd7e8d10e1bc6e66c87829e14/lcinvestor-1.0.5.tar.gz" } ], "1.0.6": [ { "comment_text": "", "digests": { "md5": "2110c30cda63ea24836d84281bbe5c3e", "sha256": "047aac74c4bbb94008aac8a54d87cf6ca7b261cf90ca7994bf29b07b825348c0" }, "downloads": -1, "filename": "lcinvestor-1.0.6.tar.gz", "has_sig": false, "md5_digest": "2110c30cda63ea24836d84281bbe5c3e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23841, "upload_time": "2013-05-29T01:43:16", "url": "https://files.pythonhosted.org/packages/05/df/1af93651a1abbae7905b35c8ae66b6f0a2e36c39382502b9cda024212a9e/lcinvestor-1.0.6.tar.gz" } ], "1.0.7": [ { "comment_text": "", "digests": { "md5": "14b003ebd411cbe34141a77f957caaa0", "sha256": "314ba18ed25fab0ae9b6d9c7cb184cc6749bf4b5f4f783d32f629ab760973113" }, "downloads": -1, "filename": "lcinvestor-1.0.7.tar.gz", "has_sig": false, "md5_digest": "14b003ebd411cbe34141a77f957caaa0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23952, "upload_time": "2013-05-30T17:01:43", "url": "https://files.pythonhosted.org/packages/cc/42/380af311464f994a301ba70c06dba49ec148b27be29e9da8935cd9a59525/lcinvestor-1.0.7.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "ba11441986c137d1a79863f272cdc345", "sha256": "37f6a6d274ebff6f13c27d729bae4f6b12b192fab33c61d4cb99df138b9cfb9a" }, "downloads": -1, "filename": "lcinvestor-1.1.tar.gz", "has_sig": false, "md5_digest": "ba11441986c137d1a79863f272cdc345", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29007, "upload_time": "2013-06-04T18:01:48", "url": "https://files.pythonhosted.org/packages/02/3e/24de4ecfde056e17a5f545a4a80ab7972b65bee5ef43304f4d940cad0f45/lcinvestor-1.1.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "4c33e6ecc2851c31e35d4f46f7f897f3", "sha256": "4c5f4a8337fdf8d117f2ead6e4a1dbd1b2a6ea8952ae978518077da26cd71a57" }, "downloads": -1, "filename": "lcinvestor-1.2.tar.gz", "has_sig": false, "md5_digest": "4c33e6ecc2851c31e35d4f46f7f897f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29152, "upload_time": "2013-06-06T18:38:21", "url": "https://files.pythonhosted.org/packages/41/56/f64d2c20eae3eac5f6ca4b9d7470de67d43b304c0612fa6a45bc8be8f7e9/lcinvestor-1.2.tar.gz" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "09ba0f9c5ecbfe281babf565b2f9eea1", "sha256": "021eff9f2b85a1d06bbabc016a61641754b8abe09b2438e0c66d8048c46f4621" }, "downloads": -1, "filename": "lcinvestor-1.4.tar.gz", "has_sig": false, "md5_digest": "09ba0f9c5ecbfe281babf565b2f9eea1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30122, "upload_time": "2013-06-12T22:16:14", "url": "https://files.pythonhosted.org/packages/2d/6b/a2562dd28cffad2fb675120cec6a758843725cd2cf860b10cef6d4b9349a/lcinvestor-1.4.tar.gz" } ], "2.0": [ { "comment_text": "", "digests": { "md5": "a218206121cc02e81230ec7e29fb47d4", "sha256": "9ff0898dd787e31c4b2c47e53b6fd150b7d44709a7fee69ac44011a45137389a" }, "downloads": -1, "filename": "lcinvestor-2.0.tar.gz", "has_sig": false, "md5_digest": "a218206121cc02e81230ec7e29fb47d4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46057, "upload_time": "2013-07-24T20:11:49", "url": "https://files.pythonhosted.org/packages/cd/b4/b8d786cae16a5cee08d1943c483beb1ddd648d45a20ad9379d9b75acc7b1/lcinvestor-2.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "0aa281d0861642761389345bb597e5c2", "sha256": "a541380af94de286352336c74c41e54cd3e8761c0e149d805cdd12cce5978e0f" }, "downloads": -1, "filename": "lcinvestor-2.0.1.tar.gz", "has_sig": false, "md5_digest": "0aa281d0861642761389345bb597e5c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46145, "upload_time": "2013-07-24T22:30:58", "url": "https://files.pythonhosted.org/packages/6c/cf/09714be3eea6975fe2f061cfaaeb7bf4ef8b396b00e3426e9068c5e6c28f/lcinvestor-2.0.1.tar.gz" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "0803bdc2062a89bd64939df17e11a0cb", "sha256": "81809fe3dd4dcb6e64f130d68f0fe93195b12c4787180fabf57f254db5cc7748" }, "downloads": -1, "filename": "lcinvestor-2.0.2.tar.gz", "has_sig": false, "md5_digest": "0803bdc2062a89bd64939df17e11a0cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46241, "upload_time": "2013-07-31T08:51:42", "url": "https://files.pythonhosted.org/packages/91/6a/dafdec070f29179eddc05981e07b9732871c5ea1078a1c2d3c65318748f0/lcinvestor-2.0.2.tar.gz" } ], "2.0.3": [ { "comment_text": "", "digests": { "md5": "35e6876e0f8dc568d9d26ff9f24558e7", "sha256": "012246424b0a1fdfca8e89c37640aac58b2f07c5468bdc1e0b6d445f1eead59c" }, "downloads": -1, "filename": "lcinvestor-2.0.3.tar.gz", "has_sig": false, "md5_digest": "35e6876e0f8dc568d9d26ff9f24558e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23755, "upload_time": "2013-08-23T18:13:20", "url": "https://files.pythonhosted.org/packages/af/97/53ac04e1ce9a9fedce22a414bd29e0496f4cc2e0f2cf8c1b67d6fe1339aa/lcinvestor-2.0.3.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "a698aeee2d03fd583d9467c46223ee6a", "sha256": "f9cf7cfac901f2cf3bef3082d9cb3fea30142bb69e1367eae793bbca01d5f6a4" }, "downloads": -1, "filename": "lcinvestor-2.1.1.tar.gz", "has_sig": false, "md5_digest": "a698aeee2d03fd583d9467c46223ee6a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47018, "upload_time": "2013-08-25T16:07:29", "url": "https://files.pythonhosted.org/packages/ea/cf/142f3e9b4f8d8452093a23384e43cfe4e9498570286d448a8877ea0ccc35/lcinvestor-2.1.1.tar.gz" } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "72d20e03b1c4ec604d5704d8c21580d3", "sha256": "77e0ee05d3545481c3df07b73f8be3ca0c19d62003f3b151676f91498ade53d7" }, "downloads": -1, "filename": "lcinvestor-2.1.2.tar.gz", "has_sig": false, "md5_digest": "72d20e03b1c4ec604d5704d8c21580d3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47368, "upload_time": "2013-09-04T23:17:35", "url": "https://files.pythonhosted.org/packages/fb/a7/271846b40e67cd1588990a88b91a3ff52eefa4e85c764ba20682d5314649/lcinvestor-2.1.2.tar.gz" } ], "2.1.3": [ { "comment_text": "", "digests": { "md5": "2a5bece378df107e9cc3d15ca798d4d5", "sha256": "2af4bcddec16deba18434303e6d69f350c687d3008778d0cf7c7fa0d3bab97eb" }, "downloads": -1, "filename": "lcinvestor-2.1.3.tar.gz", "has_sig": false, "md5_digest": "2a5bece378df107e9cc3d15ca798d4d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47567, "upload_time": "2013-09-05T23:49:26", "url": "https://files.pythonhosted.org/packages/18/00/b4a6ce3a71d5976892645946cf0a24378a75e35c3b67608935ae83fd65d7/lcinvestor-2.1.3.tar.gz" } ], "2.1.4": [ { "comment_text": "", "digests": { "md5": "36beefa52e1489abf2f7afabf6f74094", "sha256": "b5d8408df09fcd6c94f1d9b230ca94bbc5f8f629aded3566e35e8a6f3736b58d" }, "downloads": -1, "filename": "lcinvestor-2.1.4.tar.gz", "has_sig": false, "md5_digest": "36beefa52e1489abf2f7afabf6f74094", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48302, "upload_time": "2013-09-06T18:52:48", "url": "https://files.pythonhosted.org/packages/c4/c2/567ac568f1fc919dd1ff4365b2f1e374a6d907accc4f4ba7c4d2338ee086/lcinvestor-2.1.4.tar.gz" } ], "2.2": [ { "comment_text": "", "digests": { "md5": "ce02903a8afb7f0a554970e32eaa7a2f", "sha256": "13722cb9e5328ff2cd8a6e436acae6c7a3da871a2270cd15007c5a7dbc933c5a" }, "downloads": -1, "filename": "lcinvestor-2.2.tar.gz", "has_sig": false, "md5_digest": "ce02903a8afb7f0a554970e32eaa7a2f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49116, "upload_time": "2014-02-24T19:31:48", "url": "https://files.pythonhosted.org/packages/43/c5/2623e6cbd82aff664bc607b2578bb0d47108b1052fc9314afd398f1b6a6f/lcinvestor-2.2.tar.gz" } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "81f9837ae9705313ea6d373e79d1cbbf", "sha256": "39640612659867aa40551af176bc416ae631b7b58f6ac84e0af3105b8f7b0c00" }, "downloads": -1, "filename": "lcinvestor-2.2.1.tar.gz", "has_sig": false, "md5_digest": "81f9837ae9705313ea6d373e79d1cbbf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49143, "upload_time": "2014-03-07T00:14:50", "url": "https://files.pythonhosted.org/packages/11/3f/318410b2d9cf8d7d745edb1d81c2762cf134d7724d7e0bc4c34180517c55/lcinvestor-2.2.1.tar.gz" } ], "2.2.1\n": [], "2.2.2": [ { "comment_text": "", "digests": { "md5": "b8c1f4e4cf48875db94864a1202b13be", "sha256": "238ca73852f4bb65d46010ef6d6d86afb17503ff7ebb73daa6f2ff2dd34bc25a" }, "downloads": -1, "filename": "lcinvestor-2.2.2.tar.gz", "has_sig": false, "md5_digest": "b8c1f4e4cf48875db94864a1202b13be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49260, "upload_time": "2014-05-02T22:05:01", "url": "https://files.pythonhosted.org/packages/cf/7a/4faa138801460b916beafc89b92434732363202d40ab2df8ef418046677e/lcinvestor-2.2.2.tar.gz" } ], "2.2.3": [ { "comment_text": "", "digests": { "md5": "59a0d8acf3e96e92d87a4fc26a72d063", "sha256": "8f7e4190854aa87face4a144a2508eac3bf66bd5c937d7c636c834b28b487dc9" }, "downloads": -1, "filename": "lcinvestor-2.2.3.tar.gz", "has_sig": false, "md5_digest": "59a0d8acf3e96e92d87a4fc26a72d063", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49296, "upload_time": "2014-06-13T15:51:08", "url": "https://files.pythonhosted.org/packages/80/06/0954f6077f76720577641d557d84ab36f42426619a19f21aca801396205f/lcinvestor-2.2.3.tar.gz" } ], "v2.2.4": [ { "comment_text": "", "digests": { "md5": "f3129de8e6b6bc7c86ccb0b5f01189ff", "sha256": "74e1ea60ff22eb870846fe330620b3a286e1157e5a0eb29448c486aa7fa21674" }, "downloads": -1, "filename": "lcinvestor-v2.2.4.tar.gz", "has_sig": false, "md5_digest": "f3129de8e6b6bc7c86ccb0b5f01189ff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24450, "upload_time": "2015-11-11T20:26:49", "url": "https://files.pythonhosted.org/packages/ac/c5/e7b172881139547d572b6af21074b5c57d839d6672c9a1b07cd156c64f4f/lcinvestor-v2.2.4.tar.gz" } ], "v2.2.5": [ { "comment_text": "", "digests": { "md5": "d239328d91ebe3b066ae2fa8640267b8", "sha256": "ce9c93a759f998b807c38364749ac2f0ce00426ec49d6f483d3cdb1365b37721" }, "downloads": -1, "filename": "lcinvestor-v2.2.5.tar.gz", "has_sig": false, "md5_digest": "d239328d91ebe3b066ae2fa8640267b8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24468, "upload_time": "2016-04-19T18:14:31", "url": "https://files.pythonhosted.org/packages/a2/70/161dd4be58fde34666b63d737ca61c597cf61cfbbe3d073f76c1f758edf9/lcinvestor-v2.2.5.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "d239328d91ebe3b066ae2fa8640267b8", "sha256": "ce9c93a759f998b807c38364749ac2f0ce00426ec49d6f483d3cdb1365b37721" }, "downloads": -1, "filename": "lcinvestor-v2.2.5.tar.gz", "has_sig": false, "md5_digest": "d239328d91ebe3b066ae2fa8640267b8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24468, "upload_time": "2016-04-19T18:14:31", "url": "https://files.pythonhosted.org/packages/a2/70/161dd4be58fde34666b63d737ca61c597cf61cfbbe3d073f76c1f758edf9/lcinvestor-v2.2.5.tar.gz" } ] }