csv2notion-neo


Namecsv2notion-neo JSON
Version 1.2.4 PyPI version JSON
download
home_pagehttps://github.com/TheAcharya/csv2notion-neo
SummaryUpload & Merge CSV Data with Images to Notion Database
upload_time2024-02-12 01:35:36
maintainer
docs_urlNone
authorvzhd1701
requires_python>=3.8,<4.0
licenseMIT
keywords csv notion import merge
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <a href="https://github.com/TheAcharya/csv2notion-neo"><img src="https://github.com/TheAcharya/csv2notion-neo/blob/master/assets/CSV2Notion Neo_Icon.png?raw=true" width="200" alt="App icon" align="left"/>

<div>
<h1>CSV2Notion Neo</h1>
<!-- PyPI -->
<a href="https://pypi.python.org/pypi/csv2notion-neo">
<img src="https://img.shields.io/pypi/v/csv2notion-neo?label=version" alt="PyPI"/>
</a>
<!-- Python -->
<a href="https://pypi.org/project/csv2notion-neo/">
<img src="https://img.shields.io/pypi/pyversions/csv2notion-neo.svg" alt="Python"/>
</a>
<!-- release_github -->
<a href="https://github.com/TheAcharya/csv2notion-neo/actions/workflows/release_github.yml">
<img src="https://github.com/TheAcharya/csv2notion-neo/actions/workflows/release_github.yml/badge.svg" alt="release_github"/>
</a>
<p>
<p>An advance method to upload & merge *.csv or *.json files with images to <a href="https://notion.so/" target="_blank">Notion</a> database.

<br>
<br>
</div>

## Core Features

### Advantages over native import

- Merge CSV or JSON with the existing database, using the first column as a key to combine existing rows
- Choose column types manually instead of letting Notion detecting them automatically
- Link or create new entries in relation columns based on their values automatically
- Easily upload files into the designated "Files & Media" column
- Assign a icon for each row for quick identification
- Set a cover or embed an image for each row to enhance visual representation
- Upload image files for covers or icons
- Apply validation options for input data to ensure accuracy

### Disadvantages over native import
 
- Importing each row separately might lead to slower speed
  - To address this, utilise multithreaded upload

## Table of contents

