linux-explorer 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- linux_explorer-0.0.1/PKG-INFO +86 -0
- linux_explorer-0.0.1/README.md +70 -0
- linux_explorer-0.0.1/galleryview/__init__.py +0 -0
- linux_explorer-0.0.1/galleryview/favicon.jpg +0 -0
- linux_explorer-0.0.1/galleryview/server.py +723 -0
- linux_explorer-0.0.1/galleryview/viewer.html +2367 -0
- linux_explorer-0.0.1/linux_explorer.egg-info/PKG-INFO +86 -0
- linux_explorer-0.0.1/linux_explorer.egg-info/SOURCES.txt +12 -0
- linux_explorer-0.0.1/linux_explorer.egg-info/dependency_links.txt +1 -0
- linux_explorer-0.0.1/linux_explorer.egg-info/entry_points.txt +4 -0
- linux_explorer-0.0.1/linux_explorer.egg-info/requires.txt +2 -0
- linux_explorer-0.0.1/linux_explorer.egg-info/top_level.txt +1 -0
- linux_explorer-0.0.1/pyproject.toml +39 -0
- linux_explorer-0.0.1/setup.cfg +4 -0
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: linux-explorer
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Professional enterprise file explorer for Linux with modern UI, background daemon mode, and comprehensive file operations
|
|
5
|
+
Author-email: Muhammad Ahmed <i.am.a.pakistani.programmer@gmail.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/muhammad-ahmed-ghani/linux-explorer
|
|
8
|
+
Project-URL: Repository, https://github.com/muhammad-ahmed-ghani/linux-explorer
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
12
|
+
Requires-Python: >=3.7
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
Requires-Dist: psutil
|
|
15
|
+
Requires-Dist: nvidia-ml-py
|
|
16
|
+
|
|
17
|
+
# Linux Explorer
|
|
18
|
+
|
|
19
|
+
Professional enterprise file management for Linux systems with modern neutral UI, background daemon mode, and comprehensive file operations.
|
|
20
|
+
|
|
21
|
+
## Installation
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
pip install linux-explorer
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Usage
|
|
28
|
+
|
|
29
|
+
Launch the explorer in any directory:
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
linux-explorer
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Alternative commands: `lexplorer`, `lex`
|
|
36
|
+
|
|
37
|
+
The interface opens automatically in your browser at `http://localhost:7701` (or the next available port in range 7701-7799). The server runs in the background as a daemon, allowing you to close the terminal window.
|
|
38
|
+
|
|
39
|
+
## Core Features
|
|
40
|
+
|
|
41
|
+
**File Operations**
|
|
42
|
+
Multi-select files with Ctrl/Cmd+Click. Perform batch operations including delete, move, copy, and rename. Context menu available via right-click. Drag and drop for uploads.
|
|
43
|
+
|
|
44
|
+
**View Modes**
|
|
45
|
+
Toggle between grid and list views. Grid supports 4-15 adjustable columns. Search and filter by file type. Sort by name, size, date, or extension.
|
|
46
|
+
|
|
47
|
+
**Media Support**
|
|
48
|
+
View images with zoom, pan, and crop tools. Built-in players for video and audio. Syntax highlighting for code files across 15+ languages. Rendered markdown display.
|
|
49
|
+
|
|
50
|
+
**Image Editor**
|
|
51
|
+
Professional cropping with aspect ratio presets (Free, 1:1, 4:3, 16:9). Mouse wheel zoom and drag to reposition. Save or create edited copies.
|
|
52
|
+
|
|
53
|
+
**System Monitoring**
|
|
54
|
+
Real-time CPU and RAM usage. NVIDIA GPU monitoring when available. Gradient progress indicators.
|
|
55
|
+
|
|
56
|
+
## Supported Formats
|
|
57
|
+
|
|
58
|
+
Images: JPG, PNG, GIF, WebP, BMP, SVG
|
|
59
|
+
Videos: MP4, WebM, OGG, MOV, MKV
|
|
60
|
+
Audio: MP3, WAV, OGG, M4A, FLAC
|
|
61
|
+
Code: JS, PY, HTML, CSS, JSON, TS, C, C++, Java, Go, Rust, PHP, Shell, YAML
|
|
62
|
+
Documents: TXT, Markdown
|
|
63
|
+
|
|
64
|
+
## Keyboard Shortcuts
|
|
65
|
+
|
|
66
|
+
- Delete: Remove selected items
|
|
67
|
+
- F2: Rename selected item
|
|
68
|
+
- Ctrl/Cmd+A: Select all
|
|
69
|
+
- Escape: Close viewer
|
|
70
|
+
- Arrow keys: Navigate images
|
|
71
|
+
|
|
72
|
+
## Design
|
|
73
|
+
|
|
74
|
+
Built with the Obsidian Glass design system featuring true black backgrounds, glassmorphism effects, and high-contrast violet/cyan accents. Typography combines Playfair Display for headings with Inter for interface elements.
|
|
75
|
+
|
|
76
|
+
## Technical Details
|
|
77
|
+
|
|
78
|
+
Pure Python HTTP server backend. Vanilla JavaScript frontend. No heavy frameworks. Optimized for performance even on slow connections. All operations run locally with path validation for security.
|
|
79
|
+
|
|
80
|
+
## What's New in 0.0.1
|
|
81
|
+
|
|
82
|
+
Professional neutral color scheme inspired by Windows 11 and macOS Finder. Background daemon mode for Linux systems. Immersive terminal startup with ASCII art branding. Multi-select and bulk file operations. Customizable grid columns (4-15). Context menus and keyboard shortcuts. Enterprise-grade design system.
|
|
83
|
+
|
|
84
|
+
---
|
|
85
|
+
|
|
86
|
+
Created by Muhammad Ahmed ([muhammad-ahmed-ghani](https://github.com/muhammad-ahmed-ghani))
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
# Linux Explorer
|
|
2
|
+
|
|
3
|
+
Professional enterprise file management for Linux systems with modern neutral UI, background daemon mode, and comprehensive file operations.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install linux-explorer
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
Launch the explorer in any directory:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
linux-explorer
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Alternative commands: `lexplorer`, `lex`
|
|
20
|
+
|
|
21
|
+
The interface opens automatically in your browser at `http://localhost:7701` (or the next available port in range 7701-7799). The server runs in the background as a daemon, allowing you to close the terminal window.
|
|
22
|
+
|
|
23
|
+
## Core Features
|
|
24
|
+
|
|
25
|
+
**File Operations**
|
|
26
|
+
Multi-select files with Ctrl/Cmd+Click. Perform batch operations including delete, move, copy, and rename. Context menu available via right-click. Drag and drop for uploads.
|
|
27
|
+
|
|
28
|
+
**View Modes**
|
|
29
|
+
Toggle between grid and list views. Grid supports 4-15 adjustable columns. Search and filter by file type. Sort by name, size, date, or extension.
|
|
30
|
+
|
|
31
|
+
**Media Support**
|
|
32
|
+
View images with zoom, pan, and crop tools. Built-in players for video and audio. Syntax highlighting for code files across 15+ languages. Rendered markdown display.
|
|
33
|
+
|
|
34
|
+
**Image Editor**
|
|
35
|
+
Professional cropping with aspect ratio presets (Free, 1:1, 4:3, 16:9). Mouse wheel zoom and drag to reposition. Save or create edited copies.
|
|
36
|
+
|
|
37
|
+
**System Monitoring**
|
|
38
|
+
Real-time CPU and RAM usage. NVIDIA GPU monitoring when available. Gradient progress indicators.
|
|
39
|
+
|
|
40
|
+
## Supported Formats
|
|
41
|
+
|
|
42
|
+
Images: JPG, PNG, GIF, WebP, BMP, SVG
|
|
43
|
+
Videos: MP4, WebM, OGG, MOV, MKV
|
|
44
|
+
Audio: MP3, WAV, OGG, M4A, FLAC
|
|
45
|
+
Code: JS, PY, HTML, CSS, JSON, TS, C, C++, Java, Go, Rust, PHP, Shell, YAML
|
|
46
|
+
Documents: TXT, Markdown
|
|
47
|
+
|
|
48
|
+
## Keyboard Shortcuts
|
|
49
|
+
|
|
50
|
+
- Delete: Remove selected items
|
|
51
|
+
- F2: Rename selected item
|
|
52
|
+
- Ctrl/Cmd+A: Select all
|
|
53
|
+
- Escape: Close viewer
|
|
54
|
+
- Arrow keys: Navigate images
|
|
55
|
+
|
|
56
|
+
## Design
|
|
57
|
+
|
|
58
|
+
Built with the Obsidian Glass design system featuring true black backgrounds, glassmorphism effects, and high-contrast violet/cyan accents. Typography combines Playfair Display for headings with Inter for interface elements.
|
|
59
|
+
|
|
60
|
+
## Technical Details
|
|
61
|
+
|
|
62
|
+
Pure Python HTTP server backend. Vanilla JavaScript frontend. No heavy frameworks. Optimized for performance even on slow connections. All operations run locally with path validation for security.
|
|
63
|
+
|
|
64
|
+
## What's New in 0.0.1
|
|
65
|
+
|
|
66
|
+
Professional neutral color scheme inspired by Windows 11 and macOS Finder. Background daemon mode for Linux systems. Immersive terminal startup with ASCII art branding. Multi-select and bulk file operations. Customizable grid columns (4-15). Context menus and keyboard shortcuts. Enterprise-grade design system.
|
|
67
|
+
|
|
68
|
+
---
|
|
69
|
+
|
|
70
|
+
Created by Muhammad Ahmed ([muhammad-ahmed-ghani](https://github.com/muhammad-ahmed-ghani))
|
|
File without changes
|
|
Binary file
|