Metadata-Version: 2.1
Name: deepextract
Version: 1.0.9
Summary: A Python library to parse JSON, YAML files and extract deeply nested keys.
Home-page: https://github.com/ya332/deepextract
Author: Yigit Alparslan
Author-email: alparslanyigitcan@gmail.com
License: MIT
Description: [![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://gitHub.com/ya332/deepextract/graphs/commit-activity)
        [![made-with-python](https://img.shields.io/badge/Made%20with-Python-1f425f.svg)](https://www.python.org/)
        [![PyPI version fury.io](https://badge.fury.io/py/deepextract.svg)](https://gitHub.com/ya332/deepextract/)
        [![PyPI pyversions](https://img.shields.io/pypi/pyversions/deepextract.svg)](https://gitHub.com/ya332/deepextract/)
        [![PyPI status](https://img.shields.io/pypi/status/deepextract.svg)](https://pypi.python.org/pypi/deepextract/)
        [![Downloads](https://pepy.tech/badge/deepextract)](https://pepy.tech/project/deepextract)
        [![GitTutorial](https://img.shields.io/badge/PR-Welcome-%23FF8300.svg?)](https://git-scm.com/book/en/v2/GitHub-Contributing-to-a-Project)
        
        
        # deepextract 🔥
        
        A Python library to parse JSON, YAML files and extract deeply nested keys.
        
        ## Usage 🎯
        
        See examples.
        
        ## Installation ⚠️
        
        ```sh
        pip install deepextract
        ```
        
        ## Requirements 🌌
        
        Support for Python 3.6 and greater.
        
        ## Development 🛎️
        
        ```sh
        conda create -n deepextract_env python=3.7 # do it once
        conda install -r requirements.txt
        ```
        
        Source code is in deepextract. Start editing and Happy contributing! 🌟
        
        ## Deployment to PyPI 💎
        
        Based on descriptions from [here](https://packaging.python.org/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/), whenever project owner pushes a tagged commit to this Git repository remote on GitHub, GH workflow will publish it to PyPI.
        
        And it'll publish any push to TestPyPI which is useful for providing test builds to repo's alpha users as well as making sure that your release pipeline remains healthy.
        
        Manual deploy to TestPyPI:
        ```sh
        python setup.py sdist bdist_wheel
        twine upload -r testpypi dist/*
        ```
        
        ## Running tests 🔥
        
        ```sh
        python -m unittest
        ```
        
        ## Licence ✅
        
        MIT. See LICENSE.md
        
        ## Version
        
        Follows syntax vM.M.P
        First is major and means not backwards compatible changes. Second is minor and means backwards compatible changes. 
        Third is patch and means small backwards compatible changes.
        
        The manual place of source of truth is at `deepextract/__init__.py`
        
        Source: https://packaging.python.org/guides/single-sourcing-package-version/#single-sourcing-the-version
        
        ## Authors ✏️
        
        `deepextract` was written by `Yigit Alparslan <alparslanyigitcan@gmail.com>`.
        
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
