(
self
)
| 130 | } |
| 131 | |
| 132 | def serialize_readme( |
| 133 | self |
| 134 | ): |
| 135 | |
| 136 | docs_high_level = "https://diffgram.readme.io/docs/export-walkthrough" |
| 137 | docs_low_level = "https://diffgram.readme.io/docs/understanding-diffgrams-json-file-format" |
| 138 | docs_coordinate_system = "https://diffgram.readme.io/docs/export#coordinate-system" |
| 139 | support = "support@diffgram.com" |
| 140 | open_source = "https://github.com/diffgram/diffgram" |
| 141 | python_sdk = "https://github.com/diffgram/python-sdk" |
| 142 | new_to_diffgram = "Create a free account to play with: https://diffgram.readme.io/user/data_platform/new" |
| 143 | |
| 144 | share_request = None |
| 145 | if self.user: |
| 146 | share_request = f"Request {self.user.email} to access the project to visually explore this data." |
| 147 | |
| 148 | return { |
| 149 | 'docs_high_level': docs_high_level, |
| 150 | 'docs_low_level': docs_low_level, |
| 151 | 'docs_coordinate_system': docs_coordinate_system, |
| 152 | 'support': support, |
| 153 | 'open_source': open_source, |
| 154 | 'python_sdk': python_sdk, |
| 155 | 'new_to_diffgram': new_to_diffgram, |
| 156 | 'share_request': share_request, |
| 157 | 'diffgram': "Diffgram: https://diffgram.readme.io. Data Annotation & Training Data Software" |
| 158 | } |
| 159 | |
| 160 | def get_by_id( |
| 161 | session, |
no outgoing calls
no test coverage detected