Skip to content

Commit

Permalink
fixed import errors from naming convensions
Browse files Browse the repository at this point in the history
  • Loading branch information
Silver committed Mar 7, 2020
1 parent 3bb33ed commit c402bb3
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cumulocitypython/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from .CumulocityPython import CumulocityPython
from .connection import CumulocityConnection
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from dateutil import parser, tz
from datetime import datetime, timedelta

class CumulocityPython:
class CumulocityConnection:
def __init__(self, base_url, username, password):
credentials = b64encode(bytes(username + ':' + password, "utf-8")).decode("ascii")
self.headers = { 'Authorization' : 'Basic %s' % credentials }
Expand Down
Binary file removed dist/cumulocitypython-0.1.1.tar.gz
Binary file not shown.
Binary file removed dist/cumulocitypython-0.1.2.tar.gz
Binary file not shown.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
setup(
name = 'cumulocitypython',
packages = ['cumulocitypython'],
version = '0.1.2',
version = '0.1.3',
license='MIT',
description = 'Purpose of this package is to easily request historical data from your cumulocity tenant and return it as a pandas dataframe.',
author = 'Silver Laius',
author_email = '[email protected]',
url = 'https://github.com/SilverLaius/cumulocitypython',
download_url = 'https://github.com/SilverLaius/cumulocitypython/archive/1.1.2.tar.gz',
download_url = 'https://github.com/SilverLaius/cumulocitypython/archive/1.1.3.tar.gz',
keywords = ['Python', 'Cumulocity', 'Pandas'],
install_requires=[
'python-dateutil',
Expand Down

0 comments on commit c402bb3

Please sign in to comment.