Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/andrewpetrochenkov/chrome-bookmarks.py

:link: Google Chrome bookmarks helper
https://github.com/andrewpetrochenkov/chrome-bookmarks.py

chrome python

Last synced: 4 days ago
JSON representation

:link: Google Chrome bookmarks helper

Awesome Lists containing this project

README

        

[![](https://img.shields.io/pypi/v/chrome-bookmarks.svg?maxAge=3600)](https://pypi.org/project/chrome-bookmarks/)
[![](https://img.shields.io/badge/License-Unlicense-blue.svg?longCache=True)](https://unlicense.org/)
[![](https://github.com/andrewp-as-is/chrome-bookmarks.py/workflows/tests42/badge.svg)](https://github.com/andrewp-as-is/chrome-bookmarks.py/actions)

### Installation
```bash
$ [sudo] pip install chrome-bookmarks
```

#### Features
OS|path
-|-
`Linux`|`~/.config/google-chrome/Default/Bookmarks`
`macOS`|`~/Library/Application Support/Google/Chrome/Default/Bookmarks`
`Windows`|`~\AppData\Local\Google\Chrome\User Data\Default\Bookmarks`

#### Examples
```python
import chrome_bookmarks

for folder in chrome_bookmarks.folders:
print(folder.name)
print(folder.folders)
```

```python
for url in chrome_bookmarks.urls:
print(url.url, url.name)
```


readme42.com