1

こんにちは、ここに私の新しい問題があります...私はピラミッドを使用しており、データベースに初期データを入力するスクリプトを作成しました

この構文の PasteDeploy 構成ファイル (たとえばdevelopment.ini ) があります。

###
# app configuration
# http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/environment.html
###

[app:shop_eshop]
use = egg:shop_eshop

pyramid.reload_templates = true
pyramid.debug_authorization = false
pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.default_locale_name = en
pyramid.includes =
    pyramid_debugtoolbar
    pyramid_tm

sqlalchemy.url = postgresql://eshop_db_user:testtest@localhost:5432/eshop_db

jinja2.directories = eshop:templates

ziggurat_foundations.model_locations.User = auth.models:User

# SESSION_BEAKER
session.type = file
session.data_dir = %(here)s/data/sessions/data
session.lock_dir = %(here)s/data/sessions/lock
session.key = s_key
session.secret = ...FBIRootAccessPW...
session.cookie_on_exception = true


[filter:fanstatic]
use = egg:fanstatic#fanstatic
recompute_hashes = false
versioning = true
bottom = True

publisher_signature = assets
compile = true
#in development
debug = true

[pipeline:main]
pipeline = fanstatic eshop

[server:main]
use = egg:waitress#main
host = 0.0.0.0
port = 6543

###
# logging configuration
# http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/logging.html
###

[loggers]
keys = root, shop_eshop, sqlalchemy

[handlers]
keys = console

[formatters]
keys = generic

[logger_root]
level = INFO
handlers = console

[logger_shop_eshop]
level = DEBUG
handlers =
qualname = shop_eshop

[logger_sqlalchemy]
level = INFO
handlers =
qualname = sqlalchemy.engine

[handler_console]
class = StreamHandler
args = (sys.stderr,)
level = NOTSET
formatter = generic

[formatter_generic]
format = %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s

私のスクリプトには、エラーを生成するこのコードが含まれています..

def main(argv=sys.argv):
    if len(argv) < 2:
        usage(argv)
    config_uri = argv[1]
    options = parse_vars(argv[2:])

    setup_logging(config_uri)

    settings = get_appsettings(config_uri, options=options)
    engine = engine_from_config(settings, 'sqlalchemy.')
    DBSession.configure(bind=engine)

    with transaction.manager:
        create_groups()
        create_users()

エラーはこの行によってスローされます

engine = engine_from_config(settings, 'sqlalchemy.')

パイプラインを削除すると、すべてが正しく機能しますが、パイプラインを読み取る方法が見つかりません。

これが私のエラーです

Traceback (most recent call last):
File "/srv/michael/e_shop/env/bin/fill_e_shop_db", line 9, in <module>
load_entry_point('e_shop==0.0', 'console_scripts', 'fill_e_shop_db')()
File "/srv/michael/e_shop/e_shop/e_shop/scripts/filldb.py", line 98, in main
engine = engine_from_config(settings, 'sqlalchemy.')
File "build/bdist.linux-x86_64/egg/sqlalchemy/engine/__init__.py", line 350, in engine_from_config
KeyError: 'url'

なにか提案を?ありがとうございました!

4

1 に答える 1

4

get_appsettings()main特に指定がない限り、ini ファイルのセクションの設定をロードしています。そのセクションには明らかに設定はありません。特定のセクションの設定をロードする場合は、#. たとえば、プログラムを今すぐ実行して、必要な結果を得ることができるはずです。

myprog development.ini#shop_eshop
于 2013-09-20T03:12:04.593 に答える