Create runtime folders, files, and code notes. All stored in notepads environment.
Reason this release was yanked:
Deprecated
Project description
notepads - PyPi
notepads: V5.7.1
Installing
# Linux/macOS
python3 pip install -U notepads
# Windows
py -3 -m pip install -U notepads
Create runtime only directory [1] -> Make folders [2] -> Make files [3] -> Make notes for code
========================================
Directory Example Layout:
Directory["/notepads/"]
🗀 examples
↳ 🗎 example.py
🗎 main.py
========================================
Create note:
notepads.note(name='notename', content='notecontent', author='OPTIONAL_noteauthor')
Find note
notepads.get_note(name='notename')
# or
notepads.notes()[<index>]
========================================
Create folder:
notepads.folder(name='foldername', version='OPTIONAL_0.0.0', description='OPTIONAL_a test folder', author='OPTIONAL_test author'))
# name, *, version=None, description=None, author=None
Find folder:
notepads.get(name='foldername')
Update folder:
folder.update(name='newfoldername', version='0.0.1', description='a new test folder', author='test author')
Delete folder:
folder.delete()
========================================
Create file:
notepads.file(name='filename', description='OPTIONAL_a test file', author='OPTIONAL_test author', parent='OPTIONAL_folder name')
# name, *, version=None, description=None, author=None, parent: NotepadsFolder=None
Find file:
notepads.get(name='filename')
Update file:
file.update(name='newfilename', description='a new test file', author='test author)
Load file:
file.load()
Write file:
file.write(content='newfilecontent')
Delete file:
file.delete()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
notepads-5.7.1.tar.gz
(812.0 kB
view hashes)
Built Distribution
notepads-5.7.1-py3-none-any.whl
(13.9 kB
view hashes)