Welcome, guest | Sign In | My Account | Store | Cart

Notice! PyPM is being replaced with the ActiveState Platform, which enhances PyPM’s build and deploy capabilities. Create your free Platform account to download ActivePython or customize Python with the packages you require and get automatic updates.

Download
ActivePython
INSTALL>
pypm install sqlalchemy-citext

How to install sqlalchemy-citext

  1. Download and install ActivePython
  2. Open Command Prompt
  3. Type pypm install sqlalchemy-citext
 Python 2.7Python 3.2Python 3.3
Windows (32-bit)
1.0-2 Failed View build log
Windows (64-bit)
1.0-2 Failed View build log
Mac OS X (10.5+)
1.0-2 Available View build log
Linux (32-bit)
1.0-2 Available View build log
Linux (64-bit)
1.0-2 Available View build log
 
Imports
Lastest release
version 1.0-2 on May 24th, 2012

```python from sqlalchemy import create_engine, MetaData, Integer from sqlalchemy.schema import Column, Table import sqlalchemy.orm as orm

System Message: WARNING/2 (<string>, line 4); backlink

Inline literal start-string without end-string.

System Message: WARNING/2 (<string>, line 4); backlink

Inline interpreted text or phrase reference start-string without end-string.

engine = create_engine('postgresql://localhost/test_db') meta = MetaData()

test_table = Table('test', meta,
Column('id', Integer(), primary_key=True), Column('txt', CIText()))

conn = engine.connect()

meta.bind = conn meta.drop_all() meta.create_all()

class TestObj(object):
def __init__(self, id_, txt):
self.id = id_ self.txt = txt
def __repr__(self):
return "TestObj(%r, %r)" % (self.id, self.txt)

orm.mapper(TestObj, test_table) Session = orm.sessionmaker(bind=engine) ses = Session()

to = TestObj(1, txt='FooFighter') ses.add(to) ses.commit() row = ses.query(TestObj).filter(TestObj.txt == 'foofighter').all() assert len(row) == 1 print row ses.close() ```

System Message: WARNING/2 (<string>, line 34); backlink

Inline literal start-string without end-string.

System Message: WARNING/2 (<string>, line 34); backlink

Inline interpreted text or phrase reference start-string without end-string.

Docutils System Messages

System Message: ERROR/3 (<string>, line 25); backlink

Unknown target name: "id".

System Message: ERROR/3 (<string>, line 24); backlink

Unknown target name: "id".

Subscribe to package updates

Last updated May 24th, 2012

Download Stats

Last month:1

What does the lock icon mean?

Builds marked with a lock icon are only available via PyPM to users with a current ActivePython Business Edition subscription.

Need custom builds or support?

ActivePython Enterprise Edition guarantees priority access to technical support, indemnification, expert consulting and quality-assured language builds.

Plan on re-distributing ActivePython?

Get re-distribution rights and eliminate legal risks with ActivePython OEM Edition.