https://github.com/benature/flomo
flomoapp.com API (third party)
https://github.com/benature/flomo
api app flomo flomo-workflow github-stars python
Last synced: about 1 year ago
JSON representation
flomoapp.com API (third party)
- Host: GitHub
- URL: https://github.com/benature/flomo
- Owner: Benature
- License: mit
- Created: 2020-12-01T06:05:28.000Z (over 5 years ago)
- Default Branch: dev
- Last Pushed: 2024-09-17T15:34:50.000Z (over 1 year ago)
- Last Synced: 2025-03-04T10:11:25.953Z (about 1 year ago)
- Topics: api, app, flomo, flomo-workflow, github-stars, python
- Language: Python
- Homepage:
- Size: 43.9 KB
- Stars: 36
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# flomo 浮墨
[](https://pypi.org/project/flomo/)

[](https://github.com/Benature/flomo)
一个非官方的 API python 玩具盒 👀
> *prefer python3.7+*
> 欢迎 Star 🌟、Fork 🍴、Issue 💬、PR. 一起让 flomo 用的更加得心应手
最新版在 dev 分支
## Usage 使用
```shell
pip install -U flomo
```
```python
from flomo import Flomo, Parser
authorization = "Bearer xxxxxxxxxxx"
flomo = Flomo(authorization)
memos = flomo.get_all_memos()
memo = Parser(memos[-1])
print(memo.text) # memo 纯文本
print(memo.url) # memo 链接
print(memo.tags)
```
`authorization` 是用户 flomo 登录后获取的 token,可在浏览器的开发者工具中查看。
如有疑问,欢迎 issue。
## Local Install 本地安装
```shell
git clone https://github.com/Benature/flomo.git
make all
```
## Relative Project 相关项目
- workflow: [Benature/flomo workflow](https://github.com/Benature/flomo-workflow)
- npm: [geekdada/flomo api helper](https://github.com/geekdada/flomo-api-helper)
