Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/chris-santiago/bookmarks_clustering

Using text recognition and unsupervised learning to cluster web bookmarks
https://github.com/chris-santiago/bookmarks_clustering

Last synced: 10 days ago
JSON representation

Using text recognition and unsupervised learning to cluster web bookmarks

Awesome Lists containing this project

README

        

## Files
|Filename|Contents|Container|
|--------|--------|--------------|
|bookmarks.p|Pickled list of bookmark titles and URLs|Bookmark|
|bookmarks_data.json|List of bookmark titles, URLs and content|Dictionary|
|bookmarks_data.p|Pickled list of bookmark titles, URLs and content|Dictionary|
|bookmarks_df.p|Pickled dataframe of bookmark titles, URLs and content|DataFrame|
|websites.p|Pickled list of bookmark titles, URLs and content|Website|

## Collections

```python
Bookmark = namedtuple('Bookmark', ['title', 'url'])
Website = namedtuple('Website', ['title', 'url', 'content'])
```