├── README.md ├── app.py ├── models ├── __pycache__ │ └── note.cpython-313.pyc └── note.py ├── notes.json ├── requirements.txt ├── services ├── __pycache__ │ └── note_service.cpython-313.pyc └── note_service.py ├── tests └── test_notes.py └── utils ├── __pycache__ └── file_handler.cpython-313.pyc └── file_handler.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuradIsazade777/NoteNest/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuradIsazade777/NoteNest/HEAD/app.py -------------------------------------------------------------------------------- /models/__pycache__/note.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuradIsazade777/NoteNest/HEAD/models/__pycache__/note.cpython-313.pyc -------------------------------------------------------------------------------- /models/note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuradIsazade777/NoteNest/HEAD/models/note.py -------------------------------------------------------------------------------- /notes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuradIsazade777/NoteNest/HEAD/notes.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==2.3.2 2 | -------------------------------------------------------------------------------- /services/__pycache__/note_service.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuradIsazade777/NoteNest/HEAD/services/__pycache__/note_service.cpython-313.pyc -------------------------------------------------------------------------------- /services/note_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuradIsazade777/NoteNest/HEAD/services/note_service.py -------------------------------------------------------------------------------- /tests/test_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuradIsazade777/NoteNest/HEAD/tests/test_notes.py -------------------------------------------------------------------------------- /utils/__pycache__/file_handler.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuradIsazade777/NoteNest/HEAD/utils/__pycache__/file_handler.cpython-313.pyc -------------------------------------------------------------------------------- /utils/file_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuradIsazade777/NoteNest/HEAD/utils/file_handler.py --------------------------------------------------------------------------------