├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── README.rst ├── contrib └── topical_almuten.py ├── docs ├── Makefile ├── README.md ├── make.bat └── source │ ├── _static │ ├── python-interpreter-osx.png │ ├── python-interpreter-win32.png │ └── xcode-command-line-tools.png │ ├── conf.py │ ├── faq.rst │ ├── index.rst │ ├── installation.rst │ └── tutorials │ ├── chart-properties.rst │ ├── create-chart.rst │ ├── index.rst │ └── intro-python.rst ├── flatlib ├── __init__.py ├── angle.py ├── aspects.py ├── chart.py ├── const.py ├── datetime.py ├── dignities │ ├── __init__.py │ ├── accidental.py │ ├── essential.py │ └── tables.py ├── ephem │ ├── __init__.py │ ├── eph.py │ ├── ephem.py │ ├── swe.py │ └── tools.py ├── geopos.py ├── lists.py ├── object.py ├── predictives │ ├── __init__.py │ ├── primarydirections.py │ ├── profections.py │ └── returns.py ├── props.py ├── protocols │ ├── __init__.py │ ├── almutem.py │ ├── behavior.py │ └── temperament.py ├── resources │ ├── README.md │ └── swefiles │ │ ├── fixstars.cat │ │ ├── seas_12.se1 │ │ ├── seas_18.se1 │ │ ├── seas_24.se1 │ │ ├── sefstars.txt │ │ ├── semo_12.se1 │ │ ├── semo_18.se1 │ │ ├── semo_24.se1 │ │ ├── sepl_12.se1 │ │ ├── sepl_18.se1 │ │ └── sepl_24.se1 ├── tools │ ├── __init__.py │ ├── arabicparts.py │ ├── chartdynamics.py │ └── planetarytime.py └── utils.py ├── recipes ├── README.md ├── accidentaldignities.py ├── almutem.py ├── arabicparts.py ├── aspects.py ├── behavior.py ├── chartdynamics.py ├── eclipses.py ├── essentialdignities.py ├── leapyears.py ├── planetarytime.py ├── primarydirections.py ├── profections.py ├── solarreturn.py ├── solaryears.py └── temperament.py ├── requirements.txt ├── scripts ├── build.py ├── clean.py └── utils.py ├── setup.py └── tests ├── test_angles.py └── test_chart.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/README.rst -------------------------------------------------------------------------------- /contrib/topical_almuten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/contrib/topical_almuten.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/_static/python-interpreter-osx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/docs/source/_static/python-interpreter-osx.png -------------------------------------------------------------------------------- /docs/source/_static/python-interpreter-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/docs/source/_static/python-interpreter-win32.png -------------------------------------------------------------------------------- /docs/source/_static/xcode-command-line-tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/docs/source/_static/xcode-command-line-tools.png -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/docs/source/faq.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/docs/source/installation.rst -------------------------------------------------------------------------------- /docs/source/tutorials/chart-properties.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/docs/source/tutorials/chart-properties.rst -------------------------------------------------------------------------------- /docs/source/tutorials/create-chart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/docs/source/tutorials/create-chart.rst -------------------------------------------------------------------------------- /docs/source/tutorials/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/docs/source/tutorials/index.rst -------------------------------------------------------------------------------- /docs/source/tutorials/intro-python.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/docs/source/tutorials/intro-python.rst -------------------------------------------------------------------------------- /flatlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/__init__.py -------------------------------------------------------------------------------- /flatlib/angle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/angle.py -------------------------------------------------------------------------------- /flatlib/aspects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/aspects.py -------------------------------------------------------------------------------- /flatlib/chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/chart.py -------------------------------------------------------------------------------- /flatlib/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/const.py -------------------------------------------------------------------------------- /flatlib/datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/datetime.py -------------------------------------------------------------------------------- /flatlib/dignities/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/dignities/__init__.py -------------------------------------------------------------------------------- /flatlib/dignities/accidental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/dignities/accidental.py -------------------------------------------------------------------------------- /flatlib/dignities/essential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/dignities/essential.py -------------------------------------------------------------------------------- /flatlib/dignities/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/dignities/tables.py -------------------------------------------------------------------------------- /flatlib/ephem/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/ephem/__init__.py -------------------------------------------------------------------------------- /flatlib/ephem/eph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/ephem/eph.py -------------------------------------------------------------------------------- /flatlib/ephem/ephem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/ephem/ephem.py -------------------------------------------------------------------------------- /flatlib/ephem/swe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/ephem/swe.py -------------------------------------------------------------------------------- /flatlib/ephem/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/ephem/tools.py -------------------------------------------------------------------------------- /flatlib/geopos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/geopos.py -------------------------------------------------------------------------------- /flatlib/lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/lists.py -------------------------------------------------------------------------------- /flatlib/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/object.py -------------------------------------------------------------------------------- /flatlib/predictives/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/predictives/__init__.py -------------------------------------------------------------------------------- /flatlib/predictives/primarydirections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/predictives/primarydirections.py -------------------------------------------------------------------------------- /flatlib/predictives/profections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/predictives/profections.py -------------------------------------------------------------------------------- /flatlib/predictives/returns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/predictives/returns.py -------------------------------------------------------------------------------- /flatlib/props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/props.py -------------------------------------------------------------------------------- /flatlib/protocols/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/protocols/__init__.py -------------------------------------------------------------------------------- /flatlib/protocols/almutem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/protocols/almutem.py -------------------------------------------------------------------------------- /flatlib/protocols/behavior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/protocols/behavior.py -------------------------------------------------------------------------------- /flatlib/protocols/temperament.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/protocols/temperament.py -------------------------------------------------------------------------------- /flatlib/resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/resources/README.md -------------------------------------------------------------------------------- /flatlib/resources/swefiles/fixstars.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/resources/swefiles/fixstars.cat -------------------------------------------------------------------------------- /flatlib/resources/swefiles/seas_12.se1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/resources/swefiles/seas_12.se1 -------------------------------------------------------------------------------- /flatlib/resources/swefiles/seas_18.se1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/resources/swefiles/seas_18.se1 -------------------------------------------------------------------------------- /flatlib/resources/swefiles/seas_24.se1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/resources/swefiles/seas_24.se1 -------------------------------------------------------------------------------- /flatlib/resources/swefiles/sefstars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/resources/swefiles/sefstars.txt -------------------------------------------------------------------------------- /flatlib/resources/swefiles/semo_12.se1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/resources/swefiles/semo_12.se1 -------------------------------------------------------------------------------- /flatlib/resources/swefiles/semo_18.se1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/resources/swefiles/semo_18.se1 -------------------------------------------------------------------------------- /flatlib/resources/swefiles/semo_24.se1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/resources/swefiles/semo_24.se1 -------------------------------------------------------------------------------- /flatlib/resources/swefiles/sepl_12.se1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/resources/swefiles/sepl_12.se1 -------------------------------------------------------------------------------- /flatlib/resources/swefiles/sepl_18.se1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/resources/swefiles/sepl_18.se1 -------------------------------------------------------------------------------- /flatlib/resources/swefiles/sepl_24.se1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/resources/swefiles/sepl_24.se1 -------------------------------------------------------------------------------- /flatlib/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/tools/__init__.py -------------------------------------------------------------------------------- /flatlib/tools/arabicparts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/tools/arabicparts.py -------------------------------------------------------------------------------- /flatlib/tools/chartdynamics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/tools/chartdynamics.py -------------------------------------------------------------------------------- /flatlib/tools/planetarytime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/tools/planetarytime.py -------------------------------------------------------------------------------- /flatlib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/flatlib/utils.py -------------------------------------------------------------------------------- /recipes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/recipes/README.md -------------------------------------------------------------------------------- /recipes/accidentaldignities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/recipes/accidentaldignities.py -------------------------------------------------------------------------------- /recipes/almutem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/recipes/almutem.py -------------------------------------------------------------------------------- /recipes/arabicparts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/recipes/arabicparts.py -------------------------------------------------------------------------------- /recipes/aspects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/recipes/aspects.py -------------------------------------------------------------------------------- /recipes/behavior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/recipes/behavior.py -------------------------------------------------------------------------------- /recipes/chartdynamics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/recipes/chartdynamics.py -------------------------------------------------------------------------------- /recipes/eclipses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/recipes/eclipses.py -------------------------------------------------------------------------------- /recipes/essentialdignities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/recipes/essentialdignities.py -------------------------------------------------------------------------------- /recipes/leapyears.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/recipes/leapyears.py -------------------------------------------------------------------------------- /recipes/planetarytime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/recipes/planetarytime.py -------------------------------------------------------------------------------- /recipes/primarydirections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/recipes/primarydirections.py -------------------------------------------------------------------------------- /recipes/profections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/recipes/profections.py -------------------------------------------------------------------------------- /recipes/solarreturn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/recipes/solarreturn.py -------------------------------------------------------------------------------- /recipes/solaryears.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/recipes/solaryears.py -------------------------------------------------------------------------------- /recipes/temperament.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/recipes/temperament.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyswisseph==2.08.00-1 2 | -------------------------------------------------------------------------------- /scripts/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/scripts/build.py -------------------------------------------------------------------------------- /scripts/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/scripts/clean.py -------------------------------------------------------------------------------- /scripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/scripts/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_angles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/tests/test_angles.py -------------------------------------------------------------------------------- /tests/test_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatangle/flatlib/HEAD/tests/test_chart.py --------------------------------------------------------------------------------