Metadata-Version: 2.1
Name: py_cppstd
Version: 0.2.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  

[![OSCS Status](https://www.oscs1024.com/platform/badge/Chinese-Cyq20100313/py_cppstd.svg?size=small)](https://www.oscs1024.com/project/Chinese-Cyq20100313/py_cppstd?ref=badge_small)

### Installtion
    pip install py_cppstd

### Import
    from py_cppstd import std  
__then__:  
`std.load()` 
[variables are different after uses?](why_load.md)  
__or__  
`std = std()`

### *iostream* Usage

**recommend** to use ***;*** when end line.  

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