sendero


Namesendero JSON
Version 0.0.3 PyPI version JSON
download
home_pagehttps://github.com/DanielJDufour/sendero
Summarysendero - data filtering for humans
upload_time2022-12-18 18:45:23
maintainer
docs_urlNone
authorDaniel J. Dufour
requires_python
license
keywords data filter path
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # sendero
Data Filtering for Humans

## why sendero?
"sendero" means footpath in Spanish

## install
```bash
pip install sendero
```

## usage
```py
from sendero import list_paths

# list of cars with their previous owners
cars = [
  { "make": "Nissan", "model": "Altima", "year": 2022, "owners": [{ "id": 1, "name": "Juan" }, { "id": 2, "name": "Mark" }]},
  { "make": "Nissan", "model": "Kicks", "year": 2021, "owners": [{ "id": 3, "name": "Zach" }]},
  { "make": "Toyota", "model": "Camry", "year": 1995, "owners": [{ "id": 4, "name": "Tom" }]}
]
paths = list_paths(cars)
[
  "make",
  "model",
  "owners.id",
  "owners.name",
  "year"
]
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/DanielJDufour/sendero",
    "name": "sendero",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "data,filter,path",
    "author": "Daniel J. Dufour",
    "author_email": "daniel.j.dufour@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/4a/2b/d4c01be335c9036c431e0083f1334af5e84c5bcf763cf65e5d0a15f9b104/sendero-0.0.3.tar.gz",
    "platform": null,
    "description": "# sendero\nData Filtering for Humans\n\n## why sendero?\n\"sendero\" means footpath in Spanish\n\n## install\n```bash\npip install sendero\n```\n\n## usage\n```py\nfrom sendero import list_paths\n\n# list of cars with their previous owners\ncars = [\n  { \"make\": \"Nissan\", \"model\": \"Altima\", \"year\": 2022, \"owners\": [{ \"id\": 1, \"name\": \"Juan\" }, { \"id\": 2, \"name\": \"Mark\" }]},\n  { \"make\": \"Nissan\", \"model\": \"Kicks\", \"year\": 2021, \"owners\": [{ \"id\": 3, \"name\": \"Zach\" }]},\n  { \"make\": \"Toyota\", \"model\": \"Camry\", \"year\": 1995, \"owners\": [{ \"id\": 4, \"name\": \"Tom\" }]}\n]\npaths = list_paths(cars)\n[\n  \"make\",\n  \"model\",\n  \"owners.id\",\n  \"owners.name\",\n  \"year\"\n]\n```\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "sendero - data filtering for humans",
    "version": "0.0.3",
    "split_keywords": [
        "data",
        "filter",
        "path"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "e921846cf88cfd14d3967f041a5c27c1",
                "sha256": "316848b84225ac1551a5ff37825a7677486987fedabeef76752de01a660caa0d"
            },
            "downloads": -1,
            "filename": "sendero-0.0.3.tar.gz",
            "has_sig": false,
            "md5_digest": "e921846cf88cfd14d3967f041a5c27c1",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 5896,
            "upload_time": "2022-12-18T18:45:23",
            "upload_time_iso_8601": "2022-12-18T18:45:23.268648Z",
            "url": "https://files.pythonhosted.org/packages/4a/2b/d4c01be335c9036c431e0083f1334af5e84c5bcf763cf65e5d0a15f9b104/sendero-0.0.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-12-18 18:45:23",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "DanielJDufour",
    "github_project": "sendero",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "sendero"
}
        
Elapsed time: 0.01922s