Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Automate creating daily, weekly, monthly, and quarterly manual repetitive documents:
export CONFLUENCE_URL=https://xxx.atlassian.net
export CONFLUENCE_USERNAME=<yourname>@domain.com
export CONFLUENCE_PASSWORD=<TOKEN>
export NOTION_INTEGRATION_TOKEN=xxx
Please do not forget to share the target database/page with your integration
pip install autonote
Create a template page.
Prepare Python script.
from autonote.notion import NotionClient
client = NotionClient()
kwargs = {
"Date": {"start": "2023-02-04", "end": "2023-02-10"},
"replace_rules": [
{
"block_types": ["heading_1"], # target blocks to apply replacement
"replace_str": "YYYY/MM/DD", # replacement string match
"replace_type": "datetime", # currently only support "datetime"
"date_format": "%Y/%m/%d", # used to parse `start_date` and generate string from datetime when interpolating
"start_date": "2023/02/04", # start date
"increment": True, # if true, increment 1 day every time replacement is executed
},
],
}
client.create_page_from_template(
template_id="a7cc4f73460c4b9fa82be8d4ed74d8ca",
title="weekly note",
override=True,
**kwargs
)
Run the script.
pip install autonote
python main.py
Generated page:
For more examples, please check examples.
autonote
was created with cookiecutter
and the py-pkgs-cookiecutter
template.
autonote
was created by Masato Naka. It is licensed under the terms of the MIT license.
FAQs
Automate taking notes
We found that autonote demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.