Skip to content

cesarnr21/googol

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Google Services

Just some modules that allow to use some Google Services. Install using: python3 -m pip install --editable .

To use Google Services and APIs, they need to be setup

Then download the API credentials to a json file and add it to the working directory. A lot of code used in these modules came from this Gmail API Tutorial, it presents more of a functional programming approach, but these modules should be easier to use.

Requirements

The Python Module need to access Google's API and require Google's Authentication packges. Install them using:

python3 -m pip install -r requirements.txt

Gmail Module

Sending Emails

The gmail.py module includes the class GmailMessage which allows to send emails and attachments. To send an email:

  1. Used the build_message(subject: str, content: str, attachments: Union[str, tuple]) function. This is used to put together the message being sent.
    • Another way to add attachements to the email message is to use the add_attachments() function. Argument can either be a string for a single attachment or a tuple for multiple. It is important to add the full path of the attachment. The os.path.anspath() can be used to help with this.
  2. send_email() can be used after building a message to send the email. The arguments are the source email and a destination email address.
from gmail import GmailMessage

creds_file = 'path/file'
auth_file = 'path/file'

subject = 'email subject'
content = 'content of email'
attachments = ('file1', 'file2')

email = GmailMessage(creds_file, auth_file)
email.build_message(subject, content, attachments)

new_attachments = ('file3', 'file4')
email.add_attachments(new_attachments)
email.send_email('source email', 'destination email')

Reading Emails

To read emails, use the GmailAction class.

More specify query options here: Google APIs Notes

Other Actions

Google Drive and Google Sheets

The google_drive.py module includes the class DriveAction which will have the capability to upload


TO DO

Overall

  • add docstrings to all functions
    • including a --help option, and test the __doc__ attribute
  • send email without subject
  • restructure and cleanup git history
    • squash commits in release branch and push
    • delete remote dev branch
    • squash commits on main and push, then create a PULL request for release branch
  • if authorization file not given, then look for or create one with the same name as the creds_file
  • replace class __init__() with super()
  • replacement of os and sys packages with pathlib and Path class
  • issue where the are errors if no attachments are added
  • be able to add images in the middle of text, might be better for reports
  • Add Instructions for creating the google developer console project
  • create a new project, find a way to share it with all accounts
  • Add setup.py to install the module. Move the requirements.txt file here
  • add API notes to docs
  • add exceptions if there are no auth_file or creds_file given
  • add better embedded __docs__ into all modules/files
  • place create_query() and other tools into a tools.py module?
  • add tests for all modules. example:
    """
    tests the functionality of the gmail object
    """
    
    import unittest
    from googol import GmailMessage
    
    
    class GmailObject(GmailMessage):
        def __init__(self, creds_file: str, auth_file: str = None):
            self.credsfile = creds_file
            self.authfile = auth_file
    
    
    class NominalCase(unittest.TestCase):
        def test_message_strucuture(self):
            pass
    
    
    if __name__ == '__main__':
        unittest.main()

Gmail Module

Google Drive Modules

  • upload file/folder
  • download file/folder
  • create folder
  • share file/folder

Sheets Module

  • do these work for excel files uploaded to google sheets??
  • download spreadsheet as an excel, maybe another more open source option
    • how to convert between the two filetypes offline as well
  • create spreadsheet
  • add to current spreadsheet
  • how different is uploading and downloading these in relation to the DriveAction class?

Bugs/Issues

  • Error with subject highlighting without any attachments

Look at Later

create login credentials here: https://developers.google.com/workspace/guides/create-credentials

working with google APIs:

Other Services that might be useful

These are separate from the others, only considering using them if they would require the same kind of verification as the others.

  • Google Maps:smart mirror integration, cost money?, might better to just focus on other project
  • Home: for smart mirror integration, might not need
  • Keep: to do list

Google Calendar

  • Give access to other services you might need
  • Can also use with smart mirror

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages