13 changed files with 91 additions and 105 deletions
@ -0,0 +1,3 @@
|
||||
# Contributing |
||||
|
||||
See https://docs.franco.net.eu.org/md-toc/contributing.html |
@ -1,6 +1,6 @@
|
||||
global-include LICENSE.txt |
||||
global-include README.rst |
||||
global-include CONTRIBUTING.rst |
||||
global-include README.md |
||||
global-include CONTRIBUTING.md |
||||
exclude *.yaml |
||||
exclude *.yml |
||||
recursive-exclude assets * |
||||
|
@ -0,0 +1,60 @@
|
||||
# fpyutils |
||||
|
||||
[](https://pypi.org/project/fpyutils/) |
||||
[](https://raw.githubusercontent.com/frnmst/fpyutils/master/LICENSE.txt) |
||||
 |
||||
[](https://pepy.tech/project/fpyutils) |
||||
[](https://libraries.io/pypi/fpyutils/dependents) |
||||
[](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--> |
||||
|
||||
## 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-2022 Franco Masotti (franco \D\o\T masotti {-A-T-} tutanota \D\o\T com) |
||||
|
||||
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](https://blog.franco.net.eu.org/software/). |
||||
|
||||
## Crypto donations |
||||
|
||||
- Bitcoin: bc1qnkflazapw3hjupawj0lm39dh9xt88s7zal5mwu |
||||
- Monero: |
||||
84KHWDTd9hbPyGwikk33Qp5GW7o7zRwPb8kJ6u93zs4sNMpDSnM5ZTWVnUp2cudRYNT6rNqctnMQ9NbUewbj7MzCBUcrQEY |
||||
- Dogecoin: DMB5h2GhHiTNW7EcmDnqkYpKs6Da2wK3zP |
||||
- Vertcoin: vtc1qd8n3jvkd2vwrr6cpejkd9wavp4ld6xfu9hkhh0 |
@ -1,85 +0,0 @@
|
||||
fpyutils |
||||
======== |
||||
|
||||
|pypiver| |license| |pyver| |downloads| |dependentrepos| |buymeacoffee| |
||||
|
||||
.. |pypiver| image:: https://img.shields.io/pypi/v/fpyutils.svg |
||||
:alt: PyPI fpyutils version |
||||
:target: https://pypi.org/project/fpyutils/ |
||||
|
||||
.. |license| image:: https://img.shields.io/pypi/l/fpyutils.svg?color=blue |
||||
:alt: PyPI - License |
||||
:target: https://raw.githubusercontent.com/frnmst/fpyutils/master/LICENSE.txt |
||||
|
||||
.. |pyver| image:: https://img.shields.io/pypi/pyversions/fpyutils.svg |
||||
:alt: PyPI - Python Version |
||||
|
||||
.. |downloads| image:: https://pepy.tech/badge/fpyutils |
||||
:alt: Downloads |
||||
:target: https://pepy.tech/project/fpyutils |
||||
|
||||
.. |dependentrepos| image:: https://img.shields.io/librariesio/dependent-repos/pypi/fpyutils.svg |
||||
:alt: Dependent repos (via libraries.io) |
||||
:target: https://libraries.io/pypi/fpyutils/dependents |
||||
|
||||
.. |buymeacoffee| image:: assets/buy_me_a_coffee.svg |
||||
:alt: Buy me a coffee |
||||
:target: https://buymeacoff.ee/frnmst |
||||
|
||||
A collection of useful non-standard Python functions which aim to be simple to |
||||
use, highly readable but not efficient. |
||||
|
||||
Documentation |
||||
------------- |
||||
|
||||
https://docs.franco.net.eu.org/fpyutils/ |
||||
|
||||
API examples |
||||
------------ |
||||
|
||||
|
||||
:: |
||||
|
||||
|
||||
>>> 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} |
||||
|
||||
|
||||
.. _public API: https://docs.franco.net.eu.org/fpyutils/api.html |
||||
|
||||
License |
||||
------- |
||||
|
||||
Copyright (C) 2017-2021 Franco Masotti (franco \D\o\T masotti {-A-T-} tutanota \D\o\T com) |
||||
|
||||
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 <https://blog.franco.net.eu.org/software/>`_. |
||||
|
||||
Crypto donations |
||||
---------------- |
||||
|
||||
- Bitcoin: bc1qnkflazapw3hjupawj0lm39dh9xt88s7zal5mwu |
||||
- Monero: 84KHWDTd9hbPyGwikk33Qp5GW7o7zRwPb8kJ6u93zs4sNMpDSnM5ZTWVnUp2cudRYNT6rNqctnMQ9NbUewbj7MzCBUcrQEY |
||||
- Dogecoin: DMB5h2GhHiTNW7EcmDnqkYpKs6Da2wK3zP |
||||
- Vertcoin: vtc1qd8n3jvkd2vwrr6cpejkd9wavp4ld6xfu9hkhh0 |
@ -1,4 +1,4 @@
|
||||
Contributing |
||||
============ |
||||
|
||||
`Contributing [common] <https://docs.franco.net.eu.org/fpydocs/contributing_common.html>`_ version `4.1.2 <https://software.franco.net.eu.org/frnmst/fpydocs/src/tag/4.1.2>`_ |
||||
`Contributing [common] <https://docs.franco.net.eu.org/fpydocs/contributing_common.html>`_ version `4.3.0 <https://software.franco.net.eu.org/frnmst/fpydocs/src/tag/4.3.0>`_ |
||||
|
@ -1,4 +1,4 @@
|
||||
Workflow |
||||
======== |
||||
|
||||
`Workflow [common] <https://docs.franco.net.eu.org/fpydocs/workflow_common.html>`_ version `4.1.2 <https://software.franco.net.eu.org/frnmst/fpydocs/src/tag/4.1.2>`_ |
||||
`Workflow [common] <https://docs.franco.net.eu.org/fpydocs/workflow_common.html>`_ version `4.3.0 <https://software.franco.net.eu.org/frnmst/fpydocs/src/tag/4.3.0>`_ |
||||
|
Loading…
Reference in new issue