{"id":24792748,"url":"https://github.com/misaghmomenib/notebook-python","last_synced_at":"2026-05-17T19:32:06.652Z","repository":{"id":267218399,"uuid":"900570073","full_name":"MisaghMomeniB/Notebook-Python","owner":"MisaghMomeniB","description":"A Python-based Interactive Notebook Designed for Data Analysis, Experimentation, and Documentation. Ideal for Running Python Code, Visualizing Data, and Creating Detailed Reports in an Organized and Easy-to-use Environment.","archived":false,"fork":false,"pushed_at":"2025-06-13T19:47:13.000Z","size":59173,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-31T03:40:46.781Z","etag":null,"topics":["git","notebook-python","open-source","python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MisaghMomeniB.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-12-09T04:04:57.000Z","updated_at":"2025-06-13T19:47:22.000Z","dependencies_parsed_at":"2025-04-15T19:48:34.745Z","dependency_job_id":"02e00fd3-6fcf-4af0-a8c9-314370847053","html_url":"https://github.com/MisaghMomeniB/Notebook-Python","commit_stats":null,"previous_names":["misaghmomenib/notebook-python"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MisaghMomeniB/Notebook-Python","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MisaghMomeniB%2FNotebook-Python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MisaghMomeniB%2FNotebook-Python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MisaghMomeniB%2FNotebook-Python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MisaghMomeniB%2FNotebook-Python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MisaghMomeniB","download_url":"https://codeload.github.com/MisaghMomeniB/Notebook-Python/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MisaghMomeniB%2FNotebook-Python/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33151720,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-17T09:28:26.183Z","status":"ssl_error","status_checked_at":"2026-05-17T09:27:52.702Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["git","notebook-python","open-source","python"],"created_at":"2025-01-29T20:54:48.577Z","updated_at":"2026-05-17T19:32:06.637Z","avatar_url":"https://github.com/MisaghMomeniB.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 📝 Notebook (Python)\n\nA modular Python **notebook application** enabling users to write, organize, and manage plain-text notes or code snippets. Ideal for lightweight journaling, quick references, or code snippet storage—all accessible via a simple CLI or script.\n\n---\n\n## 📋 Table of Contents\n\n1. [Overview](#overview)  \n2. [Features](#features)  \n3. [Requirements](#requirements)  \n4. [Installation](#installation)  \n5. [Usage](#usage)  \n6. [Code Structure](#code-structure)  \n7. [Enhancement Opportunities](#enhancement-opportunities)  \n8. [Contributing](#contributing)  \n9. [License](#license)\n\n---\n\n## 💡 Overview\n\nThis project offers a clean Python-based notebook-style tool for organizing notes and code snippets in text files. With CLI commands for creating, editing, and searching notes, it’s perfect for developers, students, or anyone tracking ideas and code.\n\n---\n\n## ✅ Features\n\n- 🆕 **Create new notes** with titles and tags  \n- 📝 **Append or edit** existing notes  \n- 🔍 **Search notes** by keywords, tags, or dates  \n- 📂 **List all notes** with title and timestamp  \n- 💾 **Organized storage** in a structured folder (e.g., `notes/2025-06-`)\n\n---\n\n## 🧾 Requirements\n\n- Python **3.7+**  \n- Uses only the **standard library** (`argparse`, `os`, `datetime`, `re`)\n\n---\n\n## ⚙️ Installation\n\n```bash\ngit clone https://github.com/MisaghMomeniB/Notebook-Python.git\ncd Notebook-Python\n````\n\n---\n\n## 🚀 Usage\n\nRun commands via the script:\n\n```bash\n# Create a new note\npython notebook.py new --title \"Project Ideas\" --tags python,automation\n\n# Append to an existing note\npython notebook.py edit --title \"Project Ideas\"\n\n# Search notes for keywords or tags\npython notebook.py search --query automation\n\n# List all notes\npython notebook.py list\n```\n\nTip: use your `$EDITOR` (e.g., Vim, Nano, VSCode) for editing when prompted.\n\n---\n\n## 📁 Code Structure\n\n```\nNotebook-Python/\n├── notebook.py         # Main CLI entry \u0026 command handling\n├── notes/              # Folder to store note .txt files\n│   └── YYYY-MM-DD_Title_tags.txt\n└── README.md           # This file\n```\n\n* The `notebook.py` script:\n\n  * Uses `argparse` for subcommands: `new`, `edit`, `list`, `search`\n  * Manages text files with metadata in filenames or file headers\n  * Leverages `re` and `datetime` for searching and ordering\n\n---\n\n## 💡 Enhancement Opportunities\n\n* 🔐 Add optional **encryption or password protection**\n* 🎨 Build a **web or GUI interface** using Flask or Tkinter\n* 📁 Support **Markdown preview or export** (HTML/PDF)\n* 🧠 Introduce **tag-based filtering**, metadata JSON index, or search indexing\n* 🧩 Add **note versioning** or backups\n\n---\n\n## 🤝 Contributing\n\nGot ideas or improvements? Contributions are welcome!\n\n1. Fork the repo\n2. Create a feature branch (`feature/...`)\n3. Add tests and document your changes\n4. Submit a Pull Request with clear descriptions\n\n---\n\n## 📄 License\n\nDistributed under the **MIT License**. See `LICENSE` for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmisaghmomenib%2Fnotebook-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmisaghmomenib%2Fnotebook-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmisaghmomenib%2Fnotebook-python/lists"}