- [Background](#background)
- [Installation](#installation)
  - [Pre-compiled Binary (Recommended)](#pre-compiled-binary-recommended)
  - [From Source](#from-source)
- [Guide](#guide)
  - [macOS Release](#macos-release)
  - [Prerequisite](#prerequisite)
  - [Upload Speed](#upload-speed)
  - [Duplicate CSV Columns](#duplicate-csv-columns)
  - [Missing Columns](#missing-columns)
  - [Column Types](#column-types)
  - [Mergin](#merging)
  - [Relation Columns](#relation-columns)
  - [Cover Image & Embedded Image](#cover-image--embedded-image)
  - [Icons](#icons)
  - [Mandatory Columns](#mandatory-columns)
- [Examples](#examples)
- [Known Issues](#known-issues)
- [Credits](#credits)
- [License](#license)
- [Reporting Bugs](#reporting-bugs)

## Background

Originally, we developed [csv2notion](https://github.com/vzhd1701/csv2notion) to address the lack of advanced importing support for `*.csv` files in [Notion](https://notion.so). We took inspiration from [Airtable](https://www.airtable.com)’s [CSV import extension](https://support.airtable.com/docs/csv-import-extension).

**CSV2Notion Neo** was created as a spin-off project to address inactivity in the original repository and maintain compatibility with Notion. As Notion changes or updates its backend API periodically, we aim to fix, update and add new features to the tool in a timely manner. Any dependent tools or project that relied on [csv2notion](https://github.com/vzhd1701/csv2notion), can use our **CSV2Notion Neo** tool interchangeably requiring additional augments.

## Installation

### Pre-compiled Binary (Recommended)

Download the latest release of the latest binary release [here](https://github.com/TheAcharya/csv2notion-neo/releases).

### With [Homebrew](https://brew.sh/) (Recommended for macOS)

```bash
$ brew install TheAcharya/homebrew-tap/csv2notion-neo
```
```bash
$ brew uninstall --cask csv2notion-neo
```

### With PIP

```bash
$ pip install --user csv2notion_neo
```

**Python 3.7 or later required.**

### From source

This project uses [poetry](https://python-poetry.org/) for dependency management and packaging. You will have to install it first. See [poetry official documentation](https://python-poetry.org/docs/) for instructions.

```shell
$ git clone https://github.com/TheAcharya/csv2notion-neo.git
$ cd csv2notion_neo/
$ poetry install --no-dev
$ poetry run csv2notion_neo
```

## Guide

```plain
$ csv2notion_neo --help
usage: csv2notion_neo [-h] --token TOKEN [--url URL] [OPTION]... FILE

https://github.com/TheAcharya/csv2notion-neo

Upload & Merge CSV or JSON Data with Images to Notion Database

positional arguments:
  FILE                               CSV or JSON file to upload

general options:
  --workspace                        active Notion workspace name
  --token                            Notion token, stored in token_v2 cookie for notion.so
  --url URL                          Notion database URL; if none is provided, will create a new database
  --max-threads                      upload threads (default: 5)
  --log FILE                         file to store program log
  --verbose                          output debug information
  --version                          show program's version number and exit
  -h, --help                         show this help message and exit

column options:
  --column-types                     comma-separated list of column types to use for non-key columns;
                                     if none is provided, types will be guessed from CSV values
                                     (can also be used with --add-missing-columns flag)
  --add-missing-columns              if columns are present in CSV but not in Notion DB, add them to Notion DB
  --rename-notion-key-column         rename the key column in the file to a different key column in Airtable
  --randomize-select-colors          randomize colors for added options in select and multi select columns

merge options:
  --merge                            merge CSV or JSON with existing Notion DB rows, first column will be used as a key
  --merge-only-column                CSV or JSON column that should be updated on merge;
                                     when provided, other columns will be ignored
                                     (use multiple times for multiple columns)
  --merge-skip-new                   skip new rows in CSV or JSON that are not already in Notion DB during merge

relations options:
  --add-missing-relations            add missing entries into linked Notion DB

page cover options:
  --image-column COLUMN              one or more CSV or JSON column that points to URL or image file that will be embedded for that row
  --image-column-keep                keep image CSV or JSON column as a Notion DB column
  --image-column-mode {cover,block}  upload image as [cover] or insert it as [block] (default: block)
  --image-caption-column             CSV or JSON column that points to text caption that will be added to the image block
                                     if --image-column-mode is set to 'block'
  --image-caption-column-keep        keep image caption CSV or JSON column as a Notion DB column

page icon options:
  --icon-column                      CSV or JSON column that points to emoji, URL or image file
                                     that will be used as page icon for that row
  --icon-column-keep                 keep icon CSV or JSON column as a Notion DB column
  --default-icon ICON                Emoji, URL or image file that will be used as page icon for every row by default

validation options:
  --mandatory-column                 CSV or JSON column that cannot be empty (use multiple times for multiple columns)
  --payload-key-column               JSON object that is the key in Notion DB;
                                     if JSON file is used, this cannot be empty
  --fail-on-relation-duplicates      fail if any linked DBs in relation columns have duplicate entries;
                                     otherwise, first entry in alphabetical order
                                     will be treated as unique when looking up relations
  --fail-on-duplicates               fail if Notion DB or CSV or JSON has duplicates in key column,
                                     useful when sanitizing before merge to avoid ambiguous mapping
  --fail-on-duplicate-csv-columns    fail if CSV or JSON has duplicate columns;
                                     otherwise last column will be used
  --fail-on-conversion-error         fail if any column type conversion error occurs;
                                     otherwise errors will be replaced with empty strings
  --fail-on-inaccessible-relations   fail if any relation column points to a Notion DB that
                                     is not accessible to the current user;
                                     otherwise those columns will be ignored
  --fail-on-missing-columns          fail if columns are present in CSV but not in Notion DB;
                                     otherwise those columns will be ignored
  --fail-on-unsettable-columns       fail if DB has columns that don't support assigning value to them;
                                     otherwise those columns will be ignored
                                     (columns with type created_by, last_edited_by, rollup or formula)
  --fail-on-wrong-status-values      fail if values for 'status' columns don't have matching option in DB;
                                     otherwise those values will be replaced with default status
```

### macOS Release

<details><summary>Privacy & Security</summary>
<p>

For macOS, you have the option of two distinct releases: one packaged within a `.zip` archive and the other in a `.pkg` format. Navigate to the `Privacy & Security` settings and set your preference to `App Store and identified developers`.

<p align="center"> <img src="https://github.com/TheAcharya/csv2notion-neo/blob/master/assets/macOS-privacy.png?raw=true"> </p>

</p>
</details>

Utilise the `CSV2Notion Neo.pkg` installer to install the command-line binary into your system. Upon completion, find the installed binary `csv2notion_neo` located within `/usr/local/bin`. To uninstall, you can utalise this terminal command.

```plain
sudo rm /usr/local/bin/csv2notion_neo
```

<p align="center"> <img src="https://github.com/TheAcharya/csv2notion-neo/blob/master/assets/macOS-installer.png?raw=true"> </p>

### Prerequisite

You must pass a single `*.csv` file for upload. The CSV file must contain at least 2 rows. The first row will be used as a header.

Optionally you can provide a URL to an existing Notion database with the `--url` option; if not provided, the tool will create a new database named after the CSV file. The URL must link to a database view, not a page.

<details><summary>Obtaining Database URL</summary>
<p>

<p align="center"> <img src="https://github.com/TheAcharya/csv2notion-neo/blob/master/assets/database_url.png?raw=true"> </p>

</p>
</details>

<details><summary>Obtaining Workspace Name</summary>
<p>

<p align="center"> <img src="https://www.notion.so/cdn-cgi/image/format=auto,width=3840,quality=100/https://images.ctfassets.net/spoqsaf9291f/36DSq2EcSv3Q9uUUnRXdMo/9f8e7900ef53569a84c8625097bcc271/Workspace_settings_-_hero.png"> </p>

1. To see your Workspace name go to `Settings & members` at the top of the left sidebar. In the window that pops up, click on the `Settings` tab.
2. If your Workspace name is `Acme Inc.`, you are required to provide `--workspace "Acme Inc."` as such.

</p>
</details>


The tool also requires you to provide a `token_v2` cookie for the Notion website through `--token` option.

1. Login to your [Notion](https://www.notion.so/login) account via a web browser.
2. Find and copy the entire `token_v2` value including `v02%3Auser_token_or_cookies%` from your Notion session.

<details><summary>Obtaining Notion Session Token (Safari)</summary>
<p>

Enable Web Inspector

- If you don’t see the Develop menu in the menu bar, choose Safari, Settings, click Advanced, then select “Show features for web developers”.
- Press `⌥ + ⌘ + i` to show Web Inspector

<p align="center"> <img src="https://github.com/TheAcharya/csv2notion-neo/blob/master/assets/notion_token_safari.gif?raw=true"> </p>

</p>
</details>

<details><summary>Obtaining Notion Session Token (Brave, Chrome or Edge)</summary>
<p>

Go to Setting, Privacy and security

<p align="center"> <img src="https://github.com/TheAcharya/csv2notion-neo/blob/master/assets/notion_token_brave.gif?raw=true"> </p>

</p>
</details>

**Important notice**. `token_v2` cookie provides complete access to your Notion account. Handle it with caution.

### Upload Speed

Due to API limitations, the upload is performed one row at a time. To speed things up, this tool uses multiple parallel threads. Use the `--max-threads` option to control how fast it will go. Try not to set it too high to avoid rate limiting by the Notion server.

### Duplicate CSV Columns

Notion does not allow the database to have multiple columns with the same name. Therefore CSV columns will be treated as unique. Only the **last** column will be used if CSV has multiple columns with the same name. If you want the program to stop if it finds duplicate columns, use the `--fail-on-duplicate-csv-columns` flag.

### Missing Columns

If a CSV file has columns absent from Notion DB, they will be ignored by default. Use the `--add-missing-columns` flag if you want the tool to add missing columns into Notion DB. Use the `--fail-on-missing-columns` flag if you want the program to stop if it finds a column mismatch.

### Column Types

By default, the tool will try to guess column types based on their content. Alternatively, you can provide a comma-separated list of column types with the `--column-types` option when creating a new database or adding new columns with the `--add-missing-columns` flag. Since the first column in Notion DB is always text, the tool will use the list to set types for the rest of the columns.

By default, new options for `select` and `multi_select` columns are added with default (gray) color. If you want the tool to randomize colors for new options, use the `--randomize-select-colors` flag.

Some column types do not support assigning value to them because the database generates their content automatically. Currently these types include `created_by`, `last_edited_by`, `rollup` and `formula`. If you want the program to stop if it finds such columns in the database, use the `--fail-on-unsettable-columns` flag.

If the tool cannot convert the column value type properly, it will replace it with an empty string. If you want to make sure all values are correctly converted, use the `--fail-on-conversion-error` flag, which will stop execution in case of a conversion error.

The table below describes available codes for `--column-types` and what values are supported by each column type:

<details><summary>Support Table</summary>
<p>

| Column Type<br />Name   | Column Type<br />Code   | Supported Values | Multiple Values<br />(Comma Separated) |
| ----------------------- | ----------------------- | ---------------- | -------------------------------------- |
| **Basic**               |                         |                  |                                        |
| Text                    | `text`                  | string           | ❌                                     |
| Number                  | `number`                | numerical        | ❌                                     |
| Select                  | `select`                | string           | ❌                                     |
| Multi-select            | `multi_select`          | string           | ✅                                     |
| Status                  | `status`                | string           | ❌                                     |
| Date                    | `date`                  | any date format  | ✅ (range)                             |
| Person                  | `person`                | username, email  | ✅                                     |
| Files & media           | `file`                  | file name, URL   | ✅                                     |
| Checkbox                | `checkbox`              | `true`, `false`  | ❌                                     |
| URL                     | `url`                   | string           | ❌                                     |
| Email                   | `email`                 | string           | ❌                                     |
| Phone                   | `phone_number`          | string           | ❌                                     |
| **Advanced**            |                         |                  |                                        |
| Formula                 | `formula`               | `---`            | `---`                                  |
| Relation                | `---`                   | key, Notion URL  | ✅                                     |
| Rollup                  | `rollup`                | `---`            | `---`                                  |
| Created time            | `created_time`          | any date format  | ❌                                     |
| Created by              | `created_by`            | `---`            | `---`                                  |
| Last edited time        | `last_edited_time`      | any date format  | ❌                                     |
| Last edited by          | `last_edited_by`        | `---`            | `---`                                  |

</p>
</details>

### Merging

By default, the tool will add rows to the existing Notion DB. To merge CSV rows with the Notion database, use the `--merge` flag. The first column of CSV and Notion DB will be used as a key to update existing rows with new values. CSV rows that didn't have a match in Notion DB will be added as new.

Since the tool treats rows as unique during merge based on the key column, it will use first found rows with a unique key. To avoid this ambiguity, you might want to validate duplicate row keys with the `--fail-on-duplicates` flag. It will check both CSV and target Notion DB before the merge.

If you want only select columns to be updated, use the `--merge-only-column` option.

If you don't want the tool to add any new rows not already present in the Notion DB during merge, use the `--merge-skip-new` flag.

### Relation Columns

Notion database has a `relation` column type, which allows you to link together entries from different databases. The tool will try to match column data with keys from a linked database.

By default, it will match with the first found row; it will add nothing if it cannot find the match. Use the `--add-missing-relations` flag if you want the tool to create new entries in the linked DB if no match is found. Use the `--fail-on-conversion-error` flag if you want the program to stop if no match is found.

You can also use Notion URLs in columns of this type, and they must belong to the linked DB. The tool will not be able to add missing entries for URLs if you use the `--add-missing-columns` flag.

Since the tool treats rows in the linked DB as unique you can prevent ambiguous matching with the `--fail-on-relation-duplicates` flag. It will check linked DB for duplicate keys and stop the executions if it finds any.

If linked DB is not accessible (linked DB is deleted or your account doesn't have access to it), columns that point to it will be ignored. If you prefer the program to stop in this case, use the `--fail-on-inaccessible-relations` flag.

### Cover Image & Embedded Image

The tool allows you to add an image to each row with the `--image-column` option. It will use one column from CSV as a data source for the image. It can be either a URL or a file name. The file name must be either an absolute path or a path relative to the CSV file. The tool will upload the file to the Notion server.

By default, the tool will embed an image inside the row page. If you want it to use the image as a page cover, then set the `--image-column-mode` option to `cover`.

Column specified with the `--image-column` option will not be treated as a regular column by default. If you want it to appear in Notion DB, use the `--image-column-keep` flag.

To add custom caption to image block uploaded with `--image-column-mode` set to `block`, use `--image-caption-column` option. To also keep the caption as a Notion DB column, use `--image-caption-column-keep` flag.

### Icons

The tool allows you to add an icon to each row with the `--icon-column` option. The behavior is the same as with `--image-column`; the only difference is that you can use URL, file name, or single emoji.

To also treat `--icon-column` as a regular column, use `--icon-column-keep` flag, similar to `--image-column-keep`.

If you want to set the same icon for each row, use the `--default-icon` option. If both `--icon-column` and `--default-icon` are present, the default icon is used if the row doesn't have anything in the icon column.

### Mandatory Columns

If you want to ensure that specific columns always have value and are not allowed to be empty, then use the `--mandatory-column` option. The program execution will stop if validation fails.

## Examples

<details><summary>Importing CSV into New Database</summary>
<p>

```shell
csv2notion_neo --workspace YOUR_WORKSPACE_NAME_HERE --token YOUR_TOKEN_HERE test.csv
```
<p align="center"> <img src="https://github.com/TheAcharya/csv2notion-neo/blob/master/assets/example_01.png?raw=true"> </p>

</p>
</details>

<details><summary>Using Custom Column Types</summary>
<p>

```shell
csv2notion_neo --workspace YOUR_WORKSPACE_NAME_HERE --token YOUR_TOKEN_HERE --column-types "number,multi_select" test.csv
```
<p align="center"> <img src="https://github.com/TheAcharya/csv2notion-neo/blob/master/assets/example_02.png?raw=true"> </p>

</p>
</details>

<details><summary>Importing CSV into Existing Database</summary>
<p>

```shell
csv2notion_neo --workspace YOUR_WORKSPACE_NAME_HERE --token YOUR_TOKEN_HERE --url NOTION_URL test.csv
```
<p align="center"> <img src="https://github.com/TheAcharya/csv2notion-neo/blob/master/assets/example_03.gif?raw=true"> </p>

</p>
</details>

<details><summary>Merging CSV with Existing Database</summary>
<p>

```shell
csv2notion_neo --workspace YOUR_WORKSPACE_NAME_HERE --token YOUR_TOKEN_HERE --url NOTION_URL --merge test.csv
```
<p align="center"> <img src="https://github.com/TheAcharya/csv2notion-neo/blob/master/assets/example_04.gif?raw=true"> </p>

</p>
</details>

<details><summary>Merging CSV with Select Columns in Existing Database</summary>
<p>

```shell
csv2notion_neo --workspace YOUR_WORKSPACE_NAME_HERE --token YOUR_ TOKEN_HERE --url NOTION URL --merge --merge-only-column "Column 2" --merge-onLy-column "Column 3" test.csv
```
<p align="center"> <img src="https://github.com/TheAcharya/csv2notion-neo/blob/master/assets/example_05.gif?raw=true"> </p>

</p>
</details>

<details><summary>Importing Rows with Images</summary>
<p>

```shell
csv2notion_neo --workspace YOUR_WORKSPACE_NAME_HERE --token YOUR_TOKEN_HERE --image-column "Image Column" test.csv
```
<p align="center"> <img src="https://github.com/TheAcharya/csv2notion-neo/blob/master/assets/example_06.gif?raw=true"> </p>

</p>
</details>

<details><summary>Importing Rows with Images (Multiple Image Column)</summary>
<p>

```shell
csv2notion_neo --workspace YOUR_WORKSPACE_NAME_HERE --token YOUR_TOKEN_HERE --image-column "Colour Image" "Black & White Image" "Map" --image-column-keep --mandatory-column "Cat ID" test.csv
```

Example CSV

```text
Cat ID,Animal Name,Location,Colour Image,Black & White Image,Map
1,Lion,Namibia,Colour/lion.jpg,Black & White/lion.jpg,Map/Namibia.jpg
2,Tiger,India,Colour/tiger.jpg,Black & White/tiger.jpg,Map/India.jpg
3,Panther,India,Colour/panther.jpg,Black & White/panther.jpg,Map/India.jpg
4,Snow Leopard,Nepal,Colour/snow_leopard.jpg,Black & White/snow_leopard.jpg,Map/Nepal.jpg
5,Cheetah,South Africa,Colour/cheetah.jpg,Black & White/cheetah.jpg,Map/South Africa.jpg
6,Puma,South America,Colour/puma.jpg,Black & White/puma.jpg,Map/South America.jpg
7,Jaguar,Brazil,Colour/jaguar.jpg,Black & White/jaguar.jpg,Map/Brazil.jpg
```

Example Folder Structure

```text
├─ Data/
│  ├─ test.csv
│  ├─ Black & White/
│  │  ├─ cheetah.jpg
│  │  ├─ jaguar.jpg
│  │  ├─ lion.jpg
│  │  ├─ panther.jpg
│  │  ├─ puma.jpg
│  │  ├─ snow_leopard.jpg
│  │  ├─ tiger.jpg
│  ├─ Colour/
│  │  ├─ cheetah.jpg
│  │  ├─ jaguar.jpg
│  │  ├─ lion.jpg
│  │  ├─ panther.jpg
│  │  ├─ puma.jpg
│  │  ├─ snow_leopard.jpg
│  │  ├─ tiger.jpg
│  ├─ Map/
│  │  ├─ Brazil.jpg
│  │  ├─ India.jpg
│  │  ├─ Namibia.jpg
│  │  ├─ Nepal.jpg
│  │  ├─ South Africa.jpg
│  │  ├─ South America.jpg
│  │  ├─ tiger.jpg
```

<p align="center"> <img src="https://github.com/TheAcharya/csv2notion-neo/blob/master/assets/example_11.gif?raw=true"> </p>

</p>
</details>

<details><summary>Importing Rows with Emoji Icons</summary>
<p>

```shell
csv2notion_neo --workspace YOUR_WORKSPACE_NAME_HERE --token YOUR_TOKEN_HERE --icon-column "Icon Column" test.csv
```
<p align="center"> <img src="https://github.com/TheAcharya/csv2notion-neo/blob/master/assets/example_07.gif?raw=true"> </p>

</p>
</details>

<details><summary>Updating Emoji Icon Only for All Rows</summary>
<p>

```shell
csv2notion_neo --workspace YOUR_WORKSPACE_NAME_HERE --token YOUR_TOKEN_HERE --url NOTION_URL --default-icon 👍 --merge --merge-only-column "Key" test.csv
```
<p align="center"> <img src="https://github.com/TheAcharya/csv2notion-neo/blob/master/assets/example_08.gif?raw=true"> </p>

</p>
</details>

<details><summary>Importing JSON into Existing Database</summary>
<p>

```shell
csv2notion_neo --workspace YOUR_WORKSPACE_NAME_HERE --token YOUR_TOKEN_HERE --url NOTION_URL --mandatory-column "Cat ID" --payload-key-column "Cat ID" --merge JSON-Demo.json
```

<p align="center"> <img src="https://github.com/TheAcharya/csv2notion-neo/blob/master/assets/example_09.gif?raw=true"> </p>

</p>
</details>

<details><summary>Importing JSON into Existing Database with a Different Key Column</summary>
<p>

```shell
csv2notion_neo --workspace YOUR_WORKSPACE_NAME_HERE --token YOUR_TOKEN_HERE --url NOTION_URL --mandatory-column "Cat ID" --payload-key-column "Cat ID" --rename-notion-key-column "Cat ID" "Anything ID" --merge JSON-Demo.json
```

<p align="center"> <img src="https://github.com/TheAcharya/csv2notion-neo/blob/master/assets/example_10.gif?raw=true"> </p>

</p>
</details>

## Known Issues

- Users would not be able to duplicate entries/records there where uploaded using **CSV2Notion Neo** in Notion.
  - **Workaround:** Simply [duplicate](https://www.notion.so/help/duplicate-delete-and-restore-content) the database directly in Notion. You would be able to duplicate your entries/records in the duplicated database.
  
## Utilised By

### [CommandPost](https://commandpost.io)

<details><summary>CommandPost's Notion Toolbox</summary>
<p>

<p align="center"> <img src="https://github.com/CommandPost/CommandPost-Website/blob/main/docs/static/toolbox-notion.png?raw=true"> </p>

</p>
</details>

## Credits

Original Idea and Workflow Architecture by [Vigneswaran Rajkumar](https://twitter.com/IAmVigneswaran)

Maintained by [Arjun Prakash](https://github.com/arjunprakash027) (1.0.0 ...)

Original Work by [Vladilen Zhdanov](https://github.com/vzhd1701)

Icon Design by [Bor Jen Goh](https://www.artstation.com/borjengoh)

## License

Licensed under the MIT license. See [LICENSE](https://github.com/TheAcharya/csv2notion-neo/blob/master/LICENSE) for details.

## Reporting Bugs

For bug reports, feature requests and other suggestions you can create [a new issue](https://github.com/TheAcharya/csv2notion-neo/issues) to discuss.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/TheAcharya/csv2notion-neo",
    "name": "csv2notion-neo",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8,<4.0",
    "maintainer_email": "",
    "keywords": "csv,notion,import,merge",
    "author": "vzhd1701",
    "author_email": "vzhd1701@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/3c/4f/b29e233ab912bb74e8c226f5e71376ac5e795f2420a9840719cc6b5f25c6/csv2notion_neo-1.2.4.tar.gz",
    "platform": null,
    "description": "<a href=\"https://github.com/TheAcharya/csv2notion-neo\"><img src=\"https://github.com/TheAcharya/csv2notion-neo/blob/master/assets/CSV2Notion Neo_Icon.png?raw=true\" width=\"200\" alt=\"App icon\" align=\"left\"/>\n\n<div>\n<h1>CSV2Notion Neo</h1>\n<!-- PyPI -->\n<a href=\"https://pypi.python.org/pypi/csv2notion-neo\">\n<img src=\"https://img.shields.io/pypi/v/csv2notion-neo?label=version\" alt=\"PyPI\"/>\n</a>\n<!-- Python -->\n<a href=\"https://pypi.org/project/csv2notion-neo/\">\n<img src=\"https://img.shields.io/pypi/pyversions/csv2notion-neo.svg\" alt=\"Python\"/>\n</a>\n<!-- release_github -->\n<a href=\"https://github.com/TheAcharya/csv2notion-neo/actions/workflows/release_github.yml\">\n<img src=\"https://github.com/TheAcharya/csv2notion-neo/actions/workflows/release_github.yml/badge.svg\" alt=\"release_github\"/>\n</a>\n<p>\n<p>An advance method to upload & merge *.csv or *.json files with images to <a href=\"https://notion.so/\" target=\"_blank\">Notion</a> database.\n\n<br>\n<br>\n</div>\n\n## Core Features\n\n### Advantages over native import\n\n- Merge CSV or JSON with the existing database, using the first column as a key to combine existing rows\n- Choose column types manually instead of letting Notion detecting them automatically\n- Link or create new entries in relation columns based on their values automatically\n- Easily upload files into the designated \"Files & Media\" column\n- Assign a icon for each row for quick identification\n- Set a cover or embed an image for each row to enhance visual representation\n- Upload image files for covers or icons\n- Apply validation options for input data to ensure accuracy\n\n### Disadvantages over native import\n \n- Importing each row separately might lead to slower speed\n  - To address this, utilise multithreaded upload\n\n## Table of contents\n\n- [Background](#background)\n- [Installation](#installation)\n  - [Pre-compiled Binary (Recommended)](#pre-compiled-binary-recommended)\n  - [From Source](#from-source)\n- [Guide](#guide)\n  - [macOS Release](#macos-release)\n  - [Prerequisite](#prerequisite)\n  - [Upload Speed](#upload-speed)\n  - [Duplicate CSV Columns](#duplicate-csv-columns)\n  - [Missing Columns](#missing-columns)\n  - [Column Types](#column-types)\n  - [Mergin](#merging)\n  - [Relation Columns](#relation-columns)\n  - [Cover Image & Embedded Image](#cover-image--embedded-image)\n  - [Icons](#icons)\n  - [Mandatory Columns](#mandatory-columns)\n- [Examples](#examples)\n- [Known Issues](#known-issues)\n- [Credits](#credits)\n- [License](#license)\n- [Reporting Bugs](#reporting-bugs)\n\n## Background\n\nOriginally, we developed [csv2notion](https://github.com/vzhd1701/csv2notion) to address the lack of advanced importing support for `*.csv` files in [Notion](https://notion.so). We took inspiration from [Airtable](https://www.airtable.com)\u2019s [CSV import extension](https://support.airtable.com/docs/csv-import-extension).\n\n**CSV2Notion Neo** was created as a spin-off project to address inactivity in the original repository and maintain compatibility with Notion. As Notion changes or updates its backend API periodically, we aim to fix, update and add new features to the tool in a timely manner. Any dependent tools or project that relied on [csv2notion](https://github.com/vzhd1701/csv2notion), can use our **CSV2Notion Neo** tool interchangeably requiring additional augments.\n\n## Installation\n\n### Pre-compiled Binary (Recommended)\n\nDownload the latest release of the latest binary release [here](https://github.com/TheAcharya/csv2notion-neo/releases).\n\n### With [Homebrew](https://brew.sh/) (Recommended for macOS)\n\n```bash\n$ brew install TheAcharya/homebrew-tap/csv2notion-neo\n```\n```bash\n$ brew uninstall --cask csv2notion-neo\n```\n\n### With PIP\n\n```bash\n$ pip install --user csv2notion_neo\n```\n\n**Python 3.7 or later required.**\n\n### From source\n\nThis project uses [poetry](https://python-poetry.org/) for dependency management and packaging. You will have to install it first. See [poetry official documentation](https://python-poetry.org/docs/) for instructions.\n\n```shell\n$ git clone https://github.com/TheAcharya/csv2notion-neo.git\n$ cd csv2notion_neo/\n$ poetry install --no-dev\n$ poetry run csv2notion_neo\n```\n\n## Guide\n\n```plain\n$ csv2notion_neo --help\nusage: csv2notion_neo [-h] --token TOKEN [--url URL] [OPTION]... FILE\n\nhttps://github.com/TheAcharya/csv2notion-neo\n\nUpload & Merge CSV or JSON Data with Images to Notion Database\n\npositional arguments:\n  FILE                               CSV or JSON file to upload\n\ngeneral options:\n  --workspace                        active Notion workspace name\n  --token                            Notion token, stored in token_v2 cookie for notion.so\n  --url URL                          Notion database URL; if none is provided, will create a new database\n  --max-threads                      upload threads (default: 5)\n  --log FILE                         file to store program log\n  --verbose                          output debug information\n  --version                          show program's version number and exit\n  -h, --help                         show this help message and exit\n\ncolumn options:\n  --column-types                     comma-separated list of column types to use for non-key columns;\n                                     if none is provided, types will be guessed from CSV values\n                                     (can also be used with --add-missing-columns flag)\n  --add-missing-columns              if columns are present in CSV but not in Notion DB, add them to Notion DB\n  --rename-notion-key-column         rename the key column in the file to a different key column in Airtable\n  --randomize-select-colors          randomize colors for added options in select and multi select columns\n\nmerge options:\n  --merge                            merge CSV or JSON with existing Notion DB rows, first column will be used as a key\n  --merge-only-column                CSV or JSON column that should be updated on merge;\n                                     when provided, other columns will be ignored\n                                     (use multiple times for multiple columns)\n  --merge-skip-new                   skip new rows in CSV or JSON that are not already in Notion DB during merge\n\nrelations options:\n  --add-missing-relations            add missing entries into linked Notion DB\n\npage cover options:\n  --image-column COLUMN              one or more CSV or JSON column that points to URL or image file that will be embedded for that row\n  --image-column-keep                keep image CSV or JSON column as a Notion DB column\n  --image-column-mode {cover,block}  upload image as [cover] or insert it as [block] (default: block)\n  --image-caption-column             CSV or JSON column that points to text caption that will be added to the image block\n                                     if --image-column-mode is set to 'block'\n  --image-caption-column-keep        keep image caption CSV or JSON column as a Notion DB column\n\npage icon options:\n  --icon-column                      CSV or JSON column that points to emoji, URL or image file\n                                     that will be used as page icon for that row\n  --icon-column-keep                 keep icon CSV or JSON column as a Notion DB column\n  --default-icon ICON                Emoji, URL or image file that will be used as page icon for every row by default\n\nvalidation options:\n  --mandatory-column                 CSV or JSON column that cannot be empty (use multiple times for multiple columns)\n  --payload-key-column               JSON object that is the key in Notion DB;\n                                     if JSON file is used, this cannot be empty\n  --fail-on-relation-duplicates      fail if any linked DBs in relation columns have duplicate entries;\n                                     otherwise, first entry in alphabetical order\n                                     will be treated as unique when looking up relations\n  --fail-on-duplicates               fail if Notion DB or CSV or JSON has duplicates in key column,\n                                     useful when sanitizing before merge to avoid ambiguous mapping\n  --fail-on-duplicate-csv-columns    fail if CSV or JSON has duplicate columns;\n                                     otherwise last column will be used\n  --fail-on-conversion-error         fail if any column type conversion error occurs;\n                                     otherwise errors will be replaced with empty strings\n  --fail-on-inaccessible-relations   fail if any relation column points to a Notion DB that\n                                     is not accessible to the current user;\n                                     otherwise those columns will be ignored\n  --fail-on-missing-columns          fail if columns are present in CSV but not in Notion DB;\n                                     otherwise those columns will be ignored\n  --fail-on-unsettable-columns       fail if DB has columns that don't support assigning value to them;\n                                     otherwise those columns will be ignored\n                                     (columns with type created_by, last_edited_by, rollup or formula)\n  --fail-on-wrong-status-values      fail if values for 'status' columns don't have matching option in DB;\n                                     otherwise those values will be replaced with default status\n```\n\n### macOS Release\n\n<details><summary>Privacy & Security</summary>\n<p>\n\nFor macOS, you have the option of two distinct releases: one packaged within a `.zip` archive and the other in a `.pkg` format. Navigate to the `Privacy & Security` settings and set your preference to `App Store and identified developers`.\n\n<p align=\"center\"> <img src=\"https://github.com/TheAcharya/csv2notion-neo/blob/master/assets/macOS-privacy.png?raw=true\"> </p>\n\n</p>\n</details>\n\nUtilise the `CSV2Notion Neo.pkg` installer to install the command-line binary into your system. Upon completion, find the installed binary `csv2notion_neo` located within `/usr/local/bin`. To uninstall, you can utalise this terminal command.\n\n```plain\nsudo rm /usr/local/bin/csv2notion_neo\n```\n\n<p align=\"center\"> <img src=\"https://github.com/TheAcharya/csv2notion-neo/blob/master/assets/macOS-installer.png?raw=true\"> </p>\n\n### Prerequisite\n\nYou must pass a single `*.csv` file for upload. The CSV file must contain at least 2 rows. The first row will be used as a header.\n\nOptionally you can provide a URL to an existing Notion database with the `--url` option; if not provided, the tool will create a new database named after the CSV file. The URL must link to a database view, not a page.\n\n<details><summary>Obtaining Database URL</summary>\n<p>\n\n<p align=\"center\"> <img src=\"https://github.com/TheAcharya/csv2notion-neo/blob/master/assets/database_url.png?raw=true\"> </p>\n\n</p>\n</details>\n\n<details><summary>Obtaining Workspace Name</summary>\n<p>\n\n<p align=\"center\"> <img src=\"https://www.notion.so/cdn-cgi/image/format=auto,width=3840,quality=100/https://images.ctfassets.net/spoqsaf9291f/36DSq2EcSv3Q9uUUnRXdMo/9f8e7900ef53569a84c8625097bcc271/Workspace_settings_-_hero.png\"> </p>\n\n1. To see your Workspace name go to `Settings & members` at the top of the left sidebar. In the window that pops up, click on the `Settings` tab.\n2. If your Workspace name is `Acme Inc.`, you are required to provide `--workspace \"Acme Inc.\"` as such.\n\n</p>\n</details>\n\n\nThe tool also requires you to provide a `token_v2` cookie for the Notion website through `--token` option.\n\n1. Login to your [Notion](https://www.notion.so/login) account via a web browser.\n2. Find and copy the entire `token_v2` value including `v02%3Auser_token_or_cookies%` from your Notion session.\n\n<details><summary>Obtaining Notion Session Token (Safari)</summary>\n<p>\n\nEnable Web Inspector\n\n- If you don\u2019t see the Develop menu in the menu bar, choose Safari, Settings, click Advanced, then select \u201cShow features for web developers\u201d.\n- Press `\u2325 + \u2318 + i` to show Web Inspector\n\n<p align=\"center\"> <img src=\"https://github.com/TheAcharya/csv2notion-neo/blob/master/assets/notion_token_safari.gif?raw=true\"> </p>\n\n</p>\n</details>\n\n<details><summary>Obtaining Notion Session Token (Brave, Chrome or Edge)</summary>\n<p>\n\nGo to Setting, Privacy and security\n\n<p align=\"center\"> <img src=\"https://github.com/TheAcharya/csv2notion-neo/blob/master/assets/notion_token_brave.gif?raw=true\"> </p>\n\n</p>\n</details>\n\n**Important notice**. `token_v2` cookie provides complete access to your Notion account. Handle it with caution.\n\n### Upload Speed\n\nDue to API limitations, the upload is performed one row at a time. To speed things up, this tool uses multiple parallel threads. Use the `--max-threads` option to control how fast it will go. Try not to set it too high to avoid rate limiting by the Notion server.\n\n### Duplicate CSV Columns\n\nNotion does not allow the database to have multiple columns with the same name. Therefore CSV columns will be treated as unique. Only the **last** column will be used if CSV has multiple columns with the same name. If you want the program to stop if it finds duplicate columns, use the `--fail-on-duplicate-csv-columns` flag.\n\n### Missing Columns\n\nIf a CSV file has columns absent from Notion DB, they will be ignored by default. Use the `--add-missing-columns` flag if you want the tool to add missing columns into Notion DB. Use the `--fail-on-missing-columns` flag if you want the program to stop if it finds a column mismatch.\n\n### Column Types\n\nBy default, the tool will try to guess column types based on their content. Alternatively, you can provide a comma-separated list of column types with the `--column-types` option when creating a new database or adding new columns with the `--add-missing-columns` flag. Since the first column in Notion DB is always text, the tool will use the list to set types for the rest of the columns.\n\nBy default, new options for `select` and `multi_select` columns are added with default (gray) color. If you want the tool to randomize colors for new options, use the `--randomize-select-colors` flag.\n\nSome column types do not support assigning value to them because the database generates their content automatically. Currently these types include `created_by`, `last_edited_by`, `rollup` and `formula`. If you want the program to stop if it finds such columns in the database, use the `--fail-on-unsettable-columns` flag.\n\nIf the tool cannot convert the column value type properly, it will replace it with an empty string. If you want to make sure all values are correctly converted, use the `--fail-on-conversion-error` flag, which will stop execution in case of a conversion error.\n\nThe table below describes available codes for `--column-types` and what values are supported by each column type:\n\n<details><summary>Support Table</summary>\n<p>\n\n| Column Type<br />Name   | Column Type<br />Code   | Supported Values | Multiple Values<br />(Comma Separated) |\n| ----------------------- | ----------------------- | ---------------- | -------------------------------------- |\n| **Basic**               |                         |                  |                                        |\n| Text                    | `text`                  | string           | \u274c                                     |\n| Number                  | `number`                | numerical        | \u274c                                     |\n| Select                  | `select`                | string           | \u274c                                     |\n| Multi-select            | `multi_select`          | string           | \u2705                                     |\n| Status                  | `status`                | string           | \u274c                                     |\n| Date                    | `date`                  | any date format  | \u2705 (range)                             |\n| Person                  | `person`                | username, email  | \u2705                                     |\n| Files & media           | `file`                  | file name, URL   | \u2705                                     |\n| Checkbox                | `checkbox`              | `true`, `false`  | \u274c                                     |\n| URL                     | `url`                   | string           | \u274c                                     |\n| Email                   | `email`                 | string           | \u274c                                     |\n| Phone                   | `phone_number`          | string           | \u274c                                     |\n| **Advanced**            |                         |                  |                                        |\n| Formula                 | `formula`               | `---`            | `---`                                  |\n| Relation                | `---`                   | key, Notion URL  | \u2705                                     |\n| Rollup                  | `rollup`                | `---`            | `---`                                  |\n| Created time            | `created_time`          | any date format  | \u274c                                     |\n| Created by              | `created_by`            | `---`            | `---`                                  |\n| Last edited time        | `last_edited_time`      | any date format  | \u274c                                     |\n| Last edited by          | `last_edited_by`        | `---`            | `---`                                  |\n\n</p>\n</details>\n\n### Merging\n\nBy default, the tool will add rows to the existing Notion DB. To merge CSV rows with the Notion database, use the `--merge` flag. The first column of CSV and Notion DB will be used as a key to update existing rows with new values. CSV rows that didn't have a match in Notion DB will be added as new.\n\nSince the tool treats rows as unique during merge based on the key column, it will use first found rows with a unique key. To avoid this ambiguity, you might want to validate duplicate row keys with the `--fail-on-duplicates` flag. It will check both CSV and target Notion DB before the merge.\n\nIf you want only select columns to be updated, use the `--merge-only-column` option.\n\nIf you don't want the tool to add any new rows not already present in the Notion DB during merge, use the `--merge-skip-new` flag.\n\n### Relation Columns\n\nNotion database has a `relation` column type, which allows you to link together entries from different databases. The tool will try to match column data with keys from a linked database.\n\nBy default, it will match with the first found row; it will add nothing if it cannot find the match. Use the `--add-missing-relations` flag if you want the tool to create new entries in the linked DB if no match is found. Use the `--fail-on-conversion-error` flag if you want the program to stop if no match is found.\n\nYou can also use Notion URLs in columns of this type, and they must belong to the linked DB. The tool will not be able to add missing entries for URLs if you use the `--add-missing-columns` flag.\n\nSince the tool treats rows in the linked DB as unique you can prevent ambiguous matching with the `--fail-on-relation-duplicates` flag. It will check linked DB for duplicate keys and stop the executions if it finds any.\n\nIf linked DB is not accessible (linked DB is deleted or your account doesn't have access to it), columns that point to it will be ignored. If you prefer the program to stop in this case, use the `--fail-on-inaccessible-relations` flag.\n\n### Cover Image & Embedded Image\n\nThe tool allows you to add an image to each row with the `--image-column` option. It will use one column from CSV as a data source for the image. It can be either a URL or a file name. The file name must be either an absolute path or a path relative to the CSV file. The tool will upload the file to the Notion server.\n\nBy default, the tool will embed an image inside the row page. If you want it to use the image as a page cover, then set the `--image-column-mode` option to `cover`.\n\nColumn specified with the `--image-column` option will not be treated as a regular column by default. If you want it to appear in Notion DB, use the `--image-column-keep` flag.\n\nTo add custom caption to image block uploaded with `--image-column-mode` set to `block`, use `--image-caption-column` option. To also keep the caption as a Notion DB column, use `--image-caption-column-keep` flag.\n\n### Icons\n\nThe tool allows you to add an icon to each row with the `--icon-column` option. The behavior is the same as with `--image-column`; the only difference is that you can use URL, file name, or single emoji.\n\nTo also treat `--icon-column` as a regular column, use `--icon-column-keep` flag, similar to `--image-column-keep`.\n\nIf you want to set the same icon for each row, use the `--default-icon` option. If both `--icon-column` and `--default-icon` are present, the default icon is used if the row doesn't have anything in the icon column.\n\n### Mandatory Columns\n\nIf you want to ensure that specific columns always have value and are not allowed to be empty, then use the `--mandatory-column` option. The program execution will stop if validation fails.\n\n## Examples\n\n<details><summary>Importing CSV into New Database</summary>\n<p>\n\n```shell\ncsv2notion_neo --workspace YOUR_WORKSPACE_NAME_HERE --token YOUR_TOKEN_HERE test.csv\n```\n<p align=\"center\"> <img src=\"https://github.com/TheAcharya/csv2notion-neo/blob/master/assets/example_01.png?raw=true\"> </p>\n\n</p>\n</details>\n\n<details><summary>Using Custom Column Types</summary>\n<p>\n\n```shell\ncsv2notion_neo --workspace YOUR_WORKSPACE_NAME_HERE --token YOUR_TOKEN_HERE --column-types \"number,multi_select\" test.csv\n```\n<p align=\"center\"> <img src=\"https://github.com/TheAcharya/csv2notion-neo/blob/master/assets/example_02.png?raw=true\"> </p>\n\n</p>\n</details>\n\n<details><summary>Importing CSV into Existing Database</summary>\n<p>\n\n```shell\ncsv2notion_neo --workspace YOUR_WORKSPACE_NAME_HERE --token YOUR_TOKEN_HERE --url NOTION_URL test.csv\n```\n<p align=\"center\"> <img src=\"https://github.com/TheAcharya/csv2notion-neo/blob/master/assets/example_03.gif?raw=true\"> </p>\n\n</p>\n</details>\n\n<details><summary>Merging CSV with Existing Database</summary>\n<p>\n\n```shell\ncsv2notion_neo --workspace YOUR_WORKSPACE_NAME_HERE --token YOUR_TOKEN_HERE --url NOTION_URL --merge test.csv\n```\n<p align=\"center\"> <img src=\"https://github.com/TheAcharya/csv2notion-neo/blob/master/assets/example_04.gif?raw=true\"> </p>\n\n</p>\n</details>\n\n<details><summary>Merging CSV with Select Columns in Existing Database</summary>\n<p>\n\n```shell\ncsv2notion_neo --workspace YOUR_WORKSPACE_NAME_HERE --token YOUR_ TOKEN_HERE --url NOTION URL --merge --merge-only-column \"Column 2\" --merge-onLy-column \"Column 3\" test.csv\n```\n<p align=\"center\"> <img src=\"https://github.com/TheAcharya/csv2notion-neo/blob/master/assets/example_05.gif?raw=true\"> </p>\n\n</p>\n</details>\n\n<details><summary>Importing Rows with Images</summary>\n<p>\n\n```shell\ncsv2notion_neo --workspace YOUR_WORKSPACE_NAME_HERE --token YOUR_TOKEN_HERE --image-column \"Image Column\" test.csv\n```\n<p align=\"center\"> <img src=\"https://github.com/TheAcharya/csv2notion-neo/blob/master/assets/example_06.gif?raw=true\"> </p>\n\n</p>\n</details>\n\n<details><summary>Importing Rows with Images (Multiple Image Column)</summary>\n<p>\n\n```shell\ncsv2notion_neo --workspace YOUR_WORKSPACE_NAME_HERE --token YOUR_TOKEN_HERE --image-column \"Colour Image\" \"Black & White Image\" \"Map\" --image-column-keep --mandatory-column \"Cat ID\" test.csv\n```\n\nExample CSV\n\n```text\nCat ID,Animal Name,Location,Colour Image,Black & White Image,Map\n1,Lion,Namibia,Colour/lion.jpg,Black & White/lion.jpg,Map/Namibia.jpg\n2,Tiger,India,Colour/tiger.jpg,Black & White/tiger.jpg,Map/India.jpg\n3,Panther,India,Colour/panther.jpg,Black & White/panther.jpg,Map/India.jpg\n4,Snow Leopard,Nepal,Colour/snow_leopard.jpg,Black & White/snow_leopard.jpg,Map/Nepal.jpg\n5,Cheetah,South Africa,Colour/cheetah.jpg,Black & White/cheetah.jpg,Map/South Africa.jpg\n6,Puma,South America,Colour/puma.jpg,Black & White/puma.jpg,Map/South America.jpg\n7,Jaguar,Brazil,Colour/jaguar.jpg,Black & White/jaguar.jpg,Map/Brazil.jpg\n```\n\nExample Folder Structure\n\n```text\n\u251c\u2500 Data/\n\u2502  \u251c\u2500 test.csv\n\u2502  \u251c\u2500 Black & White/\n\u2502  \u2502  \u251c\u2500 cheetah.jpg\n\u2502  \u2502  \u251c\u2500 jaguar.jpg\n\u2502  \u2502  \u251c\u2500 lion.jpg\n\u2502  \u2502  \u251c\u2500 panther.jpg\n\u2502  \u2502  \u251c\u2500 puma.jpg\n\u2502  \u2502  \u251c\u2500 snow_leopard.jpg\n\u2502  \u2502  \u251c\u2500 tiger.jpg\n\u2502  \u251c\u2500 Colour/\n\u2502  \u2502  \u251c\u2500 cheetah.jpg\n\u2502  \u2502  \u251c\u2500 jaguar.jpg\n\u2502  \u2502  \u251c\u2500 lion.jpg\n\u2502  \u2502  \u251c\u2500 panther.jpg\n\u2502  \u2502  \u251c\u2500 puma.jpg\n\u2502  \u2502  \u251c\u2500 snow_leopard.jpg\n\u2502  \u2502  \u251c\u2500 tiger.jpg\n\u2502  \u251c\u2500 Map/\n\u2502  \u2502  \u251c\u2500 Brazil.jpg\n\u2502  \u2502  \u251c\u2500 India.jpg\n\u2502  \u2502  \u251c\u2500 Namibia.jpg\n\u2502  \u2502  \u251c\u2500 Nepal.jpg\n\u2502  \u2502  \u251c\u2500 South Africa.jpg\n\u2502  \u2502  \u251c\u2500 South America.jpg\n\u2502  \u2502  \u251c\u2500 tiger.jpg\n```\n\n<p align=\"center\"> <img src=\"https://github.com/TheAcharya/csv2notion-neo/blob/master/assets/example_11.gif?raw=true\"> </p>\n\n</p>\n</details>\n\n<details><summary>Importing Rows with Emoji Icons</summary>\n<p>\n\n```shell\ncsv2notion_neo --workspace YOUR_WORKSPACE_NAME_HERE --token YOUR_TOKEN_HERE --icon-column \"Icon Column\" test.csv\n```\n<p align=\"center\"> <img src=\"https://github.com/TheAcharya/csv2notion-neo/blob/master/assets/example_07.gif?raw=true\"> </p>\n\n</p>\n</details>\n\n<details><summary>Updating Emoji Icon Only for All Rows</summary>\n<p>\n\n```shell\ncsv2notion_neo --workspace YOUR_WORKSPACE_NAME_HERE --token YOUR_TOKEN_HERE --url NOTION_URL --default-icon \ud83d\udc4d --merge --merge-only-column \"Key\" test.csv\n```\n<p align=\"center\"> <img src=\"https://github.com/TheAcharya/csv2notion-neo/blob/master/assets/example_08.gif?raw=true\"> </p>\n\n</p>\n</details>\n\n<details><summary>Importing JSON into Existing Database</summary>\n<p>\n\n```shell\ncsv2notion_neo --workspace YOUR_WORKSPACE_NAME_HERE --token YOUR_TOKEN_HERE --url NOTION_URL --mandatory-column \"Cat ID\" --payload-key-column \"Cat ID\" --merge JSON-Demo.json\n```\n\n<p align=\"center\"> <img src=\"https://github.com/TheAcharya/csv2notion-neo/blob/master/assets/example_09.gif?raw=true\"> </p>\n\n</p>\n</details>\n\n<details><summary>Importing JSON into Existing Database with a Different Key Column</summary>\n<p>\n\n```shell\ncsv2notion_neo --workspace YOUR_WORKSPACE_NAME_HERE --token YOUR_TOKEN_HERE --url NOTION_URL --mandatory-column \"Cat ID\" --payload-key-column \"Cat ID\" --rename-notion-key-column \"Cat ID\" \"Anything ID\" --merge JSON-Demo.json\n```\n\n<p align=\"center\"> <img src=\"https://github.com/TheAcharya/csv2notion-neo/blob/master/assets/example_10.gif?raw=true\"> </p>\n\n</p>\n</details>\n\n## Known Issues\n\n- Users would not be able to duplicate entries/records there where uploaded using **CSV2Notion Neo** in Notion.\n  - **Workaround:** Simply [duplicate](https://www.notion.so/help/duplicate-delete-and-restore-content) the database directly in Notion. You would be able to duplicate your entries/records in the duplicated database.\n  \n## Utilised By\n\n### [CommandPost](https://commandpost.io)\n\n<details><summary>CommandPost's Notion Toolbox</summary>\n<p>\n\n<p align=\"center\"> <img src=\"https://github.com/CommandPost/CommandPost-Website/blob/main/docs/static/toolbox-notion.png?raw=true\"> </p>\n\n</p>\n</details>\n\n## Credits\n\nOriginal Idea and Workflow Architecture by [Vigneswaran Rajkumar](https://twitter.com/IAmVigneswaran)\n\nMaintained by [Arjun Prakash](https://github.com/arjunprakash027) (1.0.0 ...)\n\nOriginal Work by [Vladilen Zhdanov](https://github.com/vzhd1701)\n\nIcon Design by [Bor Jen Goh](https://www.artstation.com/borjengoh)\n\n## License\n\nLicensed under the MIT license. See [LICENSE](https://github.com/TheAcharya/csv2notion-neo/blob/master/LICENSE) for details.\n\n## Reporting Bugs\n\nFor bug reports, feature requests and other suggestions you can create [a new issue](https://github.com/TheAcharya/csv2notion-neo/issues) to discuss.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Upload & Merge CSV Data with Images to Notion Database",
    "version": "1.2.4",
    "project_urls": {
        "Changelog": "https://github.com/TheAcharya/csv2notion-neo/blob/master/CHANGELOG.md",
        "Documentation": "https://github.com/TheAcharya/csv2notion-neo/blob/master/README.md",
        "Homepage": "https://github.com/TheAcharya/csv2notion-neo",
        "Repository": "https://github.com/TheAcharya/csv2notion-neo"
    },
    "split_keywords": [
        "csv",
        "notion",
        "import",
        "merge"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f85d7b4294ec5d763bed713aff7b696f6cc256771266f49199486291d6fa3bf",
                "md5": "e00338aa0a2f928b58c61a0facb54299",
                "sha256": "01d8a6da45e3f4839ad8c547637c283ae04cde4770e2f1c6243ca3dbc3c96e89"
            },
            "downloads": -1,
            "filename": "csv2notion_neo-1.2.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e00338aa0a2f928b58c61a0facb54299",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8,<4.0",
            "size": 78601,
            "upload_time": "2024-02-12T01:35:34",
            "upload_time_iso_8601": "2024-02-12T01:35:34.699703Z",
            "url": "https://files.pythonhosted.org/packages/6f/85/d7b4294ec5d763bed713aff7b696f6cc256771266f49199486291d6fa3bf/csv2notion_neo-1.2.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3c4fb29e233ab912bb74e8c226f5e71376ac5e795f2420a9840719cc6b5f25c6",
                "md5": "89b9e6d90d06de7453d07f7013bdd168",
                "sha256": "b27fb4950c58c62b8c2e86569946c189c7d7a17942b0d65b1724f5ace51949f0"
            },
            "downloads": -1,
            "filename": "csv2notion_neo-1.2.4.tar.gz",
            "has_sig": false,
            "md5_digest": "89b9e6d90d06de7453d07f7013bdd168",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8,<4.0",
            "size": 72302,
            "upload_time": "2024-02-12T01:35:36",
            "upload_time_iso_8601": "2024-02-12T01:35:36.723162Z",
            "url": "https://files.pythonhosted.org/packages/3c/4f/b29e233ab912bb74e8c226f5e71376ac5e795f2420a9840719cc6b5f25c6/csv2notion_neo-1.2.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-12 01:35:36",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "TheAcharya",
    "github_project": "csv2notion-neo",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "csv2notion-neo"
}
        
Elapsed time: 0.18099s