fpyutils


Namefpyutils JSON
Version 4.0.1 PyPI version JSON
download
home_pagehttps://blog.franco.net.eu.org/software/#fpyutils
SummaryA collection of useful non-standard Python functions which aim to be simple to use, highly readable but not efficient.
upload_time2023-11-08 22:06:45
maintainer
docs_urlNone
authorFranco Masotti
requires_python<4,>=3.7
licenseGPLv3+
keywords utilities text command
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # fpyutils

[![PyPI fpyutils version](https://img.shields.io/pypi/v/fpyutils.svg)](https://pypi.org/project/fpyutils/)
[![Debian 12 package](https://repology.org/badge/version-for-repo/debian_12/fpyutils.svg)](https://repology.org/project/fpyutils/versions)
[![nixpkgs unstable package](https://repology.org/badge/version-for-repo/nix_unstable/python:fpyutils.svg)](https://repology.org/project/python:fpyutils/versions)
[![Anaconda.org](https://anaconda.org/conda-forge/fpyutils/badges/version.svg)](https://anaconda.org/conda-forge/fpyutils)
[![Downloads](https://pepy.tech/badge/fpyutils)](https://pepy.tech/project/fpyutils)
[![Dependent repos (via libraries.io)](https://img.shields.io/librariesio/dependent-repos/pypi/fpyutils.svg)](https://libraries.io/pypi/fpyutils/dependents)
[![Buy me a coffee](assets/buy_me_a_coffee.svg)](https://buymeacoff.ee/frnmst)

A collection of useful non-standard Python functions which aim to be
simple to use, highly readable but not efficient.

<!--TOC-->

- [fpyutils](#fpyutils)
  - [Documentation](#documentation)
  - [API examples](#api-examples)
  - [License](#license)
  - [Changelog and trusted source](#changelog-and-trusted-source)
  - [Support this project](#support-this-project)

<!--TOC-->

## Documentation

<https://docs.franco.net.eu.org/fpyutils/>

## API examples

```python
>>> import fpyutils
>>> f = open('foo.txt')
>>> f.read()
"This is\nfoo.\nfoo\nThis is\nnot\nbar.\nAnd it's\n    foo\n\nBye!\n"
>>> fpyutils.filelines.get_line_matches('foo.txt','foo',5)
{1: 3, 2: 8}
```

## License

Copyright (C) 2017-2023 [Franco Masotti](https://blog.franco.net.eu.org/about/#contacts)

fpyutils is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation, either version 3 of the License, or (at your
option) any later version.

fpyutils is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
more details.

You should have received a copy of the GNU General Public License along
with fpyutils. If not, see <http://www.gnu.org/licenses/>.

## Changelog and trusted source

You can check the authenticity of new releases using my public key.

Changelogs, instructions, sources and keys can be found at
[blog.franco.net.eu.org/software/#fpyutils](https://blog.franco.net.eu.org/software/#fpyutils).

## Support this project

- [Buy Me a Coffee](https://www.buymeacoffee.com/frnmst)
- Bitcoin: `bc1qnkflazapw3hjupawj0lm39dh9xt88s7zal5mwu`
- Monero: `84KHWDTd9hbPyGwikk33Qp5GW7o7zRwPb8kJ6u93zs4sNMpDSnM5ZTWVnUp2cudRYNT6rNqctnMQ9NbUewbj7MzCBUcrQEY`
- Dogecoin: `DMB5h2GhHiTNW7EcmDnqkYpKs6Da2wK3zP`
- Vertcoin: `vtc1qd8n3jvkd2vwrr6cpejkd9wavp4ld6xfu9hkhh0`

            

Raw data

            {
    "_id": null,
    "home_page": "https://blog.franco.net.eu.org/software/#fpyutils",
    "name": "fpyutils",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "<4,>=3.7",
    "maintainer_email": "",
    "keywords": "utilities,text,command",
    "author": "Franco Masotti",
    "author_email": "franco.masotti@tutanota.com",
    "download_url": "https://files.pythonhosted.org/packages/1b/31/9441a8aa548a65d852a12c67036796691b5a90ca49ab09e4437759d9b91f/fpyutils-4.0.1.tar.gz",
    "platform": null,
    "description": "# fpyutils\n\n[![PyPI fpyutils version](https://img.shields.io/pypi/v/fpyutils.svg)](https://pypi.org/project/fpyutils/)\n[![Debian 12 package](https://repology.org/badge/version-for-repo/debian_12/fpyutils.svg)](https://repology.org/project/fpyutils/versions)\n[![nixpkgs unstable package](https://repology.org/badge/version-for-repo/nix_unstable/python:fpyutils.svg)](https://repology.org/project/python:fpyutils/versions)\n[![Anaconda.org](https://anaconda.org/conda-forge/fpyutils/badges/version.svg)](https://anaconda.org/conda-forge/fpyutils)\n[![Downloads](https://pepy.tech/badge/fpyutils)](https://pepy.tech/project/fpyutils)\n[![Dependent repos (via libraries.io)](https://img.shields.io/librariesio/dependent-repos/pypi/fpyutils.svg)](https://libraries.io/pypi/fpyutils/dependents)\n[![Buy me a coffee](assets/buy_me_a_coffee.svg)](https://buymeacoff.ee/frnmst)\n\nA collection of useful non-standard Python functions which aim to be\nsimple to use, highly readable but not efficient.\n\n<!--TOC-->\n\n- [fpyutils](#fpyutils)\n  - [Documentation](#documentation)\n  - [API examples](#api-examples)\n  - [License](#license)\n  - [Changelog and trusted source](#changelog-and-trusted-source)\n  - [Support this project](#support-this-project)\n\n<!--TOC-->\n\n## Documentation\n\n<https://docs.franco.net.eu.org/fpyutils/>\n\n## API examples\n\n```python\n>>> import fpyutils\n>>> f = open('foo.txt')\n>>> f.read()\n\"This is\\nfoo.\\nfoo\\nThis is\\nnot\\nbar.\\nAnd it's\\n    foo\\n\\nBye!\\n\"\n>>> fpyutils.filelines.get_line_matches('foo.txt','foo',5)\n{1: 3, 2: 8}\n```\n\n## License\n\nCopyright (C) 2017-2023 [Franco Masotti](https://blog.franco.net.eu.org/about/#contacts)\n\nfpyutils is free software: you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the\nFree Software Foundation, either version 3 of the License, or (at your\noption) any later version.\n\nfpyutils is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\n\nYou should have received a copy of the GNU General Public License along\nwith fpyutils. If not, see <http://www.gnu.org/licenses/>.\n\n## Changelog and trusted source\n\nYou can check the authenticity of new releases using my public key.\n\nChangelogs, instructions, sources and keys can be found at\n[blog.franco.net.eu.org/software/#fpyutils](https://blog.franco.net.eu.org/software/#fpyutils).\n\n## Support this project\n\n- [Buy Me a Coffee](https://www.buymeacoffee.com/frnmst)\n- Bitcoin: `bc1qnkflazapw3hjupawj0lm39dh9xt88s7zal5mwu`\n- Monero: `84KHWDTd9hbPyGwikk33Qp5GW7o7zRwPb8kJ6u93zs4sNMpDSnM5ZTWVnUp2cudRYNT6rNqctnMQ9NbUewbj7MzCBUcrQEY`\n- Dogecoin: `DMB5h2GhHiTNW7EcmDnqkYpKs6Da2wK3zP`\n- Vertcoin: `vtc1qd8n3jvkd2vwrr6cpejkd9wavp4ld6xfu9hkhh0`\n",
    "bugtrack_url": null,
    "license": "GPLv3+",
    "summary": "A collection of useful non-standard Python functions which aim to be simple to use, highly readable but not efficient.",
    "version": "4.0.1",
    "project_urls": {
        "Homepage": "https://blog.franco.net.eu.org/software/#fpyutils"
    },
    "split_keywords": [
        "utilities",
        "text",
        "command"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5fba4a0aa00af38dde32e9b575052217b1e8d34e31106a079a74d83caafc26af",
                "md5": "94d4845606797cc6bf7d645d0b688209",
                "sha256": "006cfbdbd87915d8a1c5b7062b6c8d2f4f9fd12c3e707d89c27e6abd6c67c6b2"
            },
            "downloads": -1,
            "filename": "fpyutils-4.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "94d4845606797cc6bf7d645d0b688209",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4,>=3.7",
            "size": 24073,
            "upload_time": "2023-11-08T22:06:43",
            "upload_time_iso_8601": "2023-11-08T22:06:43.777209Z",
            "url": "https://files.pythonhosted.org/packages/5f/ba/4a0aa00af38dde32e9b575052217b1e8d34e31106a079a74d83caafc26af/fpyutils-4.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1b319441a8aa548a65d852a12c67036796691b5a90ca49ab09e4437759d9b91f",
                "md5": "3fd8697c172d8209a314e4dbc44f8390",
                "sha256": "5ee8448b09863d5905ad22cf5f6c8af79d3b314617ac8fbded48eb2a414988e6"
            },
            "downloads": -1,
            "filename": "fpyutils-4.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "3fd8697c172d8209a314e4dbc44f8390",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4,>=3.7",
            "size": 21898,
            "upload_time": "2023-11-08T22:06:45",
            "upload_time_iso_8601": "2023-11-08T22:06:45.319725Z",
            "url": "https://files.pythonhosted.org/packages/1b/31/9441a8aa548a65d852a12c67036796691b5a90ca49ab09e4437759d9b91f/fpyutils-4.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-08 22:06:45",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "fpyutils"
}
        
Elapsed time: 0.13577s