Metadata-Version: 2.1
Name: birthchartSVG
Version: 1.0.0.1
Summary: Birthchart SVG generator for astrology.
Home-page: https://github.com/g-battaglia/birthchartSVG
Author: Giacomo Battaglia
Author-email: battaglia.giacomo@yahoo.it
License: UNKNOWN
Description: # birthchartSVG
        
        Birthchart SVG is a chart generator based on Kerykeion and Opeanstro.
        Like the titles says it prints out SVG file of the birthchart,
        it's very easy to use.
        
        ```python
        # Install:
        >>> pip3 install birthchartSVG
        
        #Import:
        >>> import birthchartSVG as br
        
        # Make the instance:
        >>> kanye = br.MakeInstance("Kanye", 1977, 6, 8, 8, 45, "Atlanta")
        
        # Set the output directory for the SVG:
        >>> kanye.set_dir = "/Users/{YourName}"
        
        #Generate the SVG:
        >>> kanye.makeSVG()
        
        
        SVG generated successfully!
        
        ```
        ![alt text](https://raw.githubusercontent.com/g-battaglia/birthchartSVG/master/birthchartSVG/data/template/sample.svg)
        
        ## Documentation
        
        Just like in the exemple, first make an instance and then use the makeSVG() to generate the SVG chart.
        The file generated has the name you inserted followed by Chart.svg
        
        ## Installation
        
        BirtchartSVG is Python 3 package, make sure you have Python 3 installed on your system. 
        
        
        ## Development
        
        You can clone this repository or download a zip file using the right side buttons. 
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
