## Example
```python
import os
from anacondas.FileSystemModel import FileSystemModel
fsm = FileSystemModel(os.getcwd())
fsm.show()
```
The program running result is as follows:
```text
+---------------------------------------------------------------------------------------------------------------------------------------------------------+
| C:\Users\Zhang Henghua\PycharmProjects\packaging |
+----+----------------+-------------------------------+-----------+--------+---------------------+---------------------+----------+----------+------------+
| ID | Basename | Owner | Size | Type | Creation Time | Modification Time | Readable | Writable | Executable |
+----+----------------+-------------------------------+-----------+--------+---------------------+---------------------+----------+----------+------------+
| 0 | .idea | DESKTOP-O8I71AC\Zhang Henghua | | <DIR> | 2024/04/08 09:22:41 | 2024/04/08 09:37:23 | True | True | True |
| 1 | src | DESKTOP-O8I71AC\Zhang Henghua | | <DIR> | 2024/04/08 09:23:02 | 2024/04/08 14:16:41 | True | True | True |
| 2 | LICENSE | DESKTOP-O8I71AC\Zhang Henghua | 1.04 KB | <FILE> | 2024/04/08 14:41:49 | 2024/04/08 14:46:12 | True | True | True |
| 3 | main.py | DESKTOP-O8I71AC\Zhang Henghua | 106.00 B | <FILE> | 2024/04/08 09:22:42 | 2024/04/08 14:53:12 | True | True | True |
| 4 | pyproject.toml | DESKTOP-O8I71AC\Zhang Henghua | 507.00 B | <FILE> | 2024/04/08 14:43:26 | 2024/04/08 14:52:38 | True | True | True |
| 5 | README.md | DESKTOP-O8I71AC\Zhang Henghua | 0.00 B | <FILE> | 2024/04/08 14:43:33 | 2024/04/08 14:43:33 | True | True | True |
+----+----------------+-------------------------------+-----------+--------+---------------------+---------------------+----------+----------+------------+
```
More operations:
```python
fsm.cd('..') # Return to the previous level directory.
fsm.show(owner=False, ctime=False, executable=False)
```
Result:
```text
+--------------------------------------------------------------------------------+
| C:\Users\Zhang Henghua\PycharmProjects |
+----+----------------+------+-------+---------------------+----------+----------+
| ID | Basename | Size | Type | Modification Time | Readable | Writable |
+----+----------------+------+-------+---------------------+----------+----------+
| 0 | AI | | <DIR> | 2024/03/29 23:36:13 | True | True |
| 1 | CheckParameter | | <DIR> | 2024/03/05 17:04:45 | True | True |
| 2 | diff | | <DIR> | 2024/03/01 10:39:34 | True | True |
| 3 | diode_jagte | | <DIR> | 2024/02/28 10:23:07 | True | True |
| 4 | GenImage | | <DIR> | 2024/03/14 16:56:07 | True | True |
| 5 | moscap | | <DIR> | 2024/02/27 16:30:19 | True | True |
| 6 | packaging | | <DIR> | 2024/04/08 15:01:55 | True | True |
+----+----------------+------+-------+---------------------+----------+----------+
```
## Installation
```shell
pip install anacondas
```
Raw data
{
"_id": null,
"home_page": null,
"name": "anacondas",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "cmd, command, commands, Python, Python3, Python 3, Shell, Power Shell, PowerShell, Windows, Windows cmd, Windows command, Windows commands, Windows Shell, Windows Power Shell, Windows PowerShell",
"author": null,
"author_email": "\u5f20\u6052\u534e <1652709417@qq.com>",
"download_url": "https://files.pythonhosted.org/packages/6a/48/547d5d00b09cd55266c73c6b525f92cd9c821671b89353082bafd63c2013/anacondas-0.0.2.tar.gz",
"platform": null,
"description": "## Example\r\n\r\n```python\r\nimport os\r\nfrom anacondas.FileSystemModel import FileSystemModel\r\n\r\nfsm = FileSystemModel(os.getcwd())\r\nfsm.show()\r\n```\r\n\r\nThe program running result is as follows:\r\n\r\n```text\r\n+---------------------------------------------------------------------------------------------------------------------------------------------------------+\r\n| C:\\Users\\Zhang Henghua\\PycharmProjects\\packaging |\r\n+----+----------------+-------------------------------+-----------+--------+---------------------+---------------------+----------+----------+------------+\r\n| ID | Basename | Owner | Size | Type | Creation Time | Modification Time | Readable | Writable | Executable |\r\n+----+----------------+-------------------------------+-----------+--------+---------------------+---------------------+----------+----------+------------+\r\n| 0 | .idea | DESKTOP-O8I71AC\\Zhang Henghua | | <DIR> | 2024/04/08 09:22:41 | 2024/04/08 09:37:23 | True | True | True |\r\n| 1 | src | DESKTOP-O8I71AC\\Zhang Henghua | | <DIR> | 2024/04/08 09:23:02 | 2024/04/08 14:16:41 | True | True | True |\r\n| 2 | LICENSE | DESKTOP-O8I71AC\\Zhang Henghua | 1.04 KB | <FILE> | 2024/04/08 14:41:49 | 2024/04/08 14:46:12 | True | True | True |\r\n| 3 | main.py | DESKTOP-O8I71AC\\Zhang Henghua | 106.00 B | <FILE> | 2024/04/08 09:22:42 | 2024/04/08 14:53:12 | True | True | True |\r\n| 4 | pyproject.toml | DESKTOP-O8I71AC\\Zhang Henghua | 507.00 B | <FILE> | 2024/04/08 14:43:26 | 2024/04/08 14:52:38 | True | True | True |\r\n| 5 | README.md | DESKTOP-O8I71AC\\Zhang Henghua | 0.00 B | <FILE> | 2024/04/08 14:43:33 | 2024/04/08 14:43:33 | True | True | True |\r\n+----+----------------+-------------------------------+-----------+--------+---------------------+---------------------+----------+----------+------------+\r\n```\r\n\r\nMore operations:\r\n\r\n```python\r\nfsm.cd('..') # Return to the previous level directory.\r\nfsm.show(owner=False, ctime=False, executable=False)\r\n```\r\n\r\nResult:\r\n\r\n```text\r\n+--------------------------------------------------------------------------------+\r\n| C:\\Users\\Zhang Henghua\\PycharmProjects |\r\n+----+----------------+------+-------+---------------------+----------+----------+\r\n| ID | Basename | Size | Type | Modification Time | Readable | Writable |\r\n+----+----------------+------+-------+---------------------+----------+----------+\r\n| 0 | AI | | <DIR> | 2024/03/29 23:36:13 | True | True |\r\n| 1 | CheckParameter | | <DIR> | 2024/03/05 17:04:45 | True | True |\r\n| 2 | diff | | <DIR> | 2024/03/01 10:39:34 | True | True |\r\n| 3 | diode_jagte | | <DIR> | 2024/02/28 10:23:07 | True | True |\r\n| 4 | GenImage | | <DIR> | 2024/03/14 16:56:07 | True | True |\r\n| 5 | moscap | | <DIR> | 2024/02/27 16:30:19 | True | True |\r\n| 6 | packaging | | <DIR> | 2024/04/08 15:01:55 | True | True |\r\n+----+----------------+------+-------+---------------------+----------+----------+\r\n```\r\n\r\n## Installation\r\n\r\n```shell\r\npip install anacondas\r\n```\r\n",
"bugtrack_url": null,
"license": null,
"summary": "A tool library for Windows commands.",
"version": "0.0.2",
"project_urls": null,
"split_keywords": [
"cmd",
" command",
" commands",
" python",
" python3",
" python 3",
" shell",
" power shell",
" powershell",
" windows",
" windows cmd",
" windows command",
" windows commands",
" windows shell",
" windows power shell",
" windows powershell"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "079034f316c26a9669c6d72a792f180ca3998cd0b19560265d615efa6332c7c6",
"md5": "32cd4105c4b7eac599c061fe328df533",
"sha256": "e041d612610f924b42fd954dd24486b3fb7c0ffb81221b2089c4c178226a1e03"
},
"downloads": -1,
"filename": "anacondas-0.0.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "32cd4105c4b7eac599c061fe328df533",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 6331,
"upload_time": "2024-04-09T01:40:18",
"upload_time_iso_8601": "2024-04-09T01:40:18.553469Z",
"url": "https://files.pythonhosted.org/packages/07/90/34f316c26a9669c6d72a792f180ca3998cd0b19560265d615efa6332c7c6/anacondas-0.0.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6a48547d5d00b09cd55266c73c6b525f92cd9c821671b89353082bafd63c2013",
"md5": "12873ab4d77d82d80726705387a8abf2",
"sha256": "07436b09db142d639c378ba3df26106a5f584c0d586b11931f5085e88b21b9f0"
},
"downloads": -1,
"filename": "anacondas-0.0.2.tar.gz",
"has_sig": false,
"md5_digest": "12873ab4d77d82d80726705387a8abf2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 5712,
"upload_time": "2024-04-09T01:40:20",
"upload_time_iso_8601": "2024-04-09T01:40:20.336881Z",
"url": "https://files.pythonhosted.org/packages/6a/48/547d5d00b09cd55266c73c6b525f92cd9c821671b89353082bafd63c2013/anacondas-0.0.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-04-09 01:40:20",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "anacondas"
}