Metadata-Version: 2.1
Name: ccf_spark
Version: 0.2.2
Summary: A little CCF implementation in a Spark context with networkx
Home-page: https://github.com/ErnestBidouille/ccf-spark
Author: Théo Chennebault
Author-email: theo.chennebault@le-cab-politique.fr
License: MIT
Description: # CcfSpark version 0.2.2
        
        A little CCF implementation in a Spark context with networkx.
        
        ## Installation 
        
        Use the package manager [pip](https://pip.pypa.io/en/stable/) to install.
        
        ```bash
        pip install ccf_spark
        ```
        
        ## Usage
        
        ```python
        import ccf_spark
        
        sc = SparkContext()
        p = ccf_spark.CcfSpark(
            sc,
            secondary_sorting=True,
        )
        p.iterate_all()
        print(p.print())
        ```
        Or see example.py 
        
        ## Authors
        - Théo Chennebault
        - Louis Ledeoux
        
        ## Contributing
        Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
        
        ## License
        [MIT](https://choosealicense.com/licenses/mit/)
Platform: UNKNOWN
Description-Content-Type: text/markdown
