GithubHelp home page GithubHelp logo

Comments (3)

NodBr avatar NodBr commented on July 20, 2024 1

Wow! It worked perfectly.
In fact, I've never used the "chart.xxxx" syntax at all in my code, just the numbers, like 3000002 for DSC. It woked everywhere in my code, except here.
In the future, I'll revise my code and try switch my mindset to the chart.xxxx syntax and see if it becomes more efficient and more cleanly-coded.
Thanks a lot.

from immanuel-python.

theriftlab avatar theriftlab commented on July 20, 2024

This should be possible within the settings - if this doesn't work there's likely a bug somewhere!

from immanuel.const import calc, chart
from immanuel.setup import settings


settings.aspect_rules = {
    chart.ASC: {
        'initiate': settings.aspects,
        'receive': settings.aspects,
    },
    chart.DESC: {
        'initiate': [],
        'receive': [],
    },
    chart.MC: {
        'initiate': [],
        'receive': [],
    },
    chart.IC: {
        'initiate': [],
        'receive': [],
    },
    chart.TRUE_LILITH: {
        'initiate': [
            calc.CONJUNCTION,
            calc.OPPOSITION,
            calc.TRINE,
        ],
        'receive': [
            calc.CONJUNCTION,
            calc.OPPOSITION,
            calc.TRINE,
            calc.SQUARE,
        ],
    },
    chart.PARS_FORTUNA: {
        'initiate': [],
        'receive': [
            calc.CONJUNCTION,
        ],
    }
}

from immanuel-python.

theriftlab avatar theriftlab commented on July 20, 2024

It's best to stick to the constants since even the existing ones are subject to change if/when new object are added - which won't be often but probably often enough to mess up code relying on pure values.

from immanuel-python.

Related Issues (13)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.