Metadata-Version: 2.1
Name: meetspace
Version: 0.0.1
Summary: web app for unifying meeting and event entry
Home-page: https://github.com/marcidy/meetspace
Author: Matt Arcidy
Author-email: marcidy@gmail.com
License: UNKNOWN
Keywords: meeting meetings event events
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown

# Meetspace

Hook up a bunch of different event apis to create a single point of entry.

# Notes
Pretty alpha and pretty use-case specific right now.

The directory `schema` holds json files which describe data requirements. Right now only `meetspace.json` is important.

The model is:

`form_name: { field name : {'type': field type, 'validators': validator, ...}}}`

A dictionary of the forms is passed to the rendered, and used by the templates.

Some extra information is required. In a file in the `instance` directory put this in `meetup-test-api.cfg`:

```python
URLNAME="Meetup-API-Testing"

SECRET_KEY=<generate some key>
MEETUP_API_SECRET='get your own'

GROUP_ID="1556336"
GROUP_URLNAME="Meetup-API-Testing"
URLNAME="Meetup-API-Testing"

VENUE_ID="1234"

TIME_FORMAT = "%Y-%m-%d %H:%M:%S"
```
you’ll need to install the package:
`pip install -e .`

this should theoretically work at this stage:
`$ flask run`

which will lauch a wsgi on port 5000. you can go to localhost:5000/NewEvent to see if everything went well.


