Metadata-Version: 2.1
Name: php-whisperer
Version: 1.5
Summary: Read and write php arrays with python
Home-page: https://github.com/matthewnicol/php_whisperer
Author: Matthew Nicol
Author-email: matthew.b.nicol@gmail.com
License: UNKNOWN
Description: # php_whisperer
        *"I heard you help people with PHP problems?" "Truth is, I help PHP with people problems."*
        
        Convert PHP arrays to Python objects using read_php
        
        ```
        from php_whisperer import read_php
        read_php('/tmp/a_php_file.py', variable='data')
        ```
        Result:
        ```
        {'My Php Array': ['You', 'get', 'the', 'point']}
        ```
        
        Convert Python lists and dictionaries to PHP using generate_php
        
        ```
        from php_whisperer import generate_php
        generate_php([1, 2, 3, 4])
        ```
        Result:
        ```
        array(1, 2, 3, 4);
        ```
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
