We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 121ad8f commit e58aad2Copy full SHA for e58aad2
build/lib/scaleapi/projects.py
@@ -0,0 +1,14 @@
1
+class Project(object):
2
+ def __init__(self, param_dict, client):
3
+ self.param_dict = param_dict
4
+ self.name = param_dict['name']
5
+ self.client = client
6
+
7
+ def __hash__(self):
8
+ return hash(self.name)
9
10
+ def __str__(self):
11
+ return 'Project(name=%s)' % self.name
12
13
+ def __repr__(self):
14
+ return 'Project(%s)' % self.param_dict
setup.py
@@ -28,7 +28,7 @@
28
setup(
29
name='scaleapi',
30
packages=['scaleapi'],
31
- version='0.4.0',
+ version='1.0.0',
32
description='The official Python client library for Scale AI, the Data Platform for AI',
33
author='Scale AI',
34
author_email='support@scale.com',
0 commit comments