pyfax.tools.url_helpers ======================= .. py:module:: pyfax.tools.url_helpers .. autoapi-nested-parse:: Helpers for loading data from URLs. Functions --------- .. autoapisummary:: pyfax.tools.url_helpers.load_rss pyfax.tools.url_helpers.load_json pyfax.tools.url_helpers.load_csv pyfax.tools.url_helpers.load Module Contents --------------- .. py:function:: load_rss(url) Load data from an RSS feed. :param url: The URL of the feed. .. py:function:: load_json(url, headers={}, cookies={}) Load data from a JSON feed. :param url: The URL of the feed. :param headers: Headers to send with the request. :param cookies: Cookies to send with the request. .. py:function:: load_csv(url, headers={}, cookies={}) Load data from a CSV feed. :param url: The URL of the feed. :param headers: Headers to send with the request. :param cookies: Cookies to send with the request. .. py:function:: load(url, headers={}, cookies={}) Load data from a URL. :param url: The URL. :param headers: Headers to send with the request. :param cookies: Cookies to send with the request.