Metadata-Version: 2.1
Name: py-cppstd
Version: 0.2
Summary: ['Using cpp std iostream lib in py']
Home-page: https://github.com/Chinese-Cyq20100313/py_cppstd
Author: Cyan_Changes
Author-email: 1491326171@qq.com
Maintainer: Cyan_Changes
Maintainer-email: 1491326171@qq.com
License: Apache 2.0
Platform: all
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Printing
Description-Content-Type: text/markdown
License-File: LICENSE.txt

## Python C++ std iostream
Using C++ std lib iostream in py

### Installtion
    pip install py_cppstd

### Import
    from py_cppstd import std  
__then__:  
`std.load()`  
__or__  
`std = std()`

### How to use *iostream*
**recommend** to use ***;*** when end line.  

    std.include('iostream') # include 'iostream'  
    # prints 114514 and '\n' and flush the stream  
    std.cout << 114514 << std.endl  
    num: int  
    std.cin >> num # input a number to num

