pamela-lib


Namepamela-lib JSON
Version 0.1.2 PyPI version JSON
download
home_pagehttps://github.com/zlElo/Pamela
SummaryPamela is a python library to simplify API usage in programs
upload_time2024-12-22 09:23:17
maintainerNone
docs_urlNone
authorzlElo
requires_pythonNone
licenseMPL-2.0
keywords api library api-wrapper simplify
VCS
bugtrack_url
requirements requests
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Pamela
Pamela is a python library to simplify API usage in programs

## General Information
- Pamela is a python library to simplify API usage in programs. It has different features to optimize the workflow with APIs.
- API usage in programs is sometimes very annoying. To optimize all things connected with APIs, Pamela is your helper!
  
## Technologies Used
- Python
- Requests
  
## Features
- Receive data
- Create sessions
- Get status of session
- Choose file format

## Installation
```bash
pip install pamela-lib
```

or

```bash
git clone github.com/zlElo/Pamela.git
cd Pamela
pip install .
```

## Code examples (simple)
```py
# import pamela with all classes
from pamela import Pamela, Session

# create pamela instance
pamela = Pamela()

# create session with pamela
session1 = Session.create("address", "username", "password")

# status of session
status_session = Session.status(address="address", session=session1)

# receive data with session
answer = pamela.receive_data(address="address", session=session1)

# receive data with no credentials
answer = pamela.receive_data(address="address")
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/zlElo/Pamela",
    "name": "pamela-lib",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "api, library, api-wrapper, simplify",
    "author": "zlElo",
    "author_email": "mail@zlelo.de",
    "download_url": "https://files.pythonhosted.org/packages/f0/ec/7f26503a9b34f47fce09be32824a50b2915b6f9d589cac057475a88b17c0/pamela_lib-0.1.2.tar.gz",
    "platform": null,
    "description": "# Pamela\nPamela is a python library to simplify API usage in programs\n\n## General Information\n- Pamela is a python library to simplify API usage in programs. It has different features to optimize the workflow with APIs.\n- API usage in programs is sometimes very annoying. To optimize all things connected with APIs, Pamela is your helper!\n  \n## Technologies Used\n- Python\n- Requests\n  \n## Features\n- Receive data\n- Create sessions\n- Get status of session\n- Choose file format\n\n## Installation\n```bash\npip install pamela-lib\n```\n\nor\n\n```bash\ngit clone github.com/zlElo/Pamela.git\ncd Pamela\npip install .\n```\n\n## Code examples (simple)\n```py\n# import pamela with all classes\nfrom pamela import Pamela, Session\n\n# create pamela instance\npamela = Pamela()\n\n# create session with pamela\nsession1 = Session.create(\"address\", \"username\", \"password\")\n\n# status of session\nstatus_session = Session.status(address=\"address\", session=session1)\n\n# receive data with session\nanswer = pamela.receive_data(address=\"address\", session=session1)\n\n# receive data with no credentials\nanswer = pamela.receive_data(address=\"address\")\n```\n",
    "bugtrack_url": null,
    "license": "MPL-2.0",
    "summary": "Pamela is a python library to simplify API usage in programs",
    "version": "0.1.2",
    "project_urls": {
        "Homepage": "https://github.com/zlElo/Pamela"
    },
    "split_keywords": [
        "api",
        " library",
        " api-wrapper",
        " simplify"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "788d88f6df00ea78c036e8be39f3334117f9cdad6fcff9cb997b85ed565a5dbc",
                "md5": "7088299667102821f555285b9f83e97e",
                "sha256": "71346a503dde028279f369f8808262b71c5f9a0b69129f7d284b50aab7f583eb"
            },
            "downloads": -1,
            "filename": "pamela_lib-0.1.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "7088299667102821f555285b9f83e97e",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 8186,
            "upload_time": "2024-12-22T09:23:15",
            "upload_time_iso_8601": "2024-12-22T09:23:15.753230Z",
            "url": "https://files.pythonhosted.org/packages/78/8d/88f6df00ea78c036e8be39f3334117f9cdad6fcff9cb997b85ed565a5dbc/pamela_lib-0.1.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f0ec7f26503a9b34f47fce09be32824a50b2915b6f9d589cac057475a88b17c0",
                "md5": "8a0df054dfdb7a7912d0466bee8e65ee",
                "sha256": "4bb97fba3489f42508e9222ef7d0eeb6b9e569fe17b2f3fc759ed14cdfc04b75"
            },
            "downloads": -1,
            "filename": "pamela_lib-0.1.2.tar.gz",
            "has_sig": false,
            "md5_digest": "8a0df054dfdb7a7912d0466bee8e65ee",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 7846,
            "upload_time": "2024-12-22T09:23:17",
            "upload_time_iso_8601": "2024-12-22T09:23:17.855791Z",
            "url": "https://files.pythonhosted.org/packages/f0/ec/7f26503a9b34f47fce09be32824a50b2915b6f9d589cac057475a88b17c0/pamela_lib-0.1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-22 09:23:17",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "zlElo",
    "github_project": "Pamela",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "requests",
            "specs": []
        }
    ],
    "lcname": "pamela-lib"
}
        
Elapsed time: 1.92104s