Git Product home page Git Product logo

projectmeetmehalfway's Introduction

Project Team: TeamRocket

Project Team Overview

Members:

Cameron Smyrl : smyrlcam
Matt Curtin : MattCurtin12
Kalvin Garcia : OchaKaru
Logan Wheeler : BraysonWheeler
Wesley Glover : WesleyGlover

Description:

Spring 2022 UNT Capstone, Team Rocket.

Project: Meet Me Halfway

Project Overview

#Members: Cameron Smyrl Matt Curtin Kalvin Garcia Logan Wheeler Wesley Glover

Sometimes 2 people need to meet halfway (more or less) between where they are.
Common examples are custody exchanges or trying to meet a relative/friend who is passing through on a trip. It should have features like noting any favorites, suggesting nearby restaurants or police stations. Users need to be able to enter their address and the app gives them options on where to meet (that are near something โ€“ so not in the middle of nowhere) based on their needs (e.g., at a police station).

Dependencies:

Kivy:
pip install kivy <- also installs kivy-garden, I think.
KivyMD (no longer optional):
pip install kivymd
Twisted:
pip install twisted
MapView:
pip install mapview
garden install mapview (optional)
KivyCalendar:
pip install KivyCalendar (needs modification to be compatible with Python v3.0+)
Geopy:
pip install geopy
Geocoder:
pip install geocoder
Py3-validate-email:
pip install py3-validate-email
MySQL:
pip install mysql-connector-python
Scipy:
pip install scipy

"Updating" KivyCalendar:
here is a link to the guy who did it on stack overflow: https://stackoverflow.com/questions/48518358/getting-error-no-module-named-calendar-ui-even-though-kivycalendar-has-been

Go here: KivyCalendar/init.py
change from calendar_ui import DatePicker, CalendarWidget
to from .calendar_ui import DatePicker, CalendarWidget

Then go here: KivyCalendar/calendar_data.py
change from calendar import TimeEncoding, month_name, day_abbr, Calendar, monthrange
to from calendar import month_name, day_abbr, Calendar, monthrange
add this:

 import locale as _locale

 class TimeEncoding:
   def __init__(self, locale):
     self.locale = locale

   def __enter__(self):
     self.oldlocale = _locale.setlocale(_locale.LC_TIME, self.locale)
     return _locale.getlocale(_locale.LC_TIME)[1]

   def __exit__(self, *args):
     _locale.setlocale(_locale.LC_TIME, self.oldlocale)

Finally go here: KivyCalendar/calendar_ui.py
change import calendar_data as cal_data
to from . import calendar_data as cal_data

You're done! Go on and prosper, the UI should run.

projectmeetmehalfway's People

Contributors

kalvingarcia avatar mattcurtin12 avatar wesleyglover avatar smyrlcam avatar braysonwheeler avatar

Stargazers

 avatar

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.