Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/andrewpetrochenkov/chrome-bookmarks.py
- Owner: andrewpetrochenkov
- License: unlicense
- Created: 2019-03-30T13:58:42.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-03T19:53:25.000Z (almost 4 years ago)
- Last Synced: 2024-06-15T14:44:37.883Z (5 months ago)
- Topics: chrome, python
- Language: Python
- Homepage:
- Size: 10.7 KB
- Stars: 36
- Watchers: 3
- Forks: 9
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
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_bookmarksfor folder in chrome_bookmarks.folders:
print(folder.name)
print(folder.folders)
``````python
for url in chrome_bookmarks.urls:
print(url.url, url.name)
```