diff --git a/Reddit/Reddit_Search.ipynb b/Reddit/Reddit_Search.ipynb
new file mode 100644
index 0000000000..3265cc9bae
--- /dev/null
+++ b/Reddit/Reddit_Search.ipynb
@@ -0,0 +1,727 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "id": "42fce9ae-03b7-467b-b5ba-4fd66ffc50ec",
+ "metadata": {
+ "papermill": {},
+ "tags": []
+ },
+ "source": [
+ ""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "9861bc61-3c92-41a8-8489-aba0d2196fb6",
+ "metadata": {
+ "papermill": {},
+ "tags": []
+ },
+ "source": [
+ "# Reddit - Search"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "89c7636e-14c1-45ab-8cbc-d6826f469f6d",
+ "metadata": {
+ "papermill": {},
+ "tags": []
+ },
+ "source": [
+ "**Tags:** #reddit #search #api #dev #get #python"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "1138db6c-791e-4ae3-9d34-7038d3a97482",
+ "metadata": {
+ "papermill": {},
+ "tags": []
+ },
+ "source": [
+ "**Author:** [Maxime Jublou](https://www.linkedin.com/in/maximejublou)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "5fd2e42a-b7ea-4a4e-9a8a-f44dd737117f",
+ "metadata": {
+ "papermill": {},
+ "tags": []
+ },
+ "source": [
+ "**Last update:** 2023-10-10 (Created: 2023-10-10)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "ea7651e0-9bbd-4c37-84a0-f5bcf650259e",
+ "metadata": {
+ "papermill": {},
+ "tags": []
+ },
+ "source": [
+ "**Description:** This notebook searches Reddit for posts and comments using the Reddit API. It is usefull for organizations to quickly find relevant content on Reddit."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "a45bc61b-a313-4b01-a698-30f9c16cddbd",
+ "metadata": {
+ "papermill": {},
+ "tags": []
+ },
+ "source": [
+ "**References:**\n",
+ "- [Reddit API](https://www.reddit.com/dev/api)\n",
+ "- [GET search](https://www.reddit.com/dev/api#GET_search)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "ae265cbb-ea8b-48c1-98de-6ec27b1195a1",
+ "metadata": {
+ "papermill": {},
+ "tags": []
+ },
+ "source": [
+ "## Input"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "1720a16f-9a03-4955-a120-138d615204ca",
+ "metadata": {
+ "papermill": {},
+ "tags": []
+ },
+ "source": [
+ "### Import libraries"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 20,
+ "id": "4415467d-e9bf-4d3a-82c1-b6c72f60fded",
+ "metadata": {
+ "execution": {
+ "iopub.execute_input": "2023-10-10T14:13:21.138940Z",
+ "iopub.status.busy": "2023-10-10T14:13:21.138696Z",
+ "iopub.status.idle": "2023-10-10T14:13:21.141732Z",
+ "shell.execute_reply": "2023-10-10T14:13:21.141083Z",
+ "shell.execute_reply.started": "2023-10-10T14:13:21.138916Z"
+ },
+ "papermill": {},
+ "tags": []
+ },
+ "outputs": [],
+ "source": [
+ "import requests\n",
+ "import pandas as pd\n",
+ "import pydash as _"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "cc11f4e7-1182-42bd-9948-e35f49e7b5c1",
+ "metadata": {
+ "papermill": {},
+ "tags": []
+ },
+ "source": [
+ "### Setup variables\n",
+ "- **query**: The search query\n",
+ "- **sort**: The type of sorting (relevance, hot, top, new, comments)\n",
+ "- **time**: The time period of the results (hour, day, week, month, year, all)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 3,
+ "id": "63531d1e-521a-46f1-937f-d5d74254f99d",
+ "metadata": {
+ "execution": {
+ "iopub.execute_input": "2023-10-10T14:10:34.970097Z",
+ "iopub.status.busy": "2023-10-10T14:10:34.969863Z",
+ "iopub.status.idle": "2023-10-10T14:10:34.973099Z",
+ "shell.execute_reply": "2023-10-10T14:10:34.972406Z",
+ "shell.execute_reply.started": "2023-10-10T14:10:34.970073Z"
+ },
+ "papermill": {},
+ "tags": []
+ },
+ "outputs": [],
+ "source": [
+ "query = \"data science\"\n",
+ "sort = \"relevance\"\n",
+ "time = \"all\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "3a978e62-60f9-4084-92fa-89c9f64f59aa",
+ "metadata": {
+ "papermill": {},
+ "tags": []
+ },
+ "source": [
+ "## Model"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "f92542d4-ae07-4d1f-babf-ef544cbd94be",
+ "metadata": {
+ "papermill": {},
+ "tags": []
+ },
+ "source": [
+ "### Search Reddit"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "00e5829f-517f-4684-bff5-499a538d011a",
+ "metadata": {
+ "papermill": {},
+ "tags": []
+ },
+ "source": [
+ "Long description of the function: This function searches Reddit for posts and comments using the Reddit API."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 9,
+ "id": "941efb8e-f4d9-46c8-a101-b06c20e15b44",
+ "metadata": {
+ "execution": {
+ "iopub.execute_input": "2023-10-10T14:11:19.868086Z",
+ "iopub.status.busy": "2023-10-10T14:11:19.867851Z",
+ "iopub.status.idle": "2023-10-10T14:11:20.683324Z",
+ "shell.execute_reply": "2023-10-10T14:11:20.682638Z",
+ "shell.execute_reply.started": "2023-10-10T14:11:19.868060Z"
+ },
+ "papermill": {},
+ "tags": []
+ },
+ "outputs": [],
+ "source": [
+ "url = \"https://www.reddit.com/search.json\"\n",
+ "params = {\"q\": query, \"sort\": sort, \"t\": time}\n",
+ "response = requests.get(url, params=params)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "da53ec13-094b-41c8-9917-35d0f0ccd8df",
+ "metadata": {
+ "papermill": {},
+ "tags": []
+ },
+ "source": [
+ "## Output"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "f15c8b96-7ed7-48f2-85b9-f438fae9dc29",
+ "metadata": {
+ "papermill": {},
+ "tags": []
+ },
+ "source": [
+ "### Display result"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 11,
+ "id": "d8052e5f-22c9-4043-985f-ddc80b08d081",
+ "metadata": {
+ "execution": {
+ "iopub.execute_input": "2023-10-10T14:11:26.008694Z",
+ "iopub.status.busy": "2023-10-10T14:11:26.007426Z",
+ "iopub.status.idle": "2023-10-10T14:11:26.013652Z",
+ "shell.execute_reply": "2023-10-10T14:11:26.013028Z",
+ "shell.execute_reply.started": "2023-10-10T14:11:26.008657Z"
+ },
+ "papermill": {},
+ "tags": []
+ },
+ "outputs": [],
+ "source": [
+ "r = response.json()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "b2226f4d-6c96-497f-8310-ca6f87b84e5b",
+ "metadata": {},
+ "source": [
+ "### Extract meaningful data and sorting by most successful content"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 37,
+ "id": "3f94eff6-4b20-4d93-aed9-57a3ab1903bd",
+ "metadata": {
+ "execution": {
+ "iopub.execute_input": "2023-10-10T14:26:18.225302Z",
+ "iopub.status.busy": "2023-10-10T14:26:18.225069Z",
+ "iopub.status.idle": "2023-10-10T14:26:18.247667Z",
+ "shell.execute_reply": "2023-10-10T14:26:18.247059Z",
+ "shell.execute_reply.started": "2023-10-10T14:26:18.225279Z"
+ },
+ "tags": []
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
\n", + " | subreddit | \n", + "subreddit_name_prefixed | \n", + "title | \n", + "selftext | \n", + "url | \n", + "downs | \n", + "ups | \n", + "
---|---|---|---|---|---|---|---|
13 | \n", + "dataisbeautiful | \n", + "r/dataisbeautiful | \n", + "[OC] The debate drinking game, according to da... | \n", + "\n", + " | https://i.redd.it/xiocduiq6nu51.png | \n", + "0 | \n", + "41728 | \n", + "
15 | \n", + "ProgrammerHumor | \n", + "r/ProgrammerHumor | \n", + "This almost feels like a test (for data scienc... | \n", + "\n", + " | https://i.redd.it/3atursqpf9ha1.jpg | \n", + "0 | \n", + "2852 | \n", + "
11 | \n", + "TheLastAirbender | \n", + "r/TheLastAirbender | \n", + "Data Science Project: Relevant Words for ATLA ... | \n", + "I scraped the transcripts of all 61 episodes o... | \n", + "https://www.reddit.com/gallery/13x7o5t | \n", + "0 | \n", + "2430 | \n", + "
12 | \n", + "datascience | \n", + "r/datascience | \n", + "Data Science in 2022 | \n", + "\n", + " | https://i.imgur.com/60Vnj0X.png | \n", + "0 | \n", + "2339 | \n", + "
18 | \n", + "soccercirclejerk | \n", + "r/soccercirclejerk | \n", + "Data science is his passion | \n", + "\n", + " | https://i.redd.it/ece14yb76n7b1.png | \n", + "0 | \n", + "1529 | \n", + "
22 | \n", + "ChoosingBeggars | \n", + "r/ChoosingBeggars | \n", + "Data science internship ad | \n", + "\n", + " | https://www.reddit.com/gallery/ta0j5u | \n", + "0 | \n", + "1459 | \n", + "
17 | \n", + "196 | \n", + "r/196 | \n", + "Data science nightmare rule | \n", + "\n", + " | https://i.redd.it/2izpy2bb9grb1.jpg | \n", + "0 | \n", + "1230 | \n", + "
6 | \n", + "datascience | \n", + "r/datascience | \n", + "hot take: forget data science, we need more an... | \n", + "People are obsessed with pursuing data science... | \n", + "https://www.reddit.com/r/datascience/comments/... | \n", + "0 | \n", + "1131 | \n", + "
19 | \n", + "datascience | \n", + "r/datascience | \n", + "Describe Data Science in Three Words | \n", + "\n", + " | https://i.redd.it/3r36uflzp3b91.jpg | \n", + "0 | \n", + "1051 | \n", + "
10 | \n", + "datascience | \n", + "r/datascience | \n", + "LLMs hype has killed data science | \n", + "That's it.\\n\\nAt my work in a huge company alm... | \n", + "https://www.reddit.com/r/datascience/comments/... | \n", + "0 | \n", + "834 | \n", + "
21 | \n", + "datascience | \n", + "r/datascience | \n", + "Data Science Salary Progression | \n", + "\n", + " | https://i.redd.it/zdysrc2jttw81.jpg | \n", + "0 | \n", + "649 | \n", + "
14 | \n", + "datascience | \n", + "r/datascience | \n", + "[AMA] I'm a data science manager in FAANG | \n", + "I've worked at 3 different FAANGs as a data sc... | \n", + "https://www.reddit.com/r/datascience/comments/... | \n", + "0 | \n", + "583 | \n", + "
24 | \n", + "datascience | \n", + "r/datascience | \n", + "Whats Your Data Science Hot Take? | \n", + "Mastering excel is necessary for 99% of data s... | \n", + "https://www.reddit.com/r/datascience/comments/... | \n", + "0 | \n", + "571 | \n", + "
23 | \n", + "datascience | \n", + "r/datascience | \n", + "The Data Science Trap | \n", + "It is no longer open to question that data sci... | \n", + "https://www.reddit.com/r/datascience/comments/... | \n", + "0 | \n", + "526 | \n", + "
4 | \n", + "cscareerquestions | \n", + "r/cscareerquestions | \n", + "Data Science feels like a dead end. Any opinions? | \n", + "Hi all,\\n\\nObviously a throwaway account. To a... | \n", + "https://www.reddit.com/r/cscareerquestions/com... | \n", + "0 | \n", + "390 | \n", + "
0 | \n", + "datascience | \n", + "r/datascience | \n", + "What are the brutal truths about working in Da... | \n", + "What are the brutal truths about working in Da... | \n", + "https://www.reddit.com/r/datascience/comments/... | \n", + "0 | \n", + "372 | \n", + "
7 | \n", + "datascience | \n", + "r/datascience | \n", + "Is data science a bad career long-term? | \n", + "I work closely with professional engineers (el... | \n", + "https://www.reddit.com/r/datascience/comments/... | \n", + "0 | \n", + "259 | \n", + "
16 | \n", + "datascience | \n", + "r/datascience | \n", + "Is data science/data engineering over saturated? | \n", + "On LinkedIn I always see 100+ applicants for e... | \n", + "https://www.reddit.com/r/datascience/comments/... | \n", + "0 | \n", + "216 | \n", + "
20 | \n", + "datascience | \n", + "r/datascience | \n", + "Unpopular Opinion: you don't need a passion in... | \n", + "Obviously don't walk into interviews telling y... | \n", + "https://www.reddit.com/r/datascience/comments/... | \n", + "0 | \n", + "208 | \n", + "
5 | \n", + "developersIndia | \n", + "r/developersIndia | \n", + "Is \"data science\" a bubble about to burst? | \n", + "I spoke to an experienced guy in the IT sector... | \n", + "https://www.reddit.com/r/developersIndia/comme... | \n", + "0 | \n", + "172 | \n", + "
2 | \n", + "phcareers | \n", + "r/phcareers | \n", + "Failed Data Analyst/Data Science Shifter | \n", + "I thought I'd share my personal journey with y... | \n", + "https://www.reddit.com/r/phcareers/comments/16... | \n", + "0 | \n", + "149 | \n", + "
3 | \n", + "datascience | \n", + "r/datascience | \n", + "Is data science oversaturated now? | Job Market | \n", + "Whenever I've scrolled through Linkdin, I'm se... | \n", + "https://www.reddit.com/r/datascience/comments/... | \n", + "0 | \n", + "105 | \n", + "
9 | \n", + "datascience | \n", + "r/datascience | \n", + "Do you like being a data scientist? | \n", + "I have the option to study two different cours... | \n", + "https://www.reddit.com/r/datascience/comments/... | \n", + "0 | \n", + "72 | \n", + "
8 | \n", + "cscareerquestions | \n", + "r/cscareerquestions | \n", + "Should I stop studying web development and mov... | \n", + "Yesterday I had a talk with a senior in this i... | \n", + "https://www.reddit.com/r/cscareerquestions/com... | \n", + "0 | \n", + "4 | \n", + "
1 | \n", + "datascience | \n", + "r/datascience | \n", + "Is data science still worth it in 2023 | \n", + "Hello\\nI have a degree in physics and I want t... | \n", + "https://www.reddit.com/r/datascience/comments/... | \n", + "0 | \n", + "2 | \n", + "