Files
OpenBB/website/content/sdk/reference/keys/reddit.md
DidierRLopes 4ad995fdd0 Docs/terminalpro and improvement (#5622)
* add first iteration of content for Terminal Pro

* Update index.md

* Update dashboards.md

* Update folders.md

* Update grouping.md

* Update report.md

* Update templates.md

* Update quick-start.md

* Update index.md

* Update index.md

* Update home.md

* Update news.md

* Update index.md

* Update index.md

* Update index.md

* Update data-provider.md

* Update chat-with-widget.md

* Update data-manipulation.md

* Update forecasting.md

* fix: images self closing tags

* fix: only pro visitors can see pro

* inter font

* improve SEO content and restructuring

* add new package for toggle on tutorials

* move folder around

* improve main page of each prod

* small updates and improvements

* fix logo above

* small improvement in headtitle for portfolio funcs

* fix typos from OpenAI's GPT-4

* fix _category_ json

* remove generic SEO words

* add script that generates SEO for documentation

* add missing file

* remove sdk warning message

* fix links for andrew

---------

Co-authored-by: jose-donato <zmcdonato@gmail.com>
Co-authored-by: jose-donato <43375532+jose-donato@users.noreply.github.com>
Co-authored-by: andrewkenreich <andrew.kenreich@gmail.com>
2023-10-30 21:01:29 +00:00

2.1 KiB
Vendored

title, description, keywords
title description keywords
reddit The documentation page provides information on how to set Reddit API keys using openbb_terminal's Python SDK. It lays out detailed procedures to establish Reddit's client id and client secret for authentication. The page also explains defaults and optional parameters including user credentials and options for API key persistence.
Reddit API
openbb keys
Reddit client id
Reddit client secret
Reddit authentication
openbb_terminal
Python SDK
API setting
API key
User credentials
Jupyter notebook
Environment variables
Status string

import HeadTitle from '@site/src/components/General/HeadTitle.tsx';

Set Reddit key

Source Code: [link]

openbb.keys.reddit(client_id: str, client_secret: str, password: str, username: str, useragent: str, persist: bool = False, show_output: bool = False)

Parameters

Name Type Description Default Optional
client_id str Client ID None False
client_secret str Client secret None False
password str User password None False
username str User username None False
useragent str User useragent None False
persist bool If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
If True, api key change will be global, i.e. it will affect terminal environment variables.
By default, False.
False True
show_output bool Display status string or not. By default, False. False True

Returns

Type Description
str Status of key set

Examples

from openbb_terminal.sdk import openbb
openbb.keys.reddit(
client_id="example_id",
        client_secret="example_secret",
        password="example_password",
        username="example_username",
        useragent="example_useragent"
    )