paspybin


Namepaspybin JSON
Version 0.1.0 PyPI version JSON
download
home_pagehttps://github.com/kiraware/paspybin
SummaryPython Pastebin API Wrapper
upload_time2024-02-16 02:56:54
maintainer
docs_urlNone
authorKira
requires_python>=3.11,<4.0
licenseMIT
keywords pastebin api
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # paspybin

[![CI](https://github.com/kiraware/paspybin/workflows/ci/badge.svg)](https://github.com/kiraware/paspybin/actions/workflows/ci.yml)
[![CodeQL](https://github.com/kiraware/paspybin/workflows/codeql/badge.svg)](https://github.com/kiraware/paspybin/actions/workflows/codeql.yml)
[![Docs](https://readthedocs.org/projects/paspybin/badge/?version=latest)](https://paspybin.readthedocs.io/en/latest/?badge=latest)
[![codecov](https://codecov.io/gh/kiraware/paspybin/graph/badge.svg?token=PH6EUFT4V0)](https://codecov.io/gh/kiraware/paspybin)
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit)
[![security: bandit](https://img.shields.io/badge/security-bandit-yellow.svg)](https://github.com/PyCQA/bandit)
[![Checked with mypy](http://www.mypy-lang.org/static/mypy_badge.svg)](http://mypy-lang.org/)
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
[![pypi](https://img.shields.io/pypi/v/paspybin.svg)](https://pypi.org/project/paspybin/)
[![python](https://img.shields.io/pypi/pyversions/paspybin.svg)](https://pypi.org/project/paspybin/)
[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/license/mit/)

The `paspybin` project is an asynchronous api wrapper
written in Python for [Pastebin API](https://pastebin.com/doc_api).
paspybin was created to make it easier for users to use the API
provided by Pastebin asynchronously.

We use the third party library [aiohttp](https://docs.aiohttp.org/en/stable/)
for asynchronous client requests and it has been tested
to work well using the [asyncio](https://docs.python.org/3/library/asyncio.html)
library. Also it use [dataclass](https://docs.python.org/3/library/dataclasses.html)
as the schema.

## Docs

You can start reading the documentation [here](https://paspybin.readthedocs.io/en/latest/).

## Contributing

Glad to hear you want to contribute to paspybin. Please see
[contributing guidelines](https://paspybin.readthedocs.io/en/latest/how-to-guides/#contributing).

## Acknowledgements

We would like to thank [Pastebin](https://pastebin.com/)
for providing API services and also good documentation for
using the API.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/kiraware/paspybin",
    "name": "paspybin",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.11,<4.0",
    "maintainer_email": "",
    "keywords": "pastebin,api",
    "author": "Kira",
    "author_email": "kiraware@github.com",
    "download_url": "https://files.pythonhosted.org/packages/3a/14/133774ecddaa043ec331ade4404ded6d4df9b0cfc287925d7b859d0d83a2/paspybin-0.1.0.tar.gz",
    "platform": null,
    "description": "# paspybin\n\n[![CI](https://github.com/kiraware/paspybin/workflows/ci/badge.svg)](https://github.com/kiraware/paspybin/actions/workflows/ci.yml)\n[![CodeQL](https://github.com/kiraware/paspybin/workflows/codeql/badge.svg)](https://github.com/kiraware/paspybin/actions/workflows/codeql.yml)\n[![Docs](https://readthedocs.org/projects/paspybin/badge/?version=latest)](https://paspybin.readthedocs.io/en/latest/?badge=latest)\n[![codecov](https://codecov.io/gh/kiraware/paspybin/graph/badge.svg?token=PH6EUFT4V0)](https://codecov.io/gh/kiraware/paspybin)\n[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit)\n[![security: bandit](https://img.shields.io/badge/security-bandit-yellow.svg)](https://github.com/PyCQA/bandit)\n[![Checked with mypy](http://www.mypy-lang.org/static/mypy_badge.svg)](http://mypy-lang.org/)\n[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)\n[![pypi](https://img.shields.io/pypi/v/paspybin.svg)](https://pypi.org/project/paspybin/)\n[![python](https://img.shields.io/pypi/pyversions/paspybin.svg)](https://pypi.org/project/paspybin/)\n[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/license/mit/)\n\nThe `paspybin` project is an asynchronous api wrapper\nwritten in Python for [Pastebin API](https://pastebin.com/doc_api).\npaspybin was created to make it easier for users to use the API\nprovided by Pastebin asynchronously.\n\nWe use the third party library [aiohttp](https://docs.aiohttp.org/en/stable/)\nfor asynchronous client requests and it has been tested\nto work well using the [asyncio](https://docs.python.org/3/library/asyncio.html)\nlibrary. Also it use [dataclass](https://docs.python.org/3/library/dataclasses.html)\nas the schema.\n\n## Docs\n\nYou can start reading the documentation [here](https://paspybin.readthedocs.io/en/latest/).\n\n## Contributing\n\nGlad to hear you want to contribute to paspybin. Please see\n[contributing guidelines](https://paspybin.readthedocs.io/en/latest/how-to-guides/#contributing).\n\n## Acknowledgements\n\nWe would like to thank [Pastebin](https://pastebin.com/)\nfor providing API services and also good documentation for\nusing the API.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Python Pastebin API Wrapper",
    "version": "0.1.0",
    "project_urls": {
        "Bug Tracker": "https://github.com/kiraware/paspybin/issues",
        "Documentation": "https://paspybin.readthedocs.io/en/latest/",
        "Homepage": "https://github.com/kiraware/paspybin",
        "Repository": "https://github.com/kiraware/paspybin"
    },
    "split_keywords": [
        "pastebin",
        "api"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "03c5ab1a6ff99ace803ea0fc11d182e3256dbccf69f73b57b11cd4e3b0482ea4",
                "md5": "f0cc5262e12db2f541a059097075f58e",
                "sha256": "2cc64a67278c7995d72d9aff5f7d76a21935e8c8cf66c18209e796c000a20dc1"
            },
            "downloads": -1,
            "filename": "paspybin-0.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "f0cc5262e12db2f541a059097075f58e",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.11,<4.0",
            "size": 20005,
            "upload_time": "2024-02-16T02:56:52",
            "upload_time_iso_8601": "2024-02-16T02:56:52.160073Z",
            "url": "https://files.pythonhosted.org/packages/03/c5/ab1a6ff99ace803ea0fc11d182e3256dbccf69f73b57b11cd4e3b0482ea4/paspybin-0.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a14133774ecddaa043ec331ade4404ded6d4df9b0cfc287925d7b859d0d83a2",
                "md5": "460393582ee7971dcf3738fd8fdcda84",
                "sha256": "7b98f64fdcfbd89a91945daf052358908ca3cbc821ad4459b3382becbfa5d9a9"
            },
            "downloads": -1,
            "filename": "paspybin-0.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "460393582ee7971dcf3738fd8fdcda84",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.11,<4.0",
            "size": 16043,
            "upload_time": "2024-02-16T02:56:54",
            "upload_time_iso_8601": "2024-02-16T02:56:54.183038Z",
            "url": "https://files.pythonhosted.org/packages/3a/14/133774ecddaa043ec331ade4404ded6d4df9b0cfc287925d7b859d0d83a2/paspybin-0.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-16 02:56:54",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "kiraware",
    "github_project": "paspybin",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "paspybin"
}
        
Elapsed time: 0.18263s