pyfilebrowser


Namepyfilebrowser JSON
Version 0.1.2 PyPI version JSON
download
home_pageNone
SummaryPython module designed to streamline interactions with filebrowser
upload_time2024-06-23 00:40:20
maintainerNone
docs_urlNone
authorNone
requires_python>=3.11
licenseMIT License Copyright (c) 2024 Vignesh Rao Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords filebrowser pydantic python-dotenv
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            **Deployments**

![Python](https://img.shields.io/badge/python-3.11%20%7C%203.12-blue)

[![pypi][gha_pypi_badge]][gha_pypi]

[![none-shall-pass][gha_none_shall_pass_badge]][gha_none_shall_pass]

[![book][gha_pages_badge]][gha_pages]

[![PyPI version shields.io](https://img.shields.io/pypi/v/pyfilebrowser)][pypi]
[![Pypi-format](https://img.shields.io/pypi/format/pyfilebrowser)](https://pypi.org/project/pyfilebrowser/#files)
[![Pypi-status](https://img.shields.io/pypi/status/pyfilebrowser)][pypi]

# PyFileBrowser
Introducing [`pyfilebrowser`][repo], a Python library designed to streamline interactions with [filebrowser][home]<br>

This wrapper simplifies integration and automation tasks, enabling seamless interaction with your local file system via
filebrowser's web interface.

All the required configuration, settings, and user profiles are loaded using `.env` files. This provides a more centralized
way of handling the configuration and initialization.

[`pyfilebrowser`][repo] automatically downloads the system specific executable during startup.

<details>
<summary><strong>Download custom-built executables</strong></summary>
<br>

Additionally, custom source _(to download binaries)_ can be configured by specifying the following environment variables

- **OWNER** - Owner of the GitHub repo.
- **REPO** - Repository name.
- **TOKEN** - GitHub repository token.
- **VERSION** - Version of the release.

> _also supports the dotenv file `.github.env`, and prefixes like `github`, `git` and `filebrowser`_

For this custom source feature to work, the executable should be uploaded to releases as assets,
and follow the naming convention below.

> **asset naming convention:** `${operating system}-{architecture}-filebrowser-{extension}`<br>
> **example:** `darwin-amd64-filebrowser.tar.gz`

</details>

## Kick Off
**Install**
```shell
python -m pip install pyfilebrowser
```

**Initiate [programmatically]**
```python
import pyfilebrowser

if __name__ == '__main__':
    browser = pyfilebrowser.FileBrowser()
    # browser.proxy = True  # [Optional] Enables proxy server to run in parallel
    browser.start()
```

**Initiate [CLI]**
```shell
pyfilebrowser
```

## Environment Variables
Env vars can either be loaded from `.env` files or directly passed during object init.

#### `.env` files

<details>
<summary><strong>proxy server</strong></summary>

> `.proxy.env` - Loads the proxy server's configuration.

- **host** `str` - Hostname/IP for the proxy server. _Defaults to `socket.gethostbyname('localhost')`_
- **port** `int` - Port number for the proxy server. _Defaults to `8000`_
- **workers** `int` - Number of workers used to run the proxy server. _Defaults to `1`_
- **debug** `bool` - Boolean flag to enable debug level logging. _Defaults to `False`_
- **origins** `List[str]` - Origins to allow connections through proxy server. _Defaults to `host`_
- **allow_public_ip** `bool` - Boolean flag to allow public IP address of the host. _Defaults to `False`_
- **allow_private_ip** `bool` - Boolean flag to allow private IP address of the host. _Defaults to `False`_
- **origin_refresh** `int` - Interval in seconds to refresh all the allowed origins. _Defaults to `None`_
- **error_page** `FilePath` - Error page to serve when filebrowser API is down. _Defaults to_ [error.html]
- **warn_page** `FilePath` - Warning page to serve when accessed from Unsupported browsers. _Defaults to_ [warn.html]
- **rate_limit** - `Dict/List[Dict]` with the rate limit for the proxy server. _Defaults to `None`_

> `origin_refresh` allows users to set a custom interval to update the public and private IP address of the host,
based on their DHCP lease renewal.<br>This is specifically useful in cases of long-running server sessions.
</details>

<details>
<summary><strong>filebrowser configuration</strong></summary>

> `.config.env` - Loads the server's default configuration. Reference: [config]

Extra configuration settings can be loaded using a `JSON`/`YAML` file.
These settings will be merged with the default configuration settings.
The filename should be passed as `extra_env` during object instantiation.
Reference: [extra_env]

</details>

<details>
<summary><strong>filebrowser user profiles</strong></summary>

>`.user*.env` - Loads each user's profile specific configuration. Reference: [users]

Multiple user profiles can be loaded using `.user1.env`, `.user2.env` and so on.<br>
User profile's permissions are automatically set based on the `admin` flag set in the env-var `authentication`

</details>

> `.env` files can be placed in a dedicated directory, whose path can be set using the env var `SECRETS_PATH`
> before importing `pyfilebrowser`

<details>
<summary>Example</summary>

**Sample directory structure**
```text
root (current working directory)
  ├ secrets
  | ├ .config.env
  | ├ .github.env
  | ├ .proxy.env
  | └ .user.env
  ├ venv/
  └ main.py
```

**Set custom location for secrets [programmatically]**
```python
import os

os.environ["secrets_path"] = os.path.join(os.getcwd(), "secrets")

import pyfilebrowser
...
```

**[OR]**

**Set custom location for secrets [CLI]**
```shell
export secrets_path="secrets"

pyfilebrowser run
```

</details>

Refer [samples] directory for sample `.env` files. For nested configuration settings, refer the [runbook]

> Any configuration changes made in the UI will be lost, unless backed up manually.<br>
> Changes should always go through the `.env` files.

<details>
<summary><strong>Object level instantiation is also possible, but not recommended</strong></summary>

```python
from pyfilebrowser import FileBrowser

if __name__ == '__main__':
    file_browser = FileBrowser(
        user_profiles=[
            {"authentication": {"username": "admin", "password": "admin", "admin": True}},
            {"authentication": {"username": "user123", "password": "pwd456", "admin": False}}
        ]
    )
    file_browser.start()
```

> Object level instantiation might be complex for configuration settings. So it is better to use `.env` files instead.

</details>

## Proxy Server
`pyfilebrowser` allows you to run a proxy server in parallel,
which includes a collection of security features and trace level logging information.

> Enabling proxy server increases an inconspicuous latency to the connections,
> but due to asynchronous functionality, it is hardly noticeable.<br>
> The proxy server is designed to be lightweight and efficient, however streaming large video files may increase
> the memory usage at server side, due to multi-layered buffering.

### [Firewall]

While CORS may solve the purpose at the webpage level, the built-in proxy's firewall restricts connections
from any origin regardless of the tool used to connect (PostMan, curl, wget etc.)

Due to this behavior, please make sure to specify **ALL** the origins that are supposed to be allowed
(including but not limited to reverse-proxy, CDN, redirect servers etc.)

### [Brute Force Protection]

- The built-in proxy service limits the number of failed login attempts from a host address to **three**.
- Any more than 3 attempts, will result in the host address being temporarily blocked.
- For every failed attempt _(after the initial 3)_, the host address will be blocked at an incremental rate.
- After 10 such attempts, the host address will be permanently _(1 month)_ forbidden.

### [Rate Limiter]
The built-in proxy service allows you to implement a rate limiter.

[Rate limiting] allows you to prevent [DDoS] attacks and maintain server stability and performance.

> Brute force protection and rate limiting are reset when the server is restarted.

## Coding Standards
Docstring format: [`Google`][google-docs] <br>
Styling conventions: [`PEP 8`][pep8] and [`isort`][isort]

## [Release Notes][release-notes]
**Requirement**
```shell
pip install gitverse
```

**Usage**
```shell
gitverse-release reverse -f release_notes.rst -t 'Release Notes'
```

## Linting
`pre-commit` will ensure linting, and generate runbook

**Requirement**
```shell
pip install sphinx==5.1.1 pre-commit recommonmark
```

**Usage**
```shell
pre-commit run --all-files
```

## Pypi Package
[![pypi-module](https://img.shields.io/badge/Software%20Repository-pypi-1f425f.svg)][pypi-repo]

[https://pypi.org/project/pyfilebrowser/][pypi]

## Runbook
[![made-with-sphinx-doc](https://img.shields.io/badge/Code%20Docs-Sphinx-1f425f.svg)][sphinx]

[https://thevickypedia.github.io/pyfilebrowser/][runbook]

## License & copyright

&copy; Vignesh Rao

Licensed under the [MIT License][license]

[repo]: https://github.com/thevickypedia/pyfilebrowser
[samples]: https://github.com/thevickypedia/pyfilebrowser/tree/main/samples
[license]: https://github.com/thevickypedia/pyfilebrowser/blob/main/LICENSE
[config]: https://thevickypedia.github.io/pyfilebrowser/#configuration
[users]: https://thevickypedia.github.io/pyfilebrowser/#users
[extra_env]: https://thevickypedia.github.io/pyfilebrowser/#module-pyfilebrowser.main
[home]: https://filebrowser.org/
[pypi]: https://pypi.org/project/pyfilebrowser
[pypi-repo]: https://packaging.python.org/tutorials/packaging-projects/
[sphinx]: https://www.sphinx-doc.org/en/master/man/sphinx-autogen.html
[runbook]: https://thevickypedia.github.io/pyfilebrowser/
[gha_pages]: https://github.com/thevickypedia/pyfilebrowser/actions/workflows/pages/pages-build-deployment
[gha_pages_badge]: https://github.com/thevickypedia/pyfilebrowser/actions/workflows/pages/pages-build-deployment/badge.svg
[gha_pypi]: https://github.com/thevickypedia/pyfilebrowser/actions/workflows/python-publish.yml
[gha_pypi_badge]: https://github.com/thevickypedia/pyfilebrowser/actions/workflows/python-publish.yml/badge.svg
[gha_none_shall_pass]: https://github.com/thevickypedia/pyfilebrowser/actions/workflows/markdown.yml
[gha_none_shall_pass_badge]: https://github.com/thevickypedia/pyfilebrowser/actions/workflows/markdown.yml/badge.svg
[release-notes]: https://github.com/thevickypedia/pyfilebrowser/blob/main/release_notes.rst
[google-docs]: https://google.github.io/styleguide/pyguide.html#38-comments-and-docstrings
[pep8]: https://www.python.org/dev/peps/pep-0008/
[isort]: https://pycqa.github.io/isort/
[error.html]: https://github.com/thevickypedia/pyfilebrowser/blob/main/pyfilebrowser/proxy/templates/error.html
[warn.html]: https://github.com/thevickypedia/pyfilebrowser/blob/main/pyfilebrowser/proxy/templates/warn.html
[Rate limiting]: https://www.cloudflare.com/learning/bots/what-is-rate-limiting/
[DDoS]: https://www.cloudflare.com/learning/ddos/glossary/denial-of-service/
[Rate Limiter]: https://builtin.com/software-engineering-perspectives/rate-limiter
[Brute Force Protection]: https://owasp.org/www-community/controls/Blocking_Brute_Force_Attacks
[Firewall]: https://www.zenarmor.com/docs/network-security-tutorials/what-is-proxy-firewall

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pyfilebrowser",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.11",
    "maintainer_email": null,
    "keywords": "filebrowser, pydantic, python-dotenv",
    "author": null,
    "author_email": "Vignesh Rao <svignesh1793@gmail.com>",
    "download_url": null,
    "platform": null,
    "description": "**Deployments**\n\n![Python](https://img.shields.io/badge/python-3.11%20%7C%203.12-blue)\n\n[![pypi][gha_pypi_badge]][gha_pypi]\n\n[![none-shall-pass][gha_none_shall_pass_badge]][gha_none_shall_pass]\n\n[![book][gha_pages_badge]][gha_pages]\n\n[![PyPI version shields.io](https://img.shields.io/pypi/v/pyfilebrowser)][pypi]\n[![Pypi-format](https://img.shields.io/pypi/format/pyfilebrowser)](https://pypi.org/project/pyfilebrowser/#files)\n[![Pypi-status](https://img.shields.io/pypi/status/pyfilebrowser)][pypi]\n\n# PyFileBrowser\nIntroducing [`pyfilebrowser`][repo], a Python library designed to streamline interactions with [filebrowser][home]<br>\n\nThis wrapper simplifies integration and automation tasks, enabling seamless interaction with your local file system via\nfilebrowser's web interface.\n\nAll the required configuration, settings, and user profiles are loaded using `.env` files. This provides a more centralized\nway of handling the configuration and initialization.\n\n[`pyfilebrowser`][repo] automatically downloads the system specific executable during startup.\n\n<details>\n<summary><strong>Download custom-built executables</strong></summary>\n<br>\n\nAdditionally, custom source _(to download binaries)_ can be configured by specifying the following environment variables\n\n- **OWNER** - Owner of the GitHub repo.\n- **REPO** - Repository name.\n- **TOKEN** - GitHub repository token.\n- **VERSION** - Version of the release.\n\n> _also supports the dotenv file `.github.env`, and prefixes like `github`, `git` and `filebrowser`_\n\nFor this custom source feature to work, the executable should be uploaded to releases as assets,\nand follow the naming convention below.\n\n> **asset naming convention:** `${operating system}-{architecture}-filebrowser-{extension}`<br>\n> **example:** `darwin-amd64-filebrowser.tar.gz`\n\n</details>\n\n## Kick Off\n**Install**\n```shell\npython -m pip install pyfilebrowser\n```\n\n**Initiate [programmatically]**\n```python\nimport pyfilebrowser\n\nif __name__ == '__main__':\n    browser = pyfilebrowser.FileBrowser()\n    # browser.proxy = True  # [Optional] Enables proxy server to run in parallel\n    browser.start()\n```\n\n**Initiate [CLI]**\n```shell\npyfilebrowser\n```\n\n## Environment Variables\nEnv vars can either be loaded from `.env` files or directly passed during object init.\n\n#### `.env` files\n\n<details>\n<summary><strong>proxy server</strong></summary>\n\n> `.proxy.env` - Loads the proxy server's configuration.\n\n- **host** `str` - Hostname/IP for the proxy server. _Defaults to `socket.gethostbyname('localhost')`_\n- **port** `int` - Port number for the proxy server. _Defaults to `8000`_\n- **workers** `int` - Number of workers used to run the proxy server. _Defaults to `1`_\n- **debug** `bool` - Boolean flag to enable debug level logging. _Defaults to `False`_\n- **origins** `List[str]` - Origins to allow connections through proxy server. _Defaults to `host`_\n- **allow_public_ip** `bool` - Boolean flag to allow public IP address of the host. _Defaults to `False`_\n- **allow_private_ip** `bool` - Boolean flag to allow private IP address of the host. _Defaults to `False`_\n- **origin_refresh** `int` - Interval in seconds to refresh all the allowed origins. _Defaults to `None`_\n- **error_page** `FilePath` - Error page to serve when filebrowser API is down. _Defaults to_ [error.html]\n- **warn_page** `FilePath` - Warning page to serve when accessed from Unsupported browsers. _Defaults to_ [warn.html]\n- **rate_limit** - `Dict/List[Dict]` with the rate limit for the proxy server. _Defaults to `None`_\n\n> `origin_refresh` allows users to set a custom interval to update the public and private IP address of the host,\nbased on their DHCP lease renewal.<br>This is specifically useful in cases of long-running server sessions.\n</details>\n\n<details>\n<summary><strong>filebrowser configuration</strong></summary>\n\n> `.config.env` - Loads the server's default configuration. Reference: [config]\n\nExtra configuration settings can be loaded using a `JSON`/`YAML` file.\nThese settings will be merged with the default configuration settings.\nThe filename should be passed as `extra_env` during object instantiation.\nReference: [extra_env]\n\n</details>\n\n<details>\n<summary><strong>filebrowser user profiles</strong></summary>\n\n>`.user*.env` - Loads each user's profile specific configuration. Reference: [users]\n\nMultiple user profiles can be loaded using `.user1.env`, `.user2.env` and so on.<br>\nUser profile's permissions are automatically set based on the `admin` flag set in the env-var `authentication`\n\n</details>\n\n> `.env` files can be placed in a dedicated directory, whose path can be set using the env var `SECRETS_PATH`\n> before importing `pyfilebrowser`\n\n<details>\n<summary>Example</summary>\n\n**Sample directory structure**\n```text\nroot (current working directory)\n  \u251c secrets\n  | \u251c .config.env\n  | \u251c .github.env\n  | \u251c .proxy.env\n  | \u2514 .user.env\n  \u251c venv/\n  \u2514 main.py\n```\n\n**Set custom location for secrets [programmatically]**\n```python\nimport os\n\nos.environ[\"secrets_path\"] = os.path.join(os.getcwd(), \"secrets\")\n\nimport pyfilebrowser\n...\n```\n\n**[OR]**\n\n**Set custom location for secrets [CLI]**\n```shell\nexport secrets_path=\"secrets\"\n\npyfilebrowser run\n```\n\n</details>\n\nRefer [samples] directory for sample `.env` files. For nested configuration settings, refer the [runbook]\n\n> Any configuration changes made in the UI will be lost, unless backed up manually.<br>\n> Changes should always go through the `.env` files.\n\n<details>\n<summary><strong>Object level instantiation is also possible, but not recommended</strong></summary>\n\n```python\nfrom pyfilebrowser import FileBrowser\n\nif __name__ == '__main__':\n    file_browser = FileBrowser(\n        user_profiles=[\n            {\"authentication\": {\"username\": \"admin\", \"password\": \"admin\", \"admin\": True}},\n            {\"authentication\": {\"username\": \"user123\", \"password\": \"pwd456\", \"admin\": False}}\n        ]\n    )\n    file_browser.start()\n```\n\n> Object level instantiation might be complex for configuration settings. So it is better to use `.env` files instead.\n\n</details>\n\n## Proxy Server\n`pyfilebrowser` allows you to run a proxy server in parallel,\nwhich includes a collection of security features and trace level logging information.\n\n> Enabling proxy server increases an inconspicuous latency to the connections,\n> but due to asynchronous functionality, it is hardly noticeable.<br>\n> The proxy server is designed to be lightweight and efficient, however streaming large video files may increase\n> the memory usage at server side, due to multi-layered buffering.\n\n### [Firewall]\n\nWhile CORS may solve the purpose at the webpage level, the built-in proxy's firewall restricts connections\nfrom any origin regardless of the tool used to connect (PostMan, curl, wget etc.)\n\nDue to this behavior, please make sure to specify **ALL** the origins that are supposed to be allowed\n(including but not limited to reverse-proxy, CDN, redirect servers etc.)\n\n### [Brute Force Protection]\n\n- The built-in proxy service limits the number of failed login attempts from a host address to **three**.\n- Any more than 3 attempts, will result in the host address being temporarily blocked.\n- For every failed attempt _(after the initial 3)_, the host address will be blocked at an incremental rate.\n- After 10 such attempts, the host address will be permanently _(1 month)_ forbidden.\n\n### [Rate Limiter]\nThe built-in proxy service allows you to implement a rate limiter.\n\n[Rate limiting] allows you to prevent [DDoS] attacks and maintain server stability and performance.\n\n> Brute force protection and rate limiting are reset when the server is restarted.\n\n## Coding Standards\nDocstring format: [`Google`][google-docs] <br>\nStyling conventions: [`PEP 8`][pep8] and [`isort`][isort]\n\n## [Release Notes][release-notes]\n**Requirement**\n```shell\npip install gitverse\n```\n\n**Usage**\n```shell\ngitverse-release reverse -f release_notes.rst -t 'Release Notes'\n```\n\n## Linting\n`pre-commit` will ensure linting, and generate runbook\n\n**Requirement**\n```shell\npip install sphinx==5.1.1 pre-commit recommonmark\n```\n\n**Usage**\n```shell\npre-commit run --all-files\n```\n\n## Pypi Package\n[![pypi-module](https://img.shields.io/badge/Software%20Repository-pypi-1f425f.svg)][pypi-repo]\n\n[https://pypi.org/project/pyfilebrowser/][pypi]\n\n## Runbook\n[![made-with-sphinx-doc](https://img.shields.io/badge/Code%20Docs-Sphinx-1f425f.svg)][sphinx]\n\n[https://thevickypedia.github.io/pyfilebrowser/][runbook]\n\n## License & copyright\n\n&copy; Vignesh Rao\n\nLicensed under the [MIT License][license]\n\n[repo]: https://github.com/thevickypedia/pyfilebrowser\n[samples]: https://github.com/thevickypedia/pyfilebrowser/tree/main/samples\n[license]: https://github.com/thevickypedia/pyfilebrowser/blob/main/LICENSE\n[config]: https://thevickypedia.github.io/pyfilebrowser/#configuration\n[users]: https://thevickypedia.github.io/pyfilebrowser/#users\n[extra_env]: https://thevickypedia.github.io/pyfilebrowser/#module-pyfilebrowser.main\n[home]: https://filebrowser.org/\n[pypi]: https://pypi.org/project/pyfilebrowser\n[pypi-repo]: https://packaging.python.org/tutorials/packaging-projects/\n[sphinx]: https://www.sphinx-doc.org/en/master/man/sphinx-autogen.html\n[runbook]: https://thevickypedia.github.io/pyfilebrowser/\n[gha_pages]: https://github.com/thevickypedia/pyfilebrowser/actions/workflows/pages/pages-build-deployment\n[gha_pages_badge]: https://github.com/thevickypedia/pyfilebrowser/actions/workflows/pages/pages-build-deployment/badge.svg\n[gha_pypi]: https://github.com/thevickypedia/pyfilebrowser/actions/workflows/python-publish.yml\n[gha_pypi_badge]: https://github.com/thevickypedia/pyfilebrowser/actions/workflows/python-publish.yml/badge.svg\n[gha_none_shall_pass]: https://github.com/thevickypedia/pyfilebrowser/actions/workflows/markdown.yml\n[gha_none_shall_pass_badge]: https://github.com/thevickypedia/pyfilebrowser/actions/workflows/markdown.yml/badge.svg\n[release-notes]: https://github.com/thevickypedia/pyfilebrowser/blob/main/release_notes.rst\n[google-docs]: https://google.github.io/styleguide/pyguide.html#38-comments-and-docstrings\n[pep8]: https://www.python.org/dev/peps/pep-0008/\n[isort]: https://pycqa.github.io/isort/\n[error.html]: https://github.com/thevickypedia/pyfilebrowser/blob/main/pyfilebrowser/proxy/templates/error.html\n[warn.html]: https://github.com/thevickypedia/pyfilebrowser/blob/main/pyfilebrowser/proxy/templates/warn.html\n[Rate limiting]: https://www.cloudflare.com/learning/bots/what-is-rate-limiting/\n[DDoS]: https://www.cloudflare.com/learning/ddos/glossary/denial-of-service/\n[Rate Limiter]: https://builtin.com/software-engineering-perspectives/rate-limiter\n[Brute Force Protection]: https://owasp.org/www-community/controls/Blocking_Brute_Force_Attacks\n[Firewall]: https://www.zenarmor.com/docs/network-security-tutorials/what-is-proxy-firewall\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2024 Vignesh Rao  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "Python module designed to streamline interactions with filebrowser",
    "version": "0.1.2",
    "project_urls": {
        "Bug Tracker": "https://github.com/thevickypedia/pyfilebrowser/issues",
        "Docs": "https://thevickypedia.github.io/pyfilebrowser/",
        "Homepage": "https://github.com/thevickypedia/pyfilebrowser",
        "Release Notes": "https://github.com/thevickypedia/pyfilebrowser/blob/main/release_notes.rst",
        "Source": "https://github.com/thevickypedia/pyfilebrowser"
    },
    "split_keywords": [
        "filebrowser",
        " pydantic",
        " python-dotenv"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "43cca466628b89842bc51f2a74f86e3f0c77c40c89c22efe5443d6de89e674c2",
                "md5": "0858cffd11c06754379710acca0b95d9",
                "sha256": "6433788b562447f468a5c57f9a50181bd575171154b803ce14bdeb17386541c7"
            },
            "downloads": -1,
            "filename": "pyfilebrowser-0.1.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "0858cffd11c06754379710acca0b95d9",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.11",
            "size": 39010,
            "upload_time": "2024-06-23T00:40:20",
            "upload_time_iso_8601": "2024-06-23T00:40:20.581207Z",
            "url": "https://files.pythonhosted.org/packages/43/cc/a466628b89842bc51f2a74f86e3f0c77c40c89c22efe5443d6de89e674c2/pyfilebrowser-0.1.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-06-23 00:40:20",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "thevickypedia",
    "github_project": "pyfilebrowser",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pyfilebrowser"
}
        
Elapsed time: 3.87461s