New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

notion-news-crawler

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

notion-news-crawler

Notion news mecro

  • 0.0.9
  • PyPI
  • Socket score

Maintainers
1

Notion-News-Crawler

Notion News Crawler is a Python library that collects news from Notion and uploads it to a database.

News can be collected using Naver Search API, so only Naver and Notion API keys can be used by putting them in environment variables.

Table of Contents

  1. Install
  2. Supported Python Version
  3. APIs
  4. Result

Install

$ pip3 install notion-news-crawler

Supported Python version

LibrarySupported Version
Notion News Crawler3.8, 3.9, 3.10, 3.11, 3.12

Quick Start

from notion_news_crawler import NaverAPI, UploadToDataBase, ResetDatabase


if __name__=='__main__':
    reset_database = ResetDatabase()
    reset_database.delete_all_pages()

    for subject in ['Economy', 'Science', 'Society', 'Politics', 'Stock']:
        naver_api = NaverAPI(subject, 100)
        news_data = naver_api.parse_data(naver_api.get_news())

        upload_to_database = UploadToDataBase(news_data)
        upload_to_database.add_to_notion()

APIs

To use this library, Notion and Naver API are required.

Just enter the two API Key values ​​in the environment variables.

Environment parameters

You can create an environment variable .env file and use it by entering the following.

.env file format

# Notion
NOTION_TOKEN='YOUR NOTION TOKEN'
NOTION_DATABASE_ID='YOUR NOTION DATABASE ID'

# Naver
X_NAVER_CLIENT_ID='YOUR NAVER CLIENT ID'
X_NAVER_SECRET='YOUR NAVER SECRET KEY'

Notion API

The Notion API can be found at: Notion API
Enter the Notion application token value in the environment variable. Create a Notion application, register the Notion application in the database you will use, and then use it.

Naver API

You can create a Naver application and obtain the API key value.
More detail on NAVER API docs

The Naver API result values ​​are as follows, and when uploading to Notion, you can refine and use the data as you wish.

{
    "title": "article title",
    "originallink": "original news link",
    "link": "naver news link",
    "description": "article description",
    "pubDate": "published date"
}

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc