pyflirts


Namepyflirts JSON
Version 0.0.1 PyPI version JSON
download
home_pagehttps://github.com/pyflirts/pyflirts
Summaryone line flirt lines for programmers ( flirt lines as a service )
upload_time2024-10-13 06:39:39
maintainerNone
docs_urlNone
authorShiva Mishra
requires_python>=3.6
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <h1 align="center"><b>Py-Flirts</b></h1>

<p align="center"><img src="" alt="Pyflirts"></p>

<h2 align="center">one line flirt lines for programmers ( flirt lines as a service )</h3>

<h3 align="center">
    Packed with the latest flirt lines, in diff langs etc. </br>
</h3>

---

![GitHub forks](https://img.shields.io/github/forks/Pyflirts/pyflirts?style=social)
![GitHub Repo stars](https://img.shields.io/github/stars/pyflirts/pyflirts?style=social)

![Maintenance](https://img.shields.io/badge/Maintained%3F-Yes-white?&style=social&logo=hugo)
![GitHub license](https://img.shields.io/github/license/pyflirts/pyflirts?&style=social&logo=github)

![Python](https://img.shields.io/badge/Python-v3.10-white?style=social&logo=python)
[![Documentation](https://img.shields.io/badge/Documentations-docs.Pyflirts.tech-white?&style=social&logo=gitbook)]()

[![Telegram Group](https://img.shields.io/badge/Telegram-Group-white?&style=social&logo=telegram)](https://telegram.dog/pyflirtschat)
[![Telegram Channel](https://img.shields.io/badge/Telegram-Channel-white?&style=social&logo=telegram)](https://telegram.dog/pyflirts)

---

## Installation

Install the `pyflirts` module with pip:

```bash
pip3 install pyflirts
```

## Usage

### Python

You can also access the flirt lines in your own project by importing `pyflirts` and using the function
`get_flirt`:

```pycon
>>> import pyflirts
>>> print(pyflirts.get_flirt())
Do you believe in love at first sight, or should I walk by again?
```

We support many languages, and have multiple flirt lines categories like:

```pycon
>>> import pyflirts
>>> print(pyflirts.get_flirt("es"))  # spanish flirt lines
¿Crees en el amor a primera vista, o debo pasar otra vez?
>>> print(pyflirts.get_flirt("es", "crazy"))  # spanish crazy flirt lines
Si fueras una bebida, serías el cóctel perfecto: irresistible y siempre refrescante.
```

There is also a `get_flirts` function which returns all the flirts line in the given language and category like:

```python
import pyflirts

for flirt in pyflirts.get_flirts():
    print(flirt)
```

Alternatively, use the `pyflirts.forever` generator function like:

```python
import pyflirts

for flirt in pyflirts.forever():
    print(flirt)
```

## Maintainers

The project is maintained by the members of the Pyflirts Community:

- Shiva Mishra

## Contributing

- The code is licensed under the [MIT Licence]
- Please use GitHub issues to submit bugs and report issues
- Feel free to contribute to the code
- Feel free to contribute flirt lines (via pull request or [proposal issue](https://github.com/pyflirts/pyflirts/issues/))

## Website and documentation

The pyflirts website and documentation is comming soon....

## credits 
- [Shiva Mishra](https://github.com/shivamishrame)
- [pyjokes](https://github.com/pyjokes/pyjpkes)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/pyflirts/pyflirts",
    "name": "pyflirts",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": null,
    "keywords": null,
    "author": "Shiva Mishra",
    "author_email": "pyflirts@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/13/1e/67e1e860bef7f4bb49de12940bc6d7414d82d943b441c6f299f44a2f948c/pyflirts-0.0.1.tar.gz",
    "platform": null,
    "description": "<h1 align=\"center\"><b>Py-Flirts</b></h1>\n\n<p align=\"center\"><img src=\"\" alt=\"Pyflirts\"></p>\n\n<h2 align=\"center\">one line flirt lines for programmers ( flirt lines as a service )</h3>\n\n<h3 align=\"center\">\n    Packed with the latest flirt lines, in diff langs etc. </br>\n</h3>\n\n---\n\n![GitHub forks](https://img.shields.io/github/forks/Pyflirts/pyflirts?style=social)\n![GitHub Repo stars](https://img.shields.io/github/stars/pyflirts/pyflirts?style=social)\n\n![Maintenance](https://img.shields.io/badge/Maintained%3F-Yes-white?&style=social&logo=hugo)\n![GitHub license](https://img.shields.io/github/license/pyflirts/pyflirts?&style=social&logo=github)\n\n![Python](https://img.shields.io/badge/Python-v3.10-white?style=social&logo=python)\n[![Documentation](https://img.shields.io/badge/Documentations-docs.Pyflirts.tech-white?&style=social&logo=gitbook)]()\n\n[![Telegram Group](https://img.shields.io/badge/Telegram-Group-white?&style=social&logo=telegram)](https://telegram.dog/pyflirtschat)\n[![Telegram Channel](https://img.shields.io/badge/Telegram-Channel-white?&style=social&logo=telegram)](https://telegram.dog/pyflirts)\n\n---\n\n## Installation\n\nInstall the `pyflirts` module with pip:\n\n```bash\npip3 install pyflirts\n```\n\n## Usage\n\n### Python\n\nYou can also access the flirt lines in your own project by importing `pyflirts` and using the function\n`get_flirt`:\n\n```pycon\n>>> import pyflirts\n>>> print(pyflirts.get_flirt())\nDo you believe in love at first sight, or should I walk by again?\n```\n\nWe support many languages, and have multiple flirt lines categories like:\n\n```pycon\n>>> import pyflirts\n>>> print(pyflirts.get_flirt(\"es\"))  # spanish flirt lines\n\u00bfCrees en el amor a primera vista, o debo pasar otra vez?\n>>> print(pyflirts.get_flirt(\"es\", \"crazy\"))  # spanish crazy flirt lines\nSi fueras una bebida, ser\u00edas el c\u00f3ctel perfecto: irresistible y siempre refrescante.\n```\n\nThere is also a `get_flirts` function which returns all the flirts line in the given language and category like:\n\n```python\nimport pyflirts\n\nfor flirt in pyflirts.get_flirts():\n    print(flirt)\n```\n\nAlternatively, use the `pyflirts.forever` generator function like:\n\n```python\nimport pyflirts\n\nfor flirt in pyflirts.forever():\n    print(flirt)\n```\n\n## Maintainers\n\nThe project is maintained by the members of the Pyflirts Community:\n\n- Shiva Mishra\n\n## Contributing\n\n- The code is licensed under the [MIT Licence]\n- Please use GitHub issues to submit bugs and report issues\n- Feel free to contribute to the code\n- Feel free to contribute flirt lines (via pull request or [proposal issue](https://github.com/pyflirts/pyflirts/issues/))\n\n## Website and documentation\n\nThe pyflirts website and documentation is comming soon....\n\n## credits \n- [Shiva Mishra](https://github.com/shivamishrame)\n- [pyjokes](https://github.com/pyjokes/pyjpkes)\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "one line flirt lines for programmers ( flirt lines as a service )",
    "version": "0.0.1",
    "project_urls": {
        "Homepage": "https://github.com/pyflirts/pyflirts"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3c647349958f665a51feefb6a14937941472c25f280885ad2d603ff02372a89f",
                "md5": "dc32f58daf17cf3c1e2dc7702b35e0ce",
                "sha256": "6aff0b0cee50e24af9abacd86b9442f531cf5c959a7615bc9a708bc266511d78"
            },
            "downloads": -1,
            "filename": "pyflirts-0.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "dc32f58daf17cf3c1e2dc7702b35e0ce",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 30093,
            "upload_time": "2024-10-13T06:39:38",
            "upload_time_iso_8601": "2024-10-13T06:39:38.066898Z",
            "url": "https://files.pythonhosted.org/packages/3c/64/7349958f665a51feefb6a14937941472c25f280885ad2d603ff02372a89f/pyflirts-0.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "131e67e1e860bef7f4bb49de12940bc6d7414d82d943b441c6f299f44a2f948c",
                "md5": "113545a93d3730720ac3fd85ee7ea0a8",
                "sha256": "ffc4f24d28f36d159859d09a755741f218bfa983fa4985f547c2dd8b6708ddbc"
            },
            "downloads": -1,
            "filename": "pyflirts-0.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "113545a93d3730720ac3fd85ee7ea0a8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 29902,
            "upload_time": "2024-10-13T06:39:39",
            "upload_time_iso_8601": "2024-10-13T06:39:39.875699Z",
            "url": "https://files.pythonhosted.org/packages/13/1e/67e1e860bef7f4bb49de12940bc6d7414d82d943b441c6f299f44a2f948c/pyflirts-0.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-13 06:39:39",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pyflirts",
    "github_project": "pyflirts",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pyflirts"
}
        
Elapsed time: 0.51588s