{ "info": { "author": "Elijah Wilson", "author_email": "elijah@elijahwilson.me", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Topic :: Software Development :: Libraries" ], "description": "PersistIQ Python API Wrapper\n============================\n\n`API docs `__\n\nInstallation\n------------\n\nGit\n~~~\n\n``pip install git+git://github.com:tizz98/persistiq.git@master``\n\nPyPi\n~~~~\n\n*Coming soon*\n\nUsage\n-----\n\nSetup\n~~~~~\n\n- Add ``PERSIST_IQ_API_KEY='xxxxxxxx'`` to your environment variables\n\n - bash: ``echo export PERSIST_IQ_API_KEY='xxxxxxxx' >> ~/.bashrc``\n - zsh: ``echo export PERSIST_IQ_API_KEY='xxxxxxxx' >> ~/.zshrc``\n - windows: ???\n\n- Open up a new terminal or:\n\n - bash: ``. ~/.bashrc``\n - zsh: ``. ~/.zshrc``\n - windows: ???\n\nResources\n~~~~~~~~~\n\nUser\n^^^^\n\n.. code:: python\n\n from persistiq import User\n\n for user in User.list():\n print user.id, user.name\n\nLead\n^^^^\n\n.. code:: python\n\n from persistiq import Lead\n\n # NOTE:\n # Leads will automatically be paginated\n # to only get the first 100 without pagination set:\n # >>> Lead.paginate = False\n\n for lead in Lead.list():\n print lead.id, lead.data\n\nCampaign\n^^^^^^^^\n\n.. code:: python\n\n from persistiq import Campaign\n\n # NOTE:\n # Campaigns will automatically be paginated\n # to only get the first 100 without pagination set:\n # >>> Campaign.paginate = False\n\n for campaign in Campaign.list():\n print campaign.id, campaign.name", "description_content_type": null, "docs_url": null, "download_url": "https://github.com/tizz98/persistiq/tarball/0.0.2", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/tizz98/persistiq", "keywords": "persistiq api", "license": "MIT", "maintainer": null, "maintainer_email": null, "name": "persistiq", "package_url": "https://pypi.org/project/persistiq/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/persistiq/", "project_urls": { "Download": "https://github.com/tizz98/persistiq/tarball/0.0.2", "Homepage": "https://github.com/tizz98/persistiq" }, "release_url": "https://pypi.org/project/persistiq/0.0.2/", "requires_dist": null, "requires_python": null, "summary": "A simple python wrapper for the PersistIQ API", "version": "0.0.2" }, "last_serial": 2668017, "releases": { "0.0.2": [] }, "urls": [] }