rhinopics


Namerhinopics JSON
Version 0.2.4 PyPI version JSON
download
home_pagehttps://github.com/axelfahy/rhinopics
SummaryRhinopics, let the fat unicorn rename yours pics!
upload_time2024-07-07 13:04:05
maintainerAxel Fahy
docs_urlNone
authorNone
requires_python>=3.10
licenseMIT License Copyright (c) 2019 Axel Fahy Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords pictures photos renaming
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            # rhinopics
> Rhinopics, let the fat unicorn rename your pics!

<p align="left">
    <a href="https://pypi.org/project/rhinopics/">
        <img src="https://img.shields.io/pypi/v/rhinopics.svg" alt="latest release" /></a>
    <a href="https://travis-ci.com/axelfahy/rhinopics">
        <img src="https://api.travis-ci.com/axelfahy/rhinopics.svg?branch=master" alt="Build Status" /></a>
    <a href="https://pypi.org/project/rhinopics/">
        <img src="https://img.shields.io/badge/python-3.6-blue.svg" alt="Python36" /></a>
</p>

Python CLI application to rename pictures.

The date of the pictures is retrieved from the metadata of the files and concatenate with a given word to create the new name.

Example of output: `word_20190621_001`

A number is added at the end in chronological order, the number of digits depends on the number of pictures having the same date or being in the folder.

## Installation

```sh
pip install rhinopics
```

## Usage example
Examples are available in the docstrings of the functions. Official documentation will soon come out, or not.

## Development setup

Describe how to install all development dependencies and how to run an automated test-suite of some kind. Potentially do this for multiple platforms.

```sh
git clone https://github.com/axelfahy/rhinopics.git
cd rhinopics
python -m venv venv-dev
source venv-dev/bin/activate
pip install -r requirements_dev.txt
pip install -e .
```

## Tests

Soon to come.

```sh
python tests/test_rhinopics.py
```

## Release History

* 0.2.1
    * ADD: Default argument for the keyword is the name of the directory.
* 0.2.0
    * ADD: Flag to modify the extension to lowercase.
    * ADD: Add support for video files.
    * ADD: Restructuration of project.
    * ADD: Progress bar when renaming the files.
    * ADD: Logger
* 0.1.0
    * Initial release.

## Meta

Axel Fahy – axel@fahy.net

Distributed under the MIT license. See ``LICENSE`` for more information.

[https://github.com/axelfahy](https://github.com/axelfahy)

## Contributing

1. Fork it (<https://github.com/yourname/yourproject/fork>)
2. Create your feature branch (`git checkout -b feature/fooBar`)
3. Commit your changes (`git commit -am 'Add some fooBar'`)
4. Push to the branch (`git push origin feature/fooBar`)
5. Create a new Pull Request

## Version number

The version of the package is link to the tag pushed.

To set a new version:

```sh
git tag v0.1.1
git push --tags
```


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/axelfahy/rhinopics",
    "name": "rhinopics",
    "maintainer": "Axel Fahy",
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": "Axel Fahy <axel@fahy.net>",
    "keywords": "pictures, photos, renaming",
    "author": null,
    "author_email": "Axel Fahy <axel@fahy.net>",
    "download_url": "https://files.pythonhosted.org/packages/3f/13/e8d0778fdb6f9d441c0f26b654a146687020570437e423a30cbecef525cf/rhinopics-0.2.4.tar.gz",
    "platform": null,
    "description": "# rhinopics\n> Rhinopics, let the fat unicorn rename your pics!\n\n<p align=\"left\">\n    <a href=\"https://pypi.org/project/rhinopics/\">\n        <img src=\"https://img.shields.io/pypi/v/rhinopics.svg\" alt=\"latest release\" /></a>\n    <a href=\"https://travis-ci.com/axelfahy/rhinopics\">\n        <img src=\"https://api.travis-ci.com/axelfahy/rhinopics.svg?branch=master\" alt=\"Build Status\" /></a>\n    <a href=\"https://pypi.org/project/rhinopics/\">\n        <img src=\"https://img.shields.io/badge/python-3.6-blue.svg\" alt=\"Python36\" /></a>\n</p>\n\nPython CLI application to rename pictures.\n\nThe date of the pictures is retrieved from the metadata of the files and concatenate with a given word to create the new name.\n\nExample of output: `word_20190621_001`\n\nA number is added at the end in chronological order, the number of digits depends on the number of pictures having the same date or being in the folder.\n\n## Installation\n\n```sh\npip install rhinopics\n```\n\n## Usage example\nExamples are available in the docstrings of the functions. Official documentation will soon come out, or not.\n\n## Development setup\n\nDescribe how to install all development dependencies and how to run an automated test-suite of some kind. Potentially do this for multiple platforms.\n\n```sh\ngit clone https://github.com/axelfahy/rhinopics.git\ncd rhinopics\npython -m venv venv-dev\nsource venv-dev/bin/activate\npip install -r requirements_dev.txt\npip install -e .\n```\n\n## Tests\n\nSoon to come.\n\n```sh\npython tests/test_rhinopics.py\n```\n\n## Release History\n\n* 0.2.1\n    * ADD: Default argument for the keyword is the name of the directory.\n* 0.2.0\n    * ADD: Flag to modify the extension to lowercase.\n    * ADD: Add support for video files.\n    * ADD: Restructuration of project.\n    * ADD: Progress bar when renaming the files.\n    * ADD: Logger\n* 0.1.0\n    * Initial release.\n\n## Meta\n\nAxel Fahy \u2013 axel@fahy.net\n\nDistributed under the MIT license. See ``LICENSE`` for more information.\n\n[https://github.com/axelfahy](https://github.com/axelfahy)\n\n## Contributing\n\n1. Fork it (<https://github.com/yourname/yourproject/fork>)\n2. Create your feature branch (`git checkout -b feature/fooBar`)\n3. Commit your changes (`git commit -am 'Add some fooBar'`)\n4. Push to the branch (`git push origin feature/fooBar`)\n5. Create a new Pull Request\n\n## Version number\n\nThe version of the package is link to the tag pushed.\n\nTo set a new version:\n\n```sh\ngit tag v0.1.1\ngit push --tags\n```\n\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2019 Axel Fahy  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "Rhinopics, let the fat unicorn rename yours pics!",
    "version": "0.2.4",
    "project_urls": {
        "Changelog": "https://github.com/axelfahy/rhinopics/CHANGELOG.md",
        "Homepage": "https://github.com/axelfahy/rhinopics",
        "Issues": "https://github.com/axelfahy/rhinopics/issues",
        "Repository": "https://github.com/axelfahy/rhinopics"
    },
    "split_keywords": [
        "pictures",
        " photos",
        " renaming"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f9d5d5da491878ef4e72fd1e3b564b11827c19a60dec8ef622a2866282189860",
                "md5": "60b9d7a2ce648d8f37bf3e0327780c71",
                "sha256": "11505da466f2bd1303efc34385283f7c8d82561a66dd9812e6feb8d6eeb2a864"
            },
            "downloads": -1,
            "filename": "rhinopics-0.2.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "60b9d7a2ce648d8f37bf3e0327780c71",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 10022,
            "upload_time": "2024-07-07T13:04:03",
            "upload_time_iso_8601": "2024-07-07T13:04:03.986470Z",
            "url": "https://files.pythonhosted.org/packages/f9/d5/d5da491878ef4e72fd1e3b564b11827c19a60dec8ef622a2866282189860/rhinopics-0.2.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3f13e8d0778fdb6f9d441c0f26b654a146687020570437e423a30cbecef525cf",
                "md5": "cf8664594852b9f30c9479c193b8f174",
                "sha256": "e08c6a030f2b4e068ea09db669b7c60156f1d428c959c2feeb5b2431d70b14af"
            },
            "downloads": -1,
            "filename": "rhinopics-0.2.4.tar.gz",
            "has_sig": false,
            "md5_digest": "cf8664594852b9f30c9479c193b8f174",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 30228,
            "upload_time": "2024-07-07T13:04:05",
            "upload_time_iso_8601": "2024-07-07T13:04:05.785988Z",
            "url": "https://files.pythonhosted.org/packages/3f/13/e8d0778fdb6f9d441c0f26b654a146687020570437e423a30cbecef525cf/rhinopics-0.2.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-07-07 13:04:05",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "axelfahy",
    "github_project": "rhinopics",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "rhinopics"
}
        
Elapsed time: 9.84523s