Metadata-Version: 2.1
Name: wq
Version: 1.3.0b1
Summary: A modular framework for mobile surveys and field data collection via offline-capable mobile web apps.
Home-page: https://wq.io/
Author: S. Andrew Sheppard
Author-email: andrew@wq.io
License: MIT
Project-URL: Homepage, https://wq.io/
Project-URL: Documentation, https://wq.io/
Project-URL: Source, https://github.com/wq/wq
Project-URL: Release Notes, https://github.com/wq/wq/releases
Project-URL: Issues, https://github.com/wq/wq/issues
Description: <p align="center">
          <a href="https://wq.io">
            <img src="https://wq.io/images/wq.svg" alt="wq">
          </a>
        </p>
        
        <p align="center">
          <a href="https://wq.io"><strong>wq</strong></a> is a modular framework for field data collection and surveys via offline-capable mobile web apps.
        </p>
        
        ## Getting Started
        
        wq can be installed via PyPI, NPM, or plain `<script>` tag via CDN.  See [the documentation](https://wq.io/overview/setup) for more information on getting started.
        
        ### Python
        
        ```bash
        python3 -m venv venv
        . venv/bin/activate
        python3 -m pip install wq==1.3.0b1
        wq create -d myproject.example.com myproject
        ```
        
        ### Node
        
        ```bash
        npx create-react-app myproject --template @wq
        ```
        
        ### CDN
        ```html
        <script type="module">
            import wq from 'https://unpkg.com/wq';
            wq.init({});
        </script>
        ```
        
        ## Features
        
        wq is made up of the following submodules, which are maintained as separate packages.
        
         Module                    | Github              | PyPI             | npm       | Description
        ---------------------------|---------------------|------------------|-----------|---------
        [![wq][wq.svg]][wq/wq]     | [wq/wq][gh/wq]      | [wq][py/wq]      | [wq]      | Top level package (specifies submodules as dependencies)
        [![wq.app][a.svg]][wq/a]   | [wq/wq.app][gh/a]   | [wq.app][py/a]   | [@wq/app] | A JavaScript+Python library for building robust offline-capable HTML5 data entry apps.
        [![wq.build][b.svg]][wq/b]  | [wq/wq.build][gh/b]  | [wq.build][py/b]  |           | wq command line interface.
        [![wq.create][c.svg]][wq/c] | [wq/wq.create][gh/c] | [wq.create][py/c] |           | Project template and scaffolding tools.
        [![wq.db][d.svg]][wq/d]    | [wq/wq.db][gh/d]    | [wq.db][py/d]    |           | Django REST framework extension with design patterns for CRUD APIs.
        
        [wq.svg]: https://wq.io/images/icons/wq.svg
        [a.svg]: https://wq.io/images/icons/wq.app.svg
        [b.svg]: https://wq.io/images/icons/wq.build.svg
        [c.svg]: https://wq.io/images/icons/wq.create.svg
        [d.svg]: https://wq.io/images/icons/wq.db.svg
        
        [wq/wq]: https://wq.io/
        [wq/a]: https://wq.io/wq.app/
        [wq/b]: https://wq.io/wq.build/
        [wq/c]: https://wq.io/wq.create/
        [wq/d]: https://wq.io/wq.db/
        
        [py/wq]: https://pypi.org/project/wq
        [py/a]: https://pypi.org/project/wq.app
        [py/b]: https://pypi.org/project/wq.build
        [py/c]: https://pypi.org/project/wq.create
        [py/d]: https://pypi.org/project/wq.db
        
        [gh/wq]: https://github.com/wq/wq
        [gh/a]: https://github.com/wq/wq.app
        [gh/b]: https://github.com/wq/wq.build
        [gh/c]: https://github.com/wq/wq.create
        [gh/d]: https://github.com/wq/wq.db
        
        [wq]: https://npmjs.com/package/wq
        [@wq/app]: https://npmjs.com/package/@wq/app
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: JavaScript
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.0
Classifier: Framework :: Django :: 2.1
Classifier: Framework :: Django :: 2.2
Classifier: Framework :: Django :: 3.1
Classifier: Framework :: Django :: 3.0
Classifier: Framework :: Django :: 3.2
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Text Processing :: Markup :: HTML
Classifier: Topic :: Scientific/Engineering :: GIS
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Pre-processors
Classifier: Topic :: Database :: Database Engines/Servers
Classifier: Topic :: Text Processing :: Markup :: XML
Requires-Python: >=3
Description-Content-Type: text/markdown